diff --git a/ConfigurationOptions.txt b/ConfigurationOptions.txt
new file mode 100644
index 0000000000..efcc820bbb
--- /dev/null
+++ b/ConfigurationOptions.txt
@@ -0,0 +1,149 @@
+# SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
+# SPDX-FileCopyrightText: 2023 Dirk Beyer <https://www.sosy-lab.org>
+# SPDX-FileCopyrightText: 2024 Dirk Beyer <https://www.sosy-lab.org>
+#
+# SPDX-License-Identifier: Apache-2.0
+
+# Further options for Bitwuzla in addition to the default options. Format: 
+# "option_name=value" with ’,’ to separate options. Option names and values
+# can be found in the Bitwuzla documentation online:
+# https://bitwuzla.github.io/docs/cpp/enums/option.html#_CPPv4N8bitwuzla6OptionE
+# Example: "PRODUCE_MODELS=2,SAT_SOLVER=kissat".
+solver.bitwuzla.furtherOptions = ""
+
+# The SAT solver used by Bitwuzla.
+solver.bitwuzla.satSolver = CADICAL
+  enum:     [LINGELING, CMS, CADICAL, KISSAT]
+
+# Further options for Boolector in addition to the default options. Format: 
+# "Optionname=value" with ’,’ to separate options. Option names and values
+# can be found in BtorOption or Boolector C Api. Example:
+# "BTOR_OPT_MODEL_GEN=2,BTOR_OPT_INCREMENTAL=1".
+solver.boolector.furtherOptions = ""
+
+# The SAT solver used by Boolector.
+solver.boolector.satSolver = CADICAL
+  enum:     [LINGELING, PICOSAT, MINISAT, CMS, CADICAL]
+
+# Counts all operations and interactions towards the SMT solver.
+solver.collectStatistics = false
+
+# Further options that will be passed to CVC5 in addition to the default
+# options. Format is 'key1=value1,key2=value2'
+solver.cvc5.furtherOptions = ""
+
+# apply additional validation checks for interpolation results
+solver.cvc5.validateInterpolants = false
+
+# Enable assertions that make sure that functions are only used in the
+# context that declared them.
+solver.debugMode.noSharedDeclarations = false
+
+# Enable assertions that make sure formula terms are only used in the context
+# that created them.
+solver.debugMode.noSharedFormulas = false
+
+# Enable assertions that make sure that solver instances are only used on the
+# thread that created them.
+solver.debugMode.threadLocal = false
+
+# Default rounding mode for floating point operations.
+solver.floatingPointRoundingMode = NEAREST_TIES_TO_EVEN
+  enum:     [NEAREST_TIES_TO_EVEN, NEAREST_TIES_AWAY, TOWARD_POSITIVE, TOWARD_NEGATIVE,
+             TOWARD_ZERO]
+
+# Export solver queries in SmtLib format into a file.
+solver.logAllQueries = false
+solver.logfile = no default value
+
+# Further options that will be passed to Mathsat in addition to the default
+# options. Format is 'key1=value1,key2=value2'
+solver.mathsat5.furtherOptions = ""
+
+# Load less stable optimizing version of mathsat5 solver.
+solver.mathsat5.loadOptimathsat5 = false
+
+# Use non-linear arithmetic of the solver if supported and throw exception
+# otherwise, approximate non-linear arithmetic with UFs if unsupported, or
+# always approximate non-linear arithmetic. This affects only the theories of
+# integer and rational arithmetic.
+solver.nonLinearArithmetic = USE
+  enum:     [USE, APPROXIMATE_FALLBACK, APPROXIMATE_ALWAYS]
+
+# Algorithm for boolean interpolation
+solver.opensmt.algBool = 0
+
+# Algorithm for LRA interpolation
+solver.opensmt.algLra = 0
+
+# Algorithm for UF interpolation
+solver.opensmt.algUf = 0
+
+# SMT-LIB2 name of the logic to be used by the solver.
+solver.opensmt.logic = QF_AUFLIRA
+  enum:     [CORE, QF_AX, QF_UF, QF_IDL, QF_RDL, QF_LIA, QF_LRA, QF_ALIA, QF_ALRA,
+             QF_UFLIA, QF_UFLRA, QF_AUFLIA, QF_AUFLRA, QF_AUFLIRA]
+
+# Enable additional assertion checks within Princess. The main usage is
+# debugging. This option can cause a performance overhead.
+solver.princess.enableAssertions = false
+
+# log all queries as Princess-specific Scala code
+solver.princess.logAllQueriesAsScala = false
+
+# file for Princess-specific dump of queries as Scala code
+solver.princess.logAllQueriesAsScalaFile = "princess-query-%03d-"
+
+# The number of atoms a term has to have before it gets abbreviated if there
+# are more identical terms.
+solver.princess.minAtomsForAbbreviation = 100
+
+# Random seed for SMT solver.
+solver.randomSeed = 42
+
+# If logging from the same application, avoid conflicting logfile names.
+solver.renameLogfileToAvoidConflicts = true
+
+# Double check generated results like interpolants and models whether they
+# are correct
+solver.smtinterpol.checkResults = false
+
+# Further options that will be set to true for SMTInterpol in addition to the
+# default options. Format is 'option1,option2,option3'
+solver.smtinterpol.furtherOptions = []
+
+# Which SMT solver to use.
+solver.solver = SMTINTERPOL
+  enum:     [OPENSMT, MATHSAT5, SMTINTERPOL, Z3, PRINCESS, BOOLECTOR, CVC4, CVC5,
+             YICES2, BITWUZLA]
+
+# Sequentialize all solver actions to allow concurrent access!
+solver.synchronize = false
+
+# Use provers from a seperate context to solve queries. This allows more
+# parallelity when solving larger queries.
+solver.synchronized.useSeperateProvers = false
+
+# Apply additional checks to catch common user errors.
+solver.useDebugMode = false
+
+# Log solver actions, this may be slow!
+solver.useLogger = false
+
+# Activate replayable logging in Z3. The log can be given as an input to the
+# solver and replayed.
+solver.z3.log = no default value
+
+# Ordering for objectives in the optimization context
+solver.z3.objectivePrioritizationMode = "box"
+  allowed values: [lex, pareto, box]
+
+# Engine to use for the optimization
+solver.z3.optimizationEngine = "basic"
+  allowed values: [basic, farkas, symba]
+
+# Require proofs from SMT solver
+solver.z3.requireProofs = false
+
+# Whether to use PhantomReferences for discarding Z3 AST
+solver.z3.usePhantomReferences = false
diff --git a/api/allclasses-index.html b/api/allclasses-index.html
new file mode 100644
index 0000000000..e396400613
--- /dev/null
+++ b/api/allclasses-index.html
@@ -0,0 +1,955 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>All Classes (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="All Classes (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":2,"i1":2,"i2":2,"i3":2,"i4":2,"i5":2,"i6":2,"i7":2,"i8":2,"i9":4,"i10":2,"i11":2,"i12":2,"i13":2,"i14":2,"i15":2,"i16":2,"i17":2,"i18":2,"i19":1,"i20":1,"i21":1,"i22":1,"i23":2,"i24":2,"i25":2,"i26":2,"i27":2,"i28":1,"i29":1,"i30":1,"i31":1,"i32":2,"i33":2,"i34":1,"i35":2,"i36":2,"i37":2,"i38":2,"i39":2,"i40":2,"i41":2,"i42":2,"i43":2,"i44":2,"i45":2,"i46":2,"i47":2,"i48":2,"i49":2,"i50":2,"i51":2,"i52":2,"i53":2,"i54":2,"i55":2,"i56":2,"i57":1,"i58":1,"i59":1,"i60":2,"i61":1,"i62":1,"i63":2,"i64":4,"i65":1,"i66":1,"i67":2,"i68":2,"i69":1,"i70":2,"i71":2,"i72":2,"i73":2,"i74":2,"i75":2,"i76":2,"i77":1,"i78":1,"i79":2,"i80":4,"i81":2,"i82":1,"i83":1,"i84":2,"i85":2,"i86":2,"i87":1,"i88":2,"i89":2,"i90":2,"i91":2,"i92":2,"i93":2,"i94":1,"i95":1,"i96":1,"i97":1,"i98":2,"i99":2,"i100":1,"i101":4,"i102":2,"i103":2,"i104":4,"i105":1,"i106":1,"i107":2,"i108":2,"i109":1,"i110":4,"i111":1,"i112":1,"i113":2,"i114":2,"i115":1,"i116":2,"i117":2,"i118":1,"i119":4,"i120":2,"i121":4,"i122":8,"i123":2,"i124":2,"i125":2,"i126":2,"i127":2,"i128":2,"i129":2,"i130":2,"i131":1,"i132":1,"i133":2,"i134":2,"i135":2,"i136":2,"i137":2,"i138":2,"i139":2,"i140":4,"i141":2,"i142":2,"i143":2,"i144":2,"i145":4,"i146":2,"i147":2,"i148":1,"i149":1};
+var tabs = {65535:["t0","All Classes"],1:["t1","Interface Summary"],2:["t2","Class Summary"],4:["t3","Enum Summary"],8:["t4","Exception Summary"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="All&amp;nbsp;Classes" class="title">All&nbsp;Classes</h1>
+</div>
+<div class="allClassesContainer">
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Classes</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Interface Summary</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Class Summary</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Enum Summary</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Exception Summary</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormulaManager</code></a>.</div>
+</th>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Simplifies building a solver from the specific theories.</div>
+</th>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TEnv</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormulaManager</code></a>.</div>
+</th>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="type parameter in AbstractProverWithAllSat">T</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">This class is a utility-class to avoid repeated implementation of the AllSAT computation.</div>
+</th>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TFunctionDecl</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TEnv</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">This class simplifies the implementation of the FunctionFormulaManager by converting the types to
+ the solver specific type.</div>
+</th>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example">AllSatExample</a></td>
+<th class="colLast" scope="row">
+<div class="block">This example shows different ways to get all satisfiable models for a given set of constraints.</div>
+</th>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;<a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="type parameter in ArrayFormula">TI</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="type parameter in ArrayFormula">TE</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the array sort.</div>
+</th>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">This interface represents the theory of (arbitrarily nested) arrays.</div>
+</th>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Super interface for <a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> and <a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> that
+ provides only the common operations.</div>
+</th>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Interface for the <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> callback.</div>
+</th>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">P</a> extends <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></td>
+<th class="colLast" scope="row">
+<div class="block">This program parses a user-given Binoxxo and solves it with an SMT solver.</div>
+</th>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a>&lt;<a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="type parameter in Binoxxo.BinoxxoSolver">S</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></td>
+<th class="colLast" scope="row">
+<div class="block">This solver encodes nore steps into boolean logic, which makes it about 10x faster than the
+ <a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><code>Binoxxo.IntegerBasedBinoxxoSolver</code></a>.</div>
+</th>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the bitvector sort.</div>
+</th>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Manager for dealing with formulas of the bitvector sort.</div>
+</th>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the boolean sort.</div>
+</th>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Manager for dealing with boolean formulas.</div>
+</th>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></td>
+<th class="colLast" scope="row">
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about BooleanFormulas with Truth (allows using
+ <code>assert_().about(...).that(formula).isUnsatisfiable()</code> etc.).</div>
+</th>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></td>
+<th class="colLast" scope="row">
+<div class="block">Base class for visitors for boolean formulas that recursively transform boolean formulas.</div>
+</th>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Visitor iterating through the boolean part of the formula.</div>
+</th>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i47" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i48" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i49" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i50" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i51" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i52" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i53" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i54" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i55" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">A formula visitor which allows for the default implementation.</div>
+</th>
+</tr>
+<tr id="i56" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i57" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the enumeration sort.</div>
+</th>
+</tr>
+<tr id="i58" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">This interface represents the theory of enumeration, i.e., datatype of limited domain sort (as
+ defined in the SMTLIB2 standard).</div>
+</th>
+</tr>
+<tr id="i59" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></td>
+<th class="colLast" scope="row">
+<div class="block">This class provides methods to get concrete evaluations for formulas from the satisfiable solver
+ environment.</div>
+</th>
+</tr>
+<tr id="i60" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="type parameter in ExpectedFormulaVisitor">R</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Like <a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>DefaultFormulaVisitor</code></a>, but throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>UnsupportedOperationException</code></a> on
+ unexpected formula types.</div>
+</th>
+</tr>
+<tr id="i61" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">Formula of the floating point sort.</div>
+</th>
+</tr>
+<tr id="i62" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Floating point operations.</div>
+</th>
+</tr>
+<tr id="i63" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></td>
+<th class="colLast" scope="row">
+<div class="block">Represents a floating-point number with customizable precision, consisting of sign, exponent, and
+ mantissa components.</div>
+</th>
+</tr>
+<tr id="i64" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></td>
+<th class="colLast" scope="row">
+<div class="block">Possible floating point rounding modes.</div>
+</th>
+</tr>
+<tr id="i65" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointRoundingModeFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">Formula representing a rounding mode for floating-point operations.</div>
+</th>
+</tr>
+<tr id="i66" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></td>
+<th class="colLast" scope="row">
+<div class="block">An arbitrary SMT formula.</div>
+</th>
+</tr>
+<tr id="i67" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></td>
+<th class="colLast" scope="row">
+<div class="block">This program parses user-given formulas and prints out the (minimal) matching theory for them.</div>
+</th>
+</tr>
+<tr id="i68" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">This is a helper class with several methods that are commonly used throughout the basicimpl
+ package and may have solver-specific implementations.</div>
+</th>
+</tr>
+<tr id="i69" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">FormulaManager class contains all operations which can be performed on formulas.</div>
+</th>
+</tr>
+<tr id="i70" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></td>
+<th class="colLast" scope="row">
+<div class="block">Abstract class for formula transformation.</div>
+</th>
+</tr>
+<tr id="i71" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Type of a formula.</div>
+</th>
+</tr>
+<tr id="i72" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i73" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i74" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i75" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i76" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i77" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Visitor iterating through entire formula.</div>
+</th>
+</tr>
+<tr id="i78" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="type parameter in FunctionDeclaration">E</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Function declaration, for both UFs and built-in functions (theory and boolean).</div>
+</th>
+</tr>
+<tr id="i79" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">F</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">T</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">Declaration of a function.</div>
+</th>
+</tr>
+<tr id="i80" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></td>
+<th class="colLast" scope="row">
+<div class="block">Types of function declarations.</div>
+</th>
+</tr>
+<tr id="i81" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></td>
+<th class="colLast" scope="row">
+<div class="block">This application executes the inductive-invariant synthesis algorithm called "Houdini" taken from
+ the paper Flanagan and Leino: "Houdini, an Annotation Assistant for ESC/Java".</div>
+</th>
+</tr>
+<tr id="i82" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Interface which operates over <a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.IntegerFormula</code></a>s.</div>
+</th>
+</tr>
+<tr id="i83" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">This class provides an interface to an incremental SMT solver with methods for pushing and
+ popping formulas as well as SAT checks.</div>
+</th>
+</tr>
+<tr id="i84" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i85" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Interpolation.html" title="class in org.sosy_lab.java_smt.example">Interpolation</a></td>
+<th class="colLast" scope="row">
+<div class="block">Examples for Craig/sequential/tree interpolation.</div>
+</th>
+</tr>
+<tr id="i86" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></td>
+<th class="colLast" scope="row">
+<div class="block"><a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> that wraps all prover environments in their logging versions.</div>
+</th>
+</tr>
+<tr id="i87" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></td>
+<th class="colLast" scope="row">
+<div class="block">This class provides a model with concrete evaluations for symbols and formulas from the
+ satisfiable solver environment.</div>
+</th>
+</tr>
+<tr id="i88" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i89" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i90" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/NQueens.html" title="class in org.sosy_lab.java_smt.example">NQueens</a></td>
+<th class="colLast" scope="row">
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</th>
+</tr>
+<tr id="i91" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueens</a></td>
+<th class="colLast" scope="row">
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</th>
+</tr>
+<tr id="i92" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></td>
+<th class="colLast" scope="row">
+<div class="block">In addition to the enumeration done by <a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><code>NQueensEnumeratingPropagator</code></a>, this propagator also
+ enforces the queen placement constraints without explicit encoding.</div>
+</th>
+</tr>
+<tr id="i93" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></td>
+<th class="colLast" scope="row">
+<div class="block">This propagator enumerates the solutions of the NQueens problem by raising a conflict whenever
+ the solver finds a model.</div>
+</th>
+</tr>
+<tr id="i94" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">Formulas of any numeral sort.</div>
+</th>
+</tr>
+<tr id="i95" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i96" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i97" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</td>
+<th class="colLast" scope="row">
+<div class="block">This interface represents the Numeral Theory.</div>
+</th>
+</tr>
+<tr id="i98" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example">OptimizationFormulaWeights</a></td>
+<th class="colLast" scope="row">
+<div class="block">Example for optimizing the weight of some constraints.</div>
+</th>
+</tr>
+<tr id="i99" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example">OptimizationIntReal</a></td>
+<th class="colLast" scope="row">
+<div class="block">Example for optimizing 'x' with the constraint '0 &lt;= x &lt; 10'.</div>
+</th>
+</tr>
+<tr id="i100" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></td>
+<th class="colLast" scope="row">
+<div class="block">Interface for optimization modulo SMT.</div>
+</th>
+</tr>
+<tr id="i101" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></td>
+<th class="colLast" scope="row">
+<div class="block">Status of the optimization problem.</div>
+</th>
+</tr>
+<tr id="i102" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example">PrettyPrinter</a></td>
+<th class="colLast" scope="row">
+<div class="block">This program parses user-given formulas and prints them in a pretty format.</div>
+</th>
+</tr>
+<tr id="i103" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i104" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i105" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></td>
+<th class="colLast" scope="row">
+<div class="block">The PropagatorBackend class is used by <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> to implement custom user
+ propagators.</div>
+</th>
+</tr>
+<tr id="i106" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></td>
+<th class="colLast" scope="row">
+<div class="block">An interface to an incremental SMT solver with methods for pushing and popping formulas as well
+ as SAT checks.</div>
+</th>
+</tr>
+<tr id="i107" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></td>
+<th class="colLast" scope="row">
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about ProverEnvironments with Truth (allows using
+ <code>assert_().about(...).that(stack).isUnsatisfiable()</code> etc.).</div>
+</th>
+</tr>
+<tr id="i108" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i109" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">This interface contains methods for working with any theory with quantifiers.</div>
+</th>
+</tr>
+<tr id="i110" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i111" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Interface for operating over <a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.RationalFormula</code></a>.</div>
+</th>
+</tr>
+<tr id="i112" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the string sort.</div>
+</th>
+</tr>
+<tr id="i113" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></td>
+<th class="colLast" scope="row">
+<div class="block">A utility class for interrupting a parallel running solver thread.</div>
+</th>
+</tr>
+<tr id="i114" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example">SimpleUserPropagator</a></td>
+<th class="colLast" scope="row">
+<div class="block">Example of a simple user propagator that prohibits variables/expressions to be set to true.</div>
+</th>
+</tr>
+<tr id="i115" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">The <a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>SLFormulaManager</code></a> can build formulae for separation logic.</div>
+</th>
+</tr>
+<tr id="i116" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></td>
+<th class="colLast" scope="row">
+<div class="block">Abstract base class with helpful utilities for writing tests that use an SMT solver.</div>
+</th>
+</tr>
+<tr id="i117" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i118" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></td>
+<th class="colLast" scope="row">
+<div class="block">Instances of this interface provide access to an SMT solver.</div>
+</th>
+</tr>
+<tr id="i119" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></td>
+<th class="colLast" scope="row">
+<div class="block">Options for the prover environment.</div>
+</th>
+</tr>
+<tr id="i120" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></td>
+<th class="colLast" scope="row">
+<div class="block">Factory class for loading and generating solver contexts.</div>
+</th>
+</tr>
+<tr id="i121" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i122" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></td>
+<th class="colLast" scope="row">
+<div class="block">Exception thrown if there is an error during SMT solving.</div>
+</th>
+</tr>
+<tr id="i123" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></td>
+<th class="colLast" scope="row">
+<div class="block">This program takes all installed solvers and checks them for version, theories and features and
+ prints them to StdOut in a nice table.</div>
+</th>
+</tr>
+<tr id="i124" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></td>
+<th class="colLast" scope="row">
+<div class="block">This class builds the table row-by-row.</div>
+</th>
+</tr>
+<tr id="i125" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></td>
+<th class="colLast" scope="row">
+<div class="block">just a wrapper for some data.</div>
+</th>
+</tr>
+<tr id="i126" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i127" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i128" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils">SolverUtils</a></td>
+<th class="colLast" scope="row">
+<div class="block">Central entry point for all utility classes.</div>
+</th>
+</tr>
+<tr id="i129" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i130" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i131" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></td>
+<th class="colLast" scope="row">
+<div class="block">A formula of the string sort.</div>
+</th>
+</tr>
+<tr id="i132" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Manager for dealing with string formulas.</div>
+</th>
+</tr>
+<tr id="i133" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></td>
+<th class="colLast" scope="row">
+<div class="block">This program parses user-given Sudoku and solves it with an SMT solver.</div>
+</th>
+</tr>
+<tr id="i134" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i135" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i136" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i137" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;<a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="type parameter in Sudoku.SudokuSolver">S</a>&gt;</td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i138" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i139" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i140" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></td>
+<th class="colLast" scope="row">
+<div class="block">Tactic is a generic formula to formula transformation.</div>
+</th>
+</tr>
+<tr id="i141" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i142" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></td>
+<th class="colLast" scope="row">
+<div class="block">A minimal wrapper to keep a reference on the timer and provide a limited view.</div>
+</th>
+</tr>
+<tr id="i143" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></td>
+<th class="colLast" scope="row">
+<div class="block">Helper class for splitting up an SMT-LIB2 file into a string of commands.</div>
+</th>
+</tr>
+<tr id="i144" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></td>
+<th class="colLast" scope="row">
+<div class="block">Return class that lets the visitor guide the recursive formula traversal process started with
+ <a href="org/sosy_lab/java_smt/api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a>.</div>
+</th>
+</tr>
+<tr id="i145" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i146" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></td>
+<th class="colLast" scope="row">
+<div class="block">UfElimination replaces UFs by fresh variables and adds constraints to enforce the functional
+ consistency.</div>
+</th>
+</tr>
+<tr id="i147" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></td>
+<th class="colLast" scope="row">&nbsp;</th>
+</tr>
+<tr id="i148" class="altColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></td>
+<th class="colLast" scope="row">
+<div class="block">Manager for dealing with uninterpreted functions (UFs).</div>
+</th>
+</tr>
+<tr id="i149" class="rowColor">
+<td class="colFirst"><a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></td>
+<th class="colLast" scope="row">
+<div class="block">Allows user-defined propagators (~ theory solvers) to be implemented.</div>
+</th>
+</tr>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/allclasses.html b/api/allclasses.html
new file mode 100644
index 0000000000..af074ff44e
--- /dev/null
+++ b/api/allclasses.html
@@ -0,0 +1,180 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>All Classes (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<main role="main">
+<h1 class="bar">All&nbsp;Classes</h1>
+<div class="indexContainer">
+<ul>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></li>
+<li><a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example">AllSatExample</a></li>
+<li><a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">ArrayFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">ArrayFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BasicProverEnvironment</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BasicProverEnvironment.AllSatCallback</span></a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BitvectorFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BitvectorFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BooleanFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">BooleanFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="interfaceName">BooleanFormulaVisitor</span></a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">EnumerationFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">EnumerationFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">Evaluator</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">FloatingPointFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">FloatingPointFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">FloatingPointRoundingModeFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">Formula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">FormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="interfaceName">FormulaVisitor</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">FunctionDeclaration</span></a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></li>
+<li><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></li>
+<li><a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></li>
+<li><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">IntegerFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">InterpolatingProverEnvironment</span></a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Interpolation.html" title="class in org.sosy_lab.java_smt.example">Interpolation</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></li>
+<li><a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">Model</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></li>
+<li><a href="org/sosy_lab/java_smt/example/NQueens.html" title="class in org.sosy_lab.java_smt.example">NQueens</a></li>
+<li><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueens</a></li>
+<li><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></li>
+<li><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></li>
+<li><a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">NumeralFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">NumeralFormula.IntegerFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">NumeralFormula.RationalFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">NumeralFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example">OptimizationFormulaWeights</a></li>
+<li><a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example">OptimizationIntReal</a></li>
+<li><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">OptimizationProverEnvironment</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></li>
+<li><a href="org/sosy_lab/java_smt/example/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example">PrettyPrinter</a></li>
+<li><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></li>
+<li><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></li>
+<li><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">PropagatorBackend</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">ProverEnvironment</span></a></li>
+<li><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></li>
+<li><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">QuantifiedFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></li>
+<li><a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">RationalFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">RegexFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></li>
+<li><a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example">SimpleUserPropagator</a></li>
+<li><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">SLFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></li>
+<li><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></li>
+<li><a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">SolverContext</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></li>
+<li><a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></li>
+<li><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></li>
+<li><a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></li>
+<li><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></li>
+<li><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></li>
+<li><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></li>
+<li><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></li>
+<li><a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils">SolverUtils</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></li>
+<li><a href="org/sosy_lab/java_smt/api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">StringFormula</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">StringFormulaManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></li>
+<li><a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></li>
+<li><a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></li>
+<li><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></li>
+<li><a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">UFManager</span></a></li>
+<li><a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><span class="interfaceName">UserPropagator</span></a></li>
+</ul>
+</div>
+</main>
+</body>
+</html>
diff --git a/api/allpackages-index.html b/api/allpackages-index.html
new file mode 100644
index 0000000000..b2ffe8145f
--- /dev/null
+++ b/api/allpackages-index.html
@@ -0,0 +1,245 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>All Packages (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="All Packages (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="All&amp;nbsp;Packages" class="title">All&nbsp;Packages</h1>
+</div>
+<div class="allPackagesContainer">
+<ul class="blockList">
+<li class="blockList">
+<table class="packagesSummary">
+<caption><span>Package Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Package</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a></th>
+<td class="colLast">
+<div class="block">JavaSMT: a generic SMT solver API.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></th>
+<td class="colLast">
+<div class="block">The core interfaces for abstracting from SMT solvers and providing a common API for all solvers.</div>
+</td>
+</tr>
+<tr class="altColor">
+<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>
+<td class="colLast">
+<div class="block">The visitors of this package allow for efficient traversal, manipulation and transformation of
+ formulas.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></th>
+<td class="colLast">
+<div class="block">Abstract base classes for easier implementation of a solver backend.</div>
+</td>
+</tr>
+<tr class="altColor">
+<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>
+<td class="colLast">
+<div class="block">Default tactics implementations (formula-to-formula transformations).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<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>
+<td class="colLast">
+<div class="block">Wrapper-classes to guarantee identical behavior for all solvers.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<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>
+<td class="colLast">
+<div class="block">Wraps the proving environment with loggers.</div>
+</td>
+</tr>
+<tr class="altColor">
+<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>
+<td class="colLast">
+<div class="block">The classes of this package wrap the whole proving environment and measure all accesses to it.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<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>
+<td class="colLast">
+<div class="block">The classes of this package wrap the whole solver context and all corresponding proving
+ environment and synchronize all accesses to it.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></th>
+<td class="colLast">
+<div class="block">Some basic examples for using Java-SMT.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<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>
+<td class="colLast">
+<div class="block">Some basic examples for using Java-SMT.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></th>
+<td class="colLast">
+<div class="block">Solver-independent tests and test utilities for the solver API.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></th>
+<td class="colLast">
+<div class="block">Utility classes implementing algorithms based on the API of JavaSMT.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/constant-values.html b/api/constant-values.html
new file mode 100644
index 0000000000..2531646b33
--- /dev/null
+++ b/api/constant-values.html
@@ -0,0 +1,241 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Constant Field Values (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Constant Field Values (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
+<section>
+<h2 title="Contents">Contents</h2>
+<ul>
+<li><a href="#org.sosy_lab">org.sosy_lab.*</a></li>
+</ul>
+</section>
+</div>
+<div class="constantValuesContainer"><a id="org.sosy_lab">
+<!--   -->
+</a>
+<section>
+<h2 title="org.sosy_lab">org.sosy_lab.*</h2>
+<ul class="blockList">
+<li class="blockList">
+<table class="constantsSummary">
+<caption><span>org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&gt;</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.api.BasicProverEnvironment.NO_MODEL_HELP">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></th>
+<td class="colLast"><code>"Model computation failed. Are the pushed formulae satisfiable?"</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="constantsSummary">
+<caption><span>org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.api.FloatingPointNumber.DOUBLE_PRECISION_EXPONENT_SIZE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#DOUBLE_PRECISION_EXPONENT_SIZE">DOUBLE_PRECISION_EXPONENT_SIZE</a></code></th>
+<td class="colLast"><code>11</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.api.FloatingPointNumber.DOUBLE_PRECISION_MANTISSA_SIZE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#DOUBLE_PRECISION_MANTISSA_SIZE">DOUBLE_PRECISION_MANTISSA_SIZE</a></code></th>
+<td class="colLast"><code>52</code></td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.api.FloatingPointNumber.SINGLE_PRECISION_EXPONENT_SIZE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#SINGLE_PRECISION_EXPONENT_SIZE">SINGLE_PRECISION_EXPONENT_SIZE</a></code></th>
+<td class="colLast"><code>8</code></td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.api.FloatingPointNumber.SINGLE_PRECISION_MANTISSA_SIZE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#SINGLE_PRECISION_MANTISSA_SIZE">SINGLE_PRECISION_MANTISSA_SIZE</a></code></th>
+<td class="colLast"><code>23</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<ul class="blockList">
+<li class="blockList">
+<table class="constantsSummary">
+<caption><span>org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Constant Field</th>
+<th class="colLast" scope="col">Value</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<td class="colFirst"><a id="org.sosy_lab.java_smt.example.Sudoku.SIZE">
+<!--   -->
+</a><code>public&nbsp;static&nbsp;final&nbsp;int</code></td>
+<th class="colSecond" scope="row"><code><a href="org/sosy_lab/java_smt/example/Sudoku.html#SIZE">SIZE</a></code></th>
+<td class="colLast"><code>9</code></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/deprecated-list.html b/api/deprecated-list.html
new file mode 100644
index 0000000000..3d65c5c961
--- /dev/null
+++ b/api/deprecated-list.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Deprecated List (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Deprecated List (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li class="navBarCell1Rev">Deprecated</li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Deprecated API" class="title">Deprecated API</h1>
+<h2 title="Contents">Contents</h2>
+<ul>
+<li><a href="#forRemoval">For Removal</a></li>
+<li><a href="#method">Methods</a></li>
+</ul>
+</div>
+<div class="contentContainer"><a id="forRemoval">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<table class="deprecatedSummary">
+<caption><span>For Removal</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Element</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">org.sosy_lab.java_smt.api.BitvectorFormulaManager.modulo&#8203;(BitvectorFormula, BitvectorFormula, boolean)</a></th>
+<td class="colLast"></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+<a id="method">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<table class="deprecatedSummary">
+<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colDeprecatedItemName" scope="row"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">org.sosy_lab.java_smt.api.BitvectorFormulaManager.modulo&#8203;(BitvectorFormula, BitvectorFormula, boolean)</a></th>
+<td class="colLast"></td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li class="navBarCell1Rev">Deprecated</li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/element-list b/api/element-list
new file mode 100644
index 0000000000..f1bdc7a97b
--- /dev/null
+++ b/api/element-list
@@ -0,0 +1,14 @@
+org.sosy_lab.java_smt
+org.sosy_lab.java_smt.api
+org.sosy_lab.java_smt.api.visitors
+org.sosy_lab.java_smt.basicimpl
+org.sosy_lab.java_smt.basicimpl.tactics
+org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper
+org.sosy_lab.java_smt.delegate.debugging
+org.sosy_lab.java_smt.delegate.logging
+org.sosy_lab.java_smt.delegate.statistics
+org.sosy_lab.java_smt.delegate.synchronize
+org.sosy_lab.java_smt.example
+org.sosy_lab.java_smt.example.nqueens_user_propagator
+org.sosy_lab.java_smt.test
+org.sosy_lab.java_smt.utils
diff --git a/api/help-doc.html b/api/help-doc.html
new file mode 100644
index 0000000000..c4767d1aa5
--- /dev/null
+++ b/api/help-doc.html
@@ -0,0 +1,273 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>API Help (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="API Help (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li class="navBarCell1Rev">Help</li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">How This API Document Is Organized</h1>
+<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div>
+</div>
+<div class="contentContainer">
+<ul class="blockList">
+<li class="blockList">
+<section>
+<h2>Overview</h2>
+<p>The <a href="index.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each.  This page can also contain an overall description of the set of packages.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Package</h2>
+<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain six categories:</p>
+<ul>
+<li>Interfaces</li>
+<li>Classes</li>
+<li>Enums</li>
+<li>Exceptions</li>
+<li>Errors</li>
+<li>Annotation Types</li>
+</ul>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Class or Interface</h2>
+<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p>
+<ul>
+<li>Class Inheritance Diagram</li>
+<li>Direct Subclasses</li>
+<li>All Known Subinterfaces</li>
+<li>All Known Implementing Classes</li>
+<li>Class or Interface Declaration</li>
+<li>Class or Interface Description</li>
+</ul>
+<br>
+<ul>
+<li>Nested Class Summary</li>
+<li>Field Summary</li>
+<li>Property Summary</li>
+<li>Constructor Summary</li>
+<li>Method Summary</li>
+</ul>
+<br>
+<ul>
+<li>Field Detail</li>
+<li>Property Detail</li>
+<li>Constructor Detail</li>
+<li>Method Detail</li>
+</ul>
+<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Annotation Type</h2>
+<p>Each annotation type has its own separate page with the following sections:</p>
+<ul>
+<li>Annotation Type Declaration</li>
+<li>Annotation Type Description</li>
+<li>Required Element Summary</li>
+<li>Optional Element Summary</li>
+<li>Element Detail</li>
+</ul>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Enum</h2>
+<p>Each enum has its own separate page with the following sections:</p>
+<ul>
+<li>Enum Declaration</li>
+<li>Enum Description</li>
+<li>Enum Constant Summary</li>
+<li>Enum Constant Detail</li>
+</ul>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Tree (Class Hierarchy)</h2>
+<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with <code>java.lang.Object</code>. Interfaces do not inherit from <code>java.lang.Object</code>.</p>
+<ul>
+<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li>
+<li>When viewing a particular package, class or interface page, clicking on "Tree" displays the hierarchy for only that package.</li>
+</ul>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Deprecated API</h2>
+<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Index</h2>
+<p>The <a href="index-all.html">Index</a> contains an alphabetic index of all classes, interfaces, constructors, methods, and fields, as well as lists of all packages and all classes.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>All&nbsp;Classes</h2>
+<p>The <a href="allclasses.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Serialized Form</h2>
+<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Constant Field Values</h2>
+<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p>
+</section>
+</li>
+<li class="blockList">
+<section>
+<h2>Search</h2>
+<p>You can search for definitions of modules, packages, types, fields, methods and other terms defined in the API, using some or all of the name. "Camel-case" abbreviations are supported: for example, "InpStr" will find "InputStream" and "InputStreamReader".</p>
+</section>
+</li>
+</ul>
+<hr>
+<span class="emphasizedPhrase">This help file applies to API documentation generated by the standard doclet.</span></div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li class="navBarCell1Rev">Help</li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/index-all.html b/api/index-all.html
new file mode 100644
index 0000000000..2741e19377
--- /dev/null
+++ b/api/index-all.html
@@ -0,0 +1,5235 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Index (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Index (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li class="navBarCell1Rev">Index</li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="contentContainer"><a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:N">N</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:Q">Q</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:T">T</a>&nbsp;<a href="#I:U">U</a>&nbsp;<a href="#I:V">V</a>&nbsp;<a href="#I:W">W</a>&nbsp;<a href="#I:X">X</a>&nbsp;<a href="#I:Y">Y</a>&nbsp;<a href="#I:Z">Z</a>&nbsp;<br><a href="allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="allpackages-index.html">All&nbsp;Packages</a><a id="I:A">
+<!--   -->
+</a>
+<h2 class="title">A</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#ABORT">ABORT</a></span> - Static variable in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>
+<div class="block">Immediately abort traversal and return to caller.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#ABORT_TYPE">ABORT_TYPE</a></span> - org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#abs(TFormulaInfo)">abs(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractArrayFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractArrayFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBitvectorFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager)">AbstractBitvectorFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractBooleanFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBooleanFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractBooleanFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractEnumerationFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager.EnumType</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">The class 'EnumType' is just a plain internal value-holding class.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEvaluator</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractEvaluator(AbstractProver&lt;?&gt;, FormulaCreator&lt;TFormulaInfo, TType, TEnv, ?&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFloatingPointFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormulaManager</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractFloatingPointFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">Simplifies building a solver from the specific theories.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractUFManager,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager,org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractBitvectorFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractFloatingPointFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractQuantifiedFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractArrayFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractSLFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractStringFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager)">AbstractFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractUFManager&lt;TFormulaInfo, ?, TType, TEnv&gt;, AbstractBooleanFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, IntegerFormulaManager, RationalFormulaManager, AbstractBitvectorFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractFloatingPointFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractQuantifiedFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractArrayFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractSLFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractStringFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractEnumerationFormulaManager&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Builds a solver from the given theory implementations.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractModel</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="type parameter in AbstractModel">TEnv</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractModel(AbstractProver&lt;?&gt;, FormulaCreator&lt;TFormulaInfo, TType, TEnv, ?&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormulaManager</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic)">AbstractNumeralFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;, AbstractNumeralFormulaManager.NonLinearArithmetic)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager.NonLinearArithmetic</span></a> - Enum in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProver</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#%3Cinit%3E(java.util.Set)">AbstractProver(Set&lt;SolverContext.ProverOptions&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProverWithAllSat</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="type parameter in AbstractProverWithAllSat">T</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">This class is a utility-class to avoid repeated implementation of the AllSAT computation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html#%3Cinit%3E(java.util.Set,org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.common.ShutdownNotifier)">AbstractProverWithAllSat(Set&lt;SolverContext.ProverOptions&gt;, BooleanFormulaManager, ShutdownNotifier)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractQuantifiedFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractQuantifiedFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSLFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractSLFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSolverContext</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">AbstractSolverContext(FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractStringFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractStringFormulaManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFuncDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUFManager</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TFunctionDecl</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="type parameter in AbstractUFManager">TEnv</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">This class simplifies the implementation of the FunctionFormulaManager by converting the types to
+ the solver specific type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractUFManager(FormulaCreator&lt;TFormulaInfo, TType, TEnv, TFunctionDecl&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUserPropagator</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#%3Cinit%3E()">AbstractUserPropagator()</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#ACKERMANNIZATION">ACKERMANNIZATION</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Replaces all applications of UFs with fresh variables and adds constraints to enforce the
+ functional consistency.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the addition of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#add(TFormulaInfo,TFormulaInfo)">add(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#add(TFormulaInfo,TFormulaInfo)">add(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#add(TFormulaInfo,TFormulaInfo,TFormulaInfo)">add(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#ADD">ADD</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Addition over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#addConstraintImpl(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraintImpl(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html#addFunctionDeclaration(org.sosy_lab.java_smt.api.FunctionDeclaration)">addFunctionDeclaration(FunctionDeclaration&lt;?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></dt>
+<dd>
+<div class="block">Needs to be called after a new function is declared to associate it with this context.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html#addSolver(org.sosy_lab.java_smt.example.SolverOverviewTable.SolverInfo)">addSolver(SolverOverviewTable.SolverInfo)</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></dt>
+<dd>
+<div class="block">Takes a SolverInfo object and splits it into multiple lines which are added to the row.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#all()">all()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#all()">all()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#all()">all()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#allChar()">allChar()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#allChar()">allChar()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#allChar()">allChar()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#allCharImpl()">allCharImpl()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#allImpl()">allImpl()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat(BasicProverEnvironment.AllSatCallback&lt;R&gt;, List&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat(BasicProverEnvironment.AllSatCallback&lt;R&gt;, List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat(BasicProverEnvironment.AllSatCallback&lt;R&gt;, List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">AllSatExample</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This example shows different ways to get all satisfiable models for a given set of constraints.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/AllSatExample.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.ProverEnvironment)">AllSatExample(SolverContext, ProverEnvironment)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example">AllSatExample</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#amgr">amgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#and(java.util.Collection)">and(Collection&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#and(java.util.Collection)">and(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#and(java.util.Collection)">and(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and(BooleanFormula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and(BooleanFormula...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and(BooleanFormula...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#and(TFormulaInfo,TFormulaInfo)">and(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#and(TFormulaInfo,TFormulaInfo)">and(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#AND">AND</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#andImpl(java.util.Collection)">andImpl(Collection&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Create an n-ary conjunction.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html#apply(java.util.List)">apply(List&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a></dt>
+<dd>
+<div class="block">Callback for each possible satisfying assignment to given <code>important</code> predicates.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#applyCNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyCNFImpl(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Apply conjunctive normal form (CNF) transformation to the given input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#applyNNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyNNFImpl(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Apply negation normal form (NNF) transformation to the given input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#applyQELightImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyQELightImpl(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Eliminate quantifiers from the given input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic(BooleanFormula, Tactic)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Apply a tactic which performs formula transformation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic(BooleanFormula, Tactic)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic(BooleanFormula, Tactic)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#applyUFEImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyUFEImpl(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Eliminate UFs from the given input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html#APPROXIMATE_ALWAYS">APPROXIMATE_ALWAYS</a></span> - org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html#APPROXIMATE_FALLBACK">APPROXIMATE_FALLBACK</a></span> - org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormula</span></a>&lt;<a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="type parameter in ArrayFormula">TI</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="type parameter in ArrayFormula">TE</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the array sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This interface represents the theory of (arbitrarily nested) arrays.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.html#asList()">asList()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></dt>
+<dd>
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#asList()">asList()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#asList()">asList()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#asMap()">asMap()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html#assertThat(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThat(BasicProverEnvironment&lt;?&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThat(stack).is...()</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThatEnvironment(BasicProverEnvironment&lt;?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThatEnvironment(stack).is...()</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)">assertThatFormula(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about BooleanFormulas with Truth: <code>
+ assertThatFormula(formula).is...()</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#assertUsing(org.sosy_lab.java_smt.api.SolverContext)">assertUsing(SolverContext)</a></span> - Static method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assertUsing(context)).that(formula).is...()</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Create a term for assigning one floating-point term to another.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#assignment(TFormulaInfo,TFormulaInfo)">assignment(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#avoidDualStacksIfNotSupported()">avoidDualStacksIfNotSupported()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:B">
+<!--   -->
+</a>
+<h2 class="title">B</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#BASIC_OPERATORS">BASIC_OPERATORS</a></span> - Static variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Avoid using basic mathematical or logical operators of SMT-LIB2 as names for symbols.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment</span></a>&lt;<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Super interface for <a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> and <a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> that
+ provides only the common operations.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment.AllSatCallback</span></a>&lt;<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Interface for the <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> callback.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">BasicProverWithAssumptionsWrapper</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">P</a> extends <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Binoxxo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This program parses a user-given Binoxxo and solves it with an SMT solver.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BinoxxoSolver</span></a>&lt;<a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="type parameter in Binoxxo.BinoxxoSolver">S</a>&gt; - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BooleanBasedBinoxxoSolver</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This solver encodes nore steps into boolean logic, which makes it about 10x faster than the
+ <a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><code>Binoxxo.IntegerBasedBinoxxoSolver</code></a>.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.IntegerBasedBinoxxoSolver</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the bitvector sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Manager for dealing with formulas of the bitvector sort.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#BITWUZLA">BITWUZLA</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#bmgr">bmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">BooleanBasedBinoxxoSolver(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">BooleanBasedSudokuSolver(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the boolean sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Manager for dealing with boolean formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#booleanFormulasOf(org.sosy_lab.java_smt.api.SolverContext)">booleanFormulasOf(SolverContext)</a></span> - Static method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assert_().about(booleanFormulasOf(context)).that(formula).is...()</code>.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">BooleanFormulaSubject</span></a> - Class in <a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></dt>
+<dd>
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about BooleanFormulas with Truth (allows using
+ <code>assert_().about(...).that(formula).isUnsatisfiable()</code> etc.).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaTransformationVisitor</span></a> - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Base class for visitors for boolean formulas that recursively transform boolean formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">BooleanFormulaTransformationVisitor(FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaVisitor</span></a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Visitor iterating through the boolean part of the formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#BooleanType">BooleanType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#BOOLECTOR">BOOLECTOR</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ADD">BV_ADD</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Addition over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_AND">BV_AND</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Bitwise AND over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ASHR">BV_ASHR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Arithmetic right-shift over bitvectors (fill from left with value of first bit).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_CONCAT">BV_CONCAT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Concatenation over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_EQ">BV_EQ</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Equality over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_EXTRACT">BV_EXTRACT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Extraction over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_LSHR">BV_LSHR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Logical right-shift over bitvectors (fill from left with zeroes).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_MUL">BV_MUL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Multiplication over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_NEG">BV_NEG</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Negation of a bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_NOT">BV_NOT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Bitwise negation of a bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_OR">BV_OR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Bitwise OR over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ROTATE_LEFT">BV_ROTATE_LEFT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Performs a circular left rotation on the bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ROTATE_LEFT_BY_INT">BV_ROTATE_LEFT_BY_INT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Performs a circular left rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ROTATE_RIGHT">BV_ROTATE_RIGHT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Performs a circular right rotation on the bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ROTATE_RIGHT_BY_INT">BV_ROTATE_RIGHT_BY_INT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Performs a circular right rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SCASTTO_FP">BV_SCASTTO_FP</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Cast a signed bitvector to a floating-point number.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SDIV">BV_SDIV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed division over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SGE">BV_SGE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SGT">BV_SGT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned greater-than over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SHL">BV_SHL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Logical left-shift over bitvectors (fill from right with zeroes).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SIGN_EXTENSION">BV_SIGN_EXTENSION</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Extend bitvectors according to their sign.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SLE">BV_SLE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SLT">BV_SLT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned less-than over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SMOD">BV_SMOD</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed modulo over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SREM">BV_SREM</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed remainder over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_SUB">BV_SUB</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Subtraction over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_UCASTTO_FP">BV_UCASTTO_FP</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Cast an unsigned bitvector to a floating-point number.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_UDIV">BV_UDIV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned division over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_UGE">BV_UGE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned greater-than-or-equal over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_UGT">BV_UGT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed greater-than over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ULE">BV_ULE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned less-than-or-equal over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ULT">BV_ULT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Signed less-than over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_UREM">BV_UREM</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unsigned remainder over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_XOR">BV_XOR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Bitwise XOR over bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#BV_ZERO_EXTENSION">BV_ZERO_EXTENSION</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Extend bitvectors with zeros.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#bvmgr">bvmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:C">
+<!--   -->
+</a>
+<h2 class="title">C</h2>
+<dl>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">CachingModel</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#%3Cinit%3E(org.sosy_lab.java_smt.api.Model)">CachingModel(Model)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#callFunction(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callFunction(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#callFunctionImpl(TFuncDecl,java.util.List)">callFunctionImpl(TFuncDecl, List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>
+<div class="block">Create an uninterpreted function call.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom(Formula, boolean, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Build a <a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom(Formula, boolean, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom(Formula, boolean, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Build a <a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castFromImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">castFromImpl(TFormulaInfo, boolean, FormulaType.FloatingPointType, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Build a formula of compatible type from a <a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Build a formula of compatible type from a <a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo(FloatingPointFormula, boolean, FormulaType&lt;T&gt;, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#castToImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">castToImpl(TFormulaInfo, boolean, FormulaType&lt;?&gt;, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt(StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Get a substring of length 1 from the given String.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt(StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt(StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#charAt(TFormulaInfo,TFormulaInfo)">charAt(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#check()">check()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>
+<div class="block">Optimize the objective function subject to the previously imposed constraints.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#check()">check()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#checkEnableSeparationLogic()">checkEnableSeparationLogic()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#checkGenerateAllSat()">checkGenerateAllSat()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#checkGenerateModels()">checkGenerateModels()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#checkGenerateUnsatCores()">checkGenerateUnsatCores()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#checkGenerateUnsatCoresOverAssumptions()">checkGenerateUnsatCoresOverAssumptions()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#checkTreeStructure(int,int%5B%5D)">checkTreeStructure(int, int[])</a></span> - Static method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">Checks for a valid subtree-structure.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#checkVariableName(java.lang.String)">checkVariableName(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">This method is similar to <a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#isValidName(java.lang.String)"><code>AbstractFormulaManager.isValidName(java.lang.String)</code></a> and throws an exception for invalid symbol
+ names.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#clearAssumptions()">clearAssumptions()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#clearAssumptions()">clearAssumptions()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#close()">close()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Closes the prover environment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#close()">close()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Free resources associated with this evaluator (existing <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances stay valid,
+ but <a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.html#close()">close()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></dt>
+<dd>
+<div class="block">Free resources associated with this model (existing <a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#close()">close()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Close the solver context.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#close()">close()</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#closeAllEvaluators()">closeAllEvaluators()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#closed">closed</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#closeSolver()">closeSolver()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure(RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#closure(TFormulaInfo)">closure(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement(RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#complement(TFormulaInfo)">complement(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#concat(java.util.List)">concat(List&lt;StringFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#concat(java.util.List)">concat(List&lt;StringFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#concat(java.util.List)">concat(List&lt;StringFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Concatenate two bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.RegexFormula...)">concat(RegexFormula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.StringFormula...)">concat(StringFormula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#concat(TFormulaInfo,TFormulaInfo)">concat(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#concatImpl(java.util.List)">concatImpl(List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#concatRegex(java.util.List)">concatRegex(List&lt;RegexFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#concatRegex(java.util.List)">concatRegex(List&lt;RegexFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#concatRegex(java.util.List)">concatRegex(List&lt;RegexFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#concatRegexImpl(java.util.List)">concatRegexImpl(List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#config">config</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#CONST">CONST</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#constraintTestBool1()">constraintTestBool1()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#constraintTestBool2()">constraintTestBool2()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#constraintTestBool3()">constraintTestBool3()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#constraintTestBool4()">constraintTestBool4()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#contains(org.sosy_lab.java_smt.api.Formula)">contains(Formula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#contains(TFormulaInfo,TFormulaInfo)">contains(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#context">context</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#CONTINUE">CONTINUE</a></span> - Static variable in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>
+<div class="block">Continue traversal and recurse into current formula subtree.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#CONTINUE_TYPE">CONTINUE_TYPE</a></span> - org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#convertValue(TFormulaInfo)">convertValue(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type like Boolean, BigInteger, Rational, or String.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#convertValue(TFormulaInfo,TFormulaInfo)">convertValue(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">createSolverContext(Configuration, LogManager, ShutdownNotifier)</a></span> - Static method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">Shortcut for getting a <a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using the configuration
+ <code>config</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers)">createSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">Shortcut for getting a <a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using an argument.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers,java.util.function.Consumer)">createSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContextFactory.Solvers, Consumer&lt;String&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">This is the most explicit method for getting a <a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver, the logger,
+ the shutdownNotifier, and the libraryLoader are provided as parameters by the caller.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#createSolverContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">createSolverContext(SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">Minimalistic shortcut for creating a solver context.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#createTestConfigBuilder()">createTestConfigBuilder()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#creator">creator</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross(RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#currentModel">currentModel</a></span> - Variable in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#custom(java.lang.Iterable)">custom(Iterable&lt;? extends Formula&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>
+<div class="block">Traverse only the given children.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#custom(org.sosy_lab.java_smt.api.Formula)">custom(Formula)</a></span> - Static method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>
+<div class="block">Traverse only the given child.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#CUSTOM_TYPE">CUSTOM_TYPE</a></span> - org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#CVC4">CVC4</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#CVC5">CVC5</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:D">
+<!--   -->
+</a>
+<h2 class="title">D</h2>
+<dl>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingArrayFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.ArrayFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingArrayFormulaManager(ArrayFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBitvectorFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.BitvectorFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingBitvectorFormulaManager(BitvectorFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBooleanFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingBooleanFormulaManager(BooleanFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingEnumerationFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.EnumerationFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingEnumerationFormulaManager(EnumerationFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFloatingPointFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FloatingPointFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingFloatingPointFormulaManager(FloatingPointFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingFormulaManager(FormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingIntegerFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingIntegerFormulaManager(IntegerFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingInterpolatingProverEnvironment</span></a>&lt;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt; - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html#%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingInterpolatingProverEnvironment(InterpolatingProverEnvironment&lt;T&gt;, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingModel</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#%3Cinit%3E(org.sosy_lab.java_smt.api.Model,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingModel(Model, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingNumeralFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt; - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.NumeralFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingNumeralFormulaManager(NumeralFormulaManager&lt;ParamFormulaType, ResultFormulaType&gt;, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingOptimizationProverEnvironment</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#%3Cinit%3E(org.sosy_lab.java_smt.api.OptimizationProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingOptimizationProverEnvironment(OptimizationProverEnvironment, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingProverEnvironment</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html#%3Cinit%3E(org.sosy_lab.java_smt.api.BasicProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingProverEnvironment(BasicProverEnvironment&lt;Void&gt;, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingQuantifiedFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.QuantifiedFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingQuantifiedFormulaManager(QuantifiedFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingRationalFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingRationalFormulaManager(RationalFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSLFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SLFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingSLFormulaManager(SLFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverContext</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#%3Cinit%3E(org.sosy_lab.java_smt.SolverContextFactory.Solvers,org.sosy_lab.common.configuration.Configuration,org.sosy_lab.java_smt.api.SolverContext)">DebuggingSolverContext(SolverContextFactory.Solvers, Configuration, SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverInformation</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingStringFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.StringFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingStringFormulaManager(StringFormulaManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingUFManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#%3Cinit%3E(org.sosy_lab.java_smt.api.UFManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingUFManager(UFManager, DebuggingAssertions)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#decimalAsInteger(java.math.BigDecimal)">decimalAsInteger(BigDecimal)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>
+<div class="block">This method tries to represent a BigDecimal using only BigInteger.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF(String, FormulaType&lt;T&gt;, List&lt;Formula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF(String, FormulaType&lt;T&gt;, List&lt;Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF(String, FormulaType&lt;T&gt;, List&lt;Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF(String, FormulaType&lt;T&gt;, Formula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF(String, FormulaType&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF(String, FormulaType&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration(String, String...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration(String, Set&lt;String&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></dt>
+<dd>
+<div class="block">Declare an enumeration.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration(String, Set&lt;String&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration(String, Set&lt;String&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration(String, Set&lt;String&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration(String, Set&lt;String&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#declareEnumeration0(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">declareEnumeration0(FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#declareEnumerationImpl(java.lang.String,java.util.Set)">declareEnumerationImpl(String, Set&lt;String&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF(String, FormulaType&lt;T&gt;, List&lt;FormulaType&lt;?&gt;&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>
+<div class="block">Declare an uninterpreted function.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF(String, FormulaType&lt;T&gt;, List&lt;FormulaType&lt;?&gt;&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF(String, FormulaType&lt;T&gt;, List&lt;FormulaType&lt;?&gt;&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF(String, FormulaType&lt;T&gt;, FormulaType&lt;?&gt;...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></dt>
+<dd>
+<div class="block">Declare an uninterpreted function.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF(String, FormulaType&lt;T&gt;, FormulaType&lt;?&gt;...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF(String, FormulaType&lt;T&gt;, FormulaType&lt;?&gt;...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#declareUFImpl(java.lang.String,TType,java.util.List)">declareUFImpl(String, TType, List&lt;TType&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultBooleanFormulaVisitor</span></a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">A formula visitor which allows for the default implementation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#%3Cinit%3E()">DefaultBooleanFormulaVisitor()</a></span> - Constructor for class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultFormulaVisitor</span></a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#%3Cinit%3E()">DefaultFormulaVisitor()</a></span> - Constructor for class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#delegate">delegate</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#dequote(java.lang.String)">dequote(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Variable names (symbols) can be wrapped with "|".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference(RegexFormula, RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#difference(TFormulaInfo,TFormulaInfo)">difference(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#DISALLOWED_CHARACTER_REPLACEMENT">DISALLOWED_CHARACTER_REPLACEMENT</a></span> - Static variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Mapping of disallowed char to their escaped counterparts.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#distinct(java.util.List)">distinct(List&lt;BitvectorFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">All given bitvectors are pairwise unequal.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#distinct(java.util.List)">distinct(List&lt;BitvectorFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#distinct(java.util.List)">distinct(List&lt;BitvectorFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#distinct(java.util.List)">distinct(List&lt;ParamFormulaType&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">All given numbers are pairwise unequal.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#distinct(java.util.List)">distinct(List&lt;ParamFormulaType&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#distinct(java.util.List)">distinct(List&lt;ParamFormulaType&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#DISTINCT">DISTINCT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Distinct operator for a set of numeric formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#distinctImpl(java.util.List)">distinctImpl(List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#distinctImpl(java.util.List)">distinctImpl(List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#DIV">DIV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Division over rationals and integer division over integers.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the division for two bitvector formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#divide(TFormulaInfo,TFormulaInfo)">divide(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>
+<div class="block">If a solver does not support this operation, e.g.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#divide(TFormulaInfo,TFormulaInfo,boolean)">divide(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#divide(TFormulaInfo,TFormulaInfo,TFormulaInfo)">divide(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#DOUBLE_PRECISION_EXPONENT_SIZE">DOUBLE_PRECISION_EXPONENT_SIZE</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#DOUBLE_PRECISION_MANTISSA_SIZE">DOUBLE_PRECISION_MANTISSA_SIZE</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#doubleValue()">doubleValue()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">compute a representation as Java-based double value, if possible.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#dualStackGlobalDeclarations()">dualStackGlobalDeclarations()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>
+<div class="block">This test checks that an SMT solver uses "global declarations": regardless of the stack at
+ declaration time, declarations always live for the full lifetime of the solver (i.e., they do
+ not get deleted on pop()).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#dualStackTest()">dualStackTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#dualStackTest2()">dualStackTest2()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Serialize an input formula to an SMT-LIB format.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#dumpFormulaImpl(TFormulaInfo)">dumpFormulaImpl(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:E">
+<!--   -->
+</a>
+<h2 class="title">E</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>
+<div class="block">Eliminate the quantifiers for a given formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html#eliminateQuantifiers(TFormulaInfo)">eliminateQuantifiers(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.html#eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateUfs(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></dt>
+<dd>
+<div class="block">Applies the Ackermann transformation to the given <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.html#eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.utils.UfElimination.Result)">eliminateUfs(BooleanFormula, UfElimination.Result)</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></dt>
+<dd>
+<div class="block">Applies the Ackermann transformation to the given <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> with respect to the <a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination.Result</code></a> of another formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#emgr">emgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html#empty(org.sosy_lab.java_smt.api.FormulaManager)">empty(FormulaManager)</a></span> - Static method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#ENABLE_SEPARATION_LOGIC">ENABLE_SEPARATION_LOGIC</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Whether the solver should enable support for formulae build in SL theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#enableSL">enableSL</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulate(org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">encapsulate(FormulaType&lt;T&gt;, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateArray(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">encapsulateArray(TFormulaInfo, FormulaType&lt;TI&gt;, FormulaType&lt;TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateBitvector(TFormulaInfo)">encapsulateBitvector(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateBoolean(TFormulaInfo)">encapsulateBoolean(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateEnumeration(TFormulaInfo)">encapsulateEnumeration(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateFloatingPoint(TFormulaInfo)">encapsulateFloatingPoint(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateRegex(TFormulaInfo)">encapsulateRegex(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateString(TFormulaInfo)">encapsulateString(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#encapsulateWithTypeOf(TFormulaInfo)">encapsulateWithTypeOf(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">EnumerationBasedSudokuSolver(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the enumeration sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This interface represents the theory of enumeration, i.e., datatype of limited domain sort (as
+ defined in the SMTLIB2 standard).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#enumerations">enumerations</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType,TType,com.google.common.collect.ImmutableMap)">EnumType(FormulaType.EnumerationFormulaType, TType, ImmutableMap&lt;String, TFormulaInfo&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#environment">environment</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#EQ">EQ</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Equality over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#EQ_ZERO">EQ_ZERO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unary comparison to zero.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#equal(TFormulaInfo,TFormulaInfo)">equal(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#equal(TFormulaInfo,TFormulaInfo)">equal(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#equal(TFormulaInfo,TFormulaInfo)">equal(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Formula.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></dt>
+<dd>
+<div class="block">checks whether the other object is a formula of the same structure.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#equals(java.lang.Object)">equals(Object)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#equalWithFPSemantics(TFormulaInfo,TFormulaInfo)">equalWithFPSemantics(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence(ArrayFormula&lt;TI, TE&gt;, ArrayFormula&lt;TI, TE&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Make a <a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence(ArrayFormula&lt;TI, TE&gt;, ArrayFormula&lt;TI, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence(ArrayFormula&lt;TI, TE&gt;, ArrayFormula&lt;TI, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence(EnumerationFormula, EnumerationFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></dt>
+<dd>
+<div class="block">Make a <a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="org/sosy_lab/java_smt/api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence(EnumerationFormula, EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence(EnumerationFormula, EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence(EnumerationFormula, EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence(EnumerationFormula, EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#equivalence(TFormulaInfo,TFormulaInfo)">equivalence(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#equivalence(TFormulaInfo,TFormulaInfo)">equivalence(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#equivalenceImpl(TFormulaInfo,TFormulaInfo)">equivalenceImpl(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#escape(java.lang.String)">escape(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#escape(java.lang.String)">escape(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#escape(java.lang.String)">escape(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#eval(T)">eval(T)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#eval(T)">eval(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#eval(T)">eval(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#eval(T)">eval(T)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evalImpl(TFormulaInfo)">evalImpl(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>
+<div class="block">Simplify the given formula and replace all symbols with their model values.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate(BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for bitvector formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for boolean formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate(EnumerationFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for enumeration formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate(EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate(EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate(EnumerationFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for floating-point formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate(Formula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Evaluate a given formula substituting the values from the model.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate(Formula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate(NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for integer formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate(NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate(NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate(NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate(NumeralFormula.RationalFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for rational formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate(NumeralFormula.RationalFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate(NumeralFormula.RationalFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate(NumeralFormula.RationalFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate(StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></dt>
+<dd>
+<div class="block">Type-safe evaluation for string formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#evaluateImpl(TFormulaInfo)">evaluateImpl(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>
+<div class="block">Simplify the given formula and replace all symbols with their model values.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)">evaluateInModel(BooleanFormula, Formula, Collection&lt;Object&gt;, Collection&lt;Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Evaluator</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This class provides methods to get concrete evaluations for formulas from the satisfiable solver
+ environment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">exists(List&lt;? extends Formula&gt;, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">exists(Formula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>
+<div class="block">Syntax sugar, see <a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.exists(List, BooleanFormula)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html#EXISTS">EXISTS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">ExpectedFormulaVisitor</span></a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="type parameter in ExpectedFormulaVisitor">R</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Like <a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>DefaultFormulaVisitor</code></a>, but throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>UnsupportedOperationException</code></a> on
+ unexpected formula types.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html#%3Cinit%3E()">ExpectedFormulaVisitor()</a></span> - Constructor for class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend(BitvectorFormula, int, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Extend a bitvector to the left (add most significant bits).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend(BitvectorFormula, int, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend(BitvectorFormula, int, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#extend(TFormulaInfo,int,boolean)">extend(TFormulaInfo, int, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract(BitvectorFormula, int, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Extract a range of bits from a bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract(BitvectorFormula, int, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract(BitvectorFormula, int, int)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#extract(TFormulaInfo,int,int)">extract(TFormulaInfo, int, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractInfo(java.util.List)">extractInfo(List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#extractInfo(org.sosy_lab.java_smt.api.Formula)">extractInfo(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractInfo(org.sosy_lab.java_smt.api.Formula)">extractInfo(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables(Formula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Extract names of all free variables in a formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables(Formula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs(Formula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs(Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs(Formula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)">extractVariablesAndUFs(Formula, boolean, BiConsumer&lt;String, Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Extract all free variables from the formula, optionally including UFs.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractVariablesAndUFs(TFormulaInfo,boolean)">extractVariablesAndUFs(TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Wrapper for <a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>FormulaCreator.extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractVariablesAndUFs(TFormulaInfo,boolean,java.util.function.BiConsumer)">extractVariablesAndUFs(TFormulaInfo, boolean, BiConsumer&lt;String, TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Wrapper for <a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>FormulaCreator.extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</dd>
+</dl>
+<a id="I:F">
+<!--   -->
+</a>
+<h2 class="title">F</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#factory">factory</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#fixedCount">fixedCount</a></span> - Variable in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#fixedVariables">fixedVariables</a></span> - Variable in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Formula of the floating point sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Floating point operations.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointNumber</span></a> - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Represents a floating-point number with customizable precision, consisting of sign, exponent, and
+ mantissa components.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#%3Cinit%3E()">FloatingPointNumber()</a></span> - Constructor for class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingMode</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Possible floating point rounding modes.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingModeFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Formula representing a rounding mode for floating-point operations.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#floatValue()">floatValue()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">compute a representation as Java-based float value, if possible.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#floor(ParamFormulaType)">floor(ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#floor(ParamFormulaType)">floor(ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#floor(ParamFormulaType)">floor(ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#floor(TFormulaInfo)">floor(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FLOOR">FLOOR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Floor operation, converts from rationals to integers, also known as <code>to_int</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#fmgr">fmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">forall(List&lt;? extends Formula&gt;, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">forall(Formula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>
+<div class="block">Syntax sugar, see <a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.forall(List, BooleanFormula)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html#FORALL">FORALL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Formula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">An arbitrary SMT formula.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">FormulaClassifier</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This program parses user-given formulas and prints out the (minimal) matching theory for them.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">FormulaClassifier(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FormulaCreator</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">This is a helper class with several methods that are commonly used throughout the basicimpl
+ package and may have solver-specific implementations.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#%3Cinit%3E(TEnv,TType,TType,TType,TType,TType)">FormulaCreator(TEnv, TType, TType, TType, TType, TType)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">FormulaManager class contains all operations which can be performed on formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html#formulaToDot(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">formulaToDot(Formula, PrettyPrinter.PrinterOption...)</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></dt>
+<dd>
+<div class="block">This method returns a Graphviz/Dot representation of the given formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html#formulaToString(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">formulaToString(Formula, PrettyPrinter.PrinterOption...)</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></dt>
+<dd>
+<div class="block">This method returns a multi-line String with pretty-formatted and indented subformulas.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaTransformationVisitor</span></a> - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Abstract class for formula transformation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">FormulaTransformationVisitor(FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType</span></a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Type of a formula.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.ArrayFormulaType</span></a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.BitvectorType</span></a> - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.EnumerationFormulaType</span></a> - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.FloatingPointType</span></a> - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.NumeralType</span></a>&lt;<a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt; - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaVisitor</span></a>&lt;<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Visitor iterating through entire formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ABS">FP_ABS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Absolute value of a floating point.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ADD">FP_ADD</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Addition over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_AS_IEEEBV">FP_AS_IEEEBV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_CASTTO_FP">FP_CASTTO_FP</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_CASTTO_SBV">FP_CASTTO_SBV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_CASTTO_UBV">FP_CASTTO_UBV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_DIV">FP_DIV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Division over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_EQ">FP_EQ</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Equal over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_FROM_IEEEBV">FP_FROM_IEEEBV</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_GE">FP_GE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Greater-than-or-equal over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_GT">FP_GT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Greater-than over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_INF">FP_IS_INF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_NAN">FP_IS_NAN</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Further FP queries.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_NEGATIVE">FP_IS_NEGATIVE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_NORMAL">FP_IS_NORMAL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_SUBNORMAL">FP_IS_SUBNORMAL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_IS_ZERO">FP_IS_ZERO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_LE">FP_LE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Less-than-or-equal over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_LT">FP_LT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Less-than over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_MAX">FP_MAX</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Maximum of two floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_MIN">FP_MIN</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Minimum of two floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_MUL">FP_MUL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Multiplication over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_NEG">FP_NEG</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Negation of a floating point.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_REM">FP_REM</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Remainder of the floating point division.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_AWAY">FP_ROUND_AWAY</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_EVEN">FP_ROUND_EVEN</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_NEGATIVE">FP_ROUND_NEGATIVE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_POSITIVE">FP_ROUND_POSITIVE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_TO_INTEGRAL">FP_ROUND_TO_INTEGRAL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_ROUND_ZERO">FP_ROUND_ZERO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Rounding over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_SQRT">FP_SQRT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Square root of a floating point.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#FP_SUB">FP_SUB</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Subtraction over floating points.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#fpmgr">fpmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#fromIeeeBitvectorImpl(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvectorImpl(TFormulaInfo, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#fromString(java.lang.String)">fromString(String)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>
+<div class="block">Parse a string and return the corresponding type.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclaration</span></a>&lt;<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="type parameter in FunctionDeclaration">E</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Function declaration, for both UFs and built-in functions (theory and boolean).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FunctionDeclarationImpl</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">F</a> extends <a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">T</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">Declaration of a function.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html#%3Cinit%3E()">FunctionDeclarationImpl()</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclarationKind</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Types of function declarations.</div>
+</dd>
+</dl>
+<a id="I:G">
+<!--   -->
+</a>
+<h2 class="title">G</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#GENERATE_ALL_SAT">GENERATE_ALL_SAT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Whether the solver should allow to query all satisfying assignments for satisfiable formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#GENERATE_MODELS">GENERATE_MODELS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Whether the solver should generate models (i.e., satisfying assignments) for satisfiable
+ formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE">GENERATE_UNSAT_CORE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS">GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas <b>only</b> over
+ the assumptions explicitly passed to the solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#generateContext()">generateContext()</a></span> - Method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">Create new context with solver chosen according to the supplied configuration.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#generateContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">generateContext(SolverContextFactory.Solvers)</a></span> - Method in class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">Create new context with solver name supplied.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#generateUnsatCores">generateUnsatCores</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html#getAllSolvers()">getAllSolvers()</a></span> - Static method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getArgInterpretation(int)">getArgInterpretation(int)</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getArgumentsInterpretation()">getArgumentsInterpretation()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">Interpretation assigned for function arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html#getArgumentTypes()">getArgumentTypes()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getArity()">getArity()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getArrayFormulaElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getArrayFormulaElementType(ArrayFormula&lt;TI, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getArrayFormulaIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getArrayFormulaIndexType(ArrayFormula&lt;TI, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getArrayFormulaManager()">getArrayFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Array-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getArrayFormulaManager()">getArrayFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getArrayFormulaManager()">getArrayFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType(FormulaType&lt;TD&gt;, FormulaType&lt;TR&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getArrayType(TType,TType)">getArrayType(TType, TType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#getAssertedConstraintIds()">getAssertedConstraintIds()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#getAssertedFormulas()">getAssertedFormulas()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getAssignmentAsFormula()">getAssignmentAsFormula()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">The formula AST representing the equality of key and value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#getBackend()">getBackend()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getBitvectorFormulaManager()">getBitvectorFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Bitvector-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getBitvectorFormulaManager()">getBitvectorFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getBitvectorFormulaManager()">getBitvectorFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getBitvectorType(int)">getBitvectorType(int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize(int)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getBooleanFormulaManager()">getBooleanFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Boolean-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getBooleanFormulaManager()">getBooleanFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getBooleanFormulaManager()">getBooleanFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getBooleanVarDeclaration(org.sosy_lab.java_smt.api.BooleanFormula)">getBooleanVarDeclaration(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getBooleanVarDeclarationImpl(TFormulaInfo)">getBooleanVarDeclarationImpl(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getBoolType()">getBoolType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#getBvRepresentation(java.math.BigInteger,int)">getBvRepresentation(BigInteger, int)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#getCardinality()">getCardinality()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html#getConstraints()">getConstraints()</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#getDefaultRoundingMode()">getDefaultRoundingMode()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType()</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#getElements()">getElements()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#getElementType()">getElementType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType(ArrayFormula&lt;?, TE&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType(ArrayFormula&lt;?, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType(ArrayFormula&lt;?, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getEnumerationFormulaManager()">getEnumerationFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getEnumerationFormulaManager()">getEnumerationFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getEnumerationFormulaManager()">getEnumerationFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html#getEnumerationFormulaType()">getEnumerationFormulaType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType(String, Set&lt;String&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getEnv()">getEnv()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getEnvironment()">getEnvironment()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#getEvaluator()">getEvaluator()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get a temporary view on the current satisfying assignment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html#getEvaluatorWithoutChecks()">getEvaluatorWithoutChecks()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></dt>
+<dd>
+<div class="block">Get an evaluator instance for model evaluation without executing checks for prover options.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#getExponent()">getExponent()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">The exponent of the floating-point number, given as numeric value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#getExponentSize()">getExponentSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#getExponentSize()">getExponentSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html#getFeatures()">getFeatures()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getFloatingPointFormulaManager()">getFloatingPointFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Floating-Point-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getFloatingPointFormulaManager()">getFloatingPointFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getFloatingPointFormulaManager()">getFloatingPointFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType(int, int)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getFloatingPointType(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">getFloatingPointType(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html#getFormula()">getFormula()</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getFormulaCreator()">getFormulaCreator()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#getFormulaManager()">getFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html#getFormulaType()">getFormulaType()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#getFormulaType()">getFormulaType()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html#getFormulaType()">getFormulaType()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#getFormulaType()">getFormulaType()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getFormulaType(T)">getFormulaType(T)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the type of the given Formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getFormulaType(T)">getFormulaType(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getFormulaType(T)">getFormulaType(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">Returns the type of the given Formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getFormulaType(T)">getFormulaType(T)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getFormulaType(TFormulaInfo)">getFormulaType(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html#getGlobalFunctionsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getGlobalFunctionsForSolver(SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html#getGlobalTermsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getGlobalTermsForSolver(SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#getIndexType()">getIndexType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType(ArrayFormula&lt;TI, ?&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType(ArrayFormula&lt;TI, ?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType(ArrayFormula&lt;TI, ?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getIntegerFormulaManager()">getIntegerFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Integer-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getIntegerFormulaManager()">getIntegerFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getIntegerFormulaManager()">getIntegerFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getIntegerType()">getIntegerType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">getInterpolant(Collection&lt;T&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">Get an interpolant for two groups of formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#getInterpolant(java.util.Collection)">getInterpolant(Collection&lt;T&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">getInterpolant(Collection&lt;T&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getKey()">getKey()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">The formula AST which is assigned a given value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html#getKind()">getKind()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength(BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#getMantissa()">getMantissa()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">The mantissa (aka significand) of the floating-point number, given as numeric value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#getMantissaSize()">getMantissaSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#getMantissaSize()">getMantissaSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#getMaxTime()">getMaxTime()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>
+<div class="block">Return the maximal time of all intervals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getMaxTimeOfAllSatQueries()">getMaxTimeOfAllSatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getMaxTimeOfInterpolationQueries()">getMaxTimeOfInterpolationQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getMaxTimeOfIsUnsatQueries()">getMaxTimeOfIsUnsatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#getModel()">getModel()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get a satisfying assignment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#getModel()">getModel()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>
+<div class="block">Get a satisfying assignment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#getModel()">getModel()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get a list of satisfying assignments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#getModelAssignments()">getModelAssignments()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#getName()">getName()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html#getName()">getName()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getName()">getName()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">Variable name for variables, function name for UFs, and array name for arrays.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html#getName()">getName()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#getNewTimer()">getNewTimer()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfAddConstraintQueries()">getNumberOfAddConstraintQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfAllSatQueries()">getNumberOfAllSatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfArrayOperations()">getNumberOfArrayOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfBooleanOperations()">getNumberOfBooleanOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfBVOperations()">getNumberOfBVOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfFPOperations()">getNumberOfFPOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfInterpolationQueries()">getNumberOfInterpolationQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#getNumberOfIntervals()">getNumberOfIntervals()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>
+<div class="block">Return the number of intervals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfIsUnsatQueries()">getNumberOfIsUnsatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfModelEvaluationQueries()">getNumberOfModelEvaluationQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfModelListings()">getNumberOfModelListings()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfModelQueries()">getNumberOfModelQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfNumericOperations()">getNumberOfNumericOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfPopQueries()">getNumberOfPopQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfProverEnvironments()">getNumberOfProverEnvironments()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfPushQueries()">getNumberOfPushQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfQuantifierOperations()">getNumberOfQuantifierOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfSLOperations()">getNumberOfSLOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfStringOperations()">getNumberOfStringOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfUFOperations()">getNumberOfUFOperations()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfUnsatCoreQueries()">getNumberOfUnsatCoreQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getNumberOfVisits()">getNumberOfVisits()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#getNumOfSolutions()">getNumOfSolutions()</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getQuantifiedFormulaManager()">getQuantifiedFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the interface for handling quantifiers.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getQuantifiedFormulaManager()">getQuantifiedFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getQuantifiedFormulaManager()">getQuantifiedFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getRationalFormulaManager()">getRationalFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Rational-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getRationalFormulaManager()">getRationalFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getRationalFormulaManager()">getRationalFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getRationalType()">getRationalType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getRegexType()">getRegexType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html#getResult()">getResult()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a></dt>
+<dd>
+<div class="block">Returning the result generated after all the <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html#apply(java.util.List)"><code>BasicProverEnvironment.AllSatCallback.apply(java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> calls went through.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#getRoundingModeImpl(org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">getRoundingModeImpl(FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">getSeqInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">This method returns interpolants of an 'inductive sequence'.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#getSeqInterpolants(java.util.List)">getSeqInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">getSeqInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getSeqInterpolants0(java.util.List)">getSeqInterpolants0(List&lt;T&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)"><code>InterpolatingProverEnvironment.getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#getSign()">getSign()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">Whether the number is positive (TRUE) or negative (FALSE).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType()</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#getSize()">getSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getSLFormulaManager()">getSLFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getSLFormulaManager()">getSLFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getSLFormulaManager()">getSLFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html#getSolverDeclaration()">getSolverDeclaration()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></dt>
+<dd>
+<div class="block">get a reference to the internal declaration used by the SMT solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html#getSolverInformation(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getSolverInformation(SolverContextFactory.Solvers)</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></dt>
+<dd>
+<div class="block">Checks for solver-name, version, theories and features.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#getSolverName()">getSolverName()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#getSolverName()">getSolverName()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#getSolverName()">getSolverName()</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#getSolverName()">getSolverName()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#getSolverName()">getSolverName()</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#getSolverStatistics()">getSolverStatistics()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>
+<div class="block">export statistics about the solver interaction.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#getStatistics()">getStatistics()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get statistics for a concrete ProverEnvironment in a solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#getStatistics()">getStatistics()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Get statistics for a complete solver context.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#getStatistics()">getStatistics()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#getStatistics()">getStatistics()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#getStatistics()">getStatistics()</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#getStatistics()">getStatistics()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#getStatistics()">getStatistics()</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getStringFormulaManager()">getStringFormulaManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the String Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getStringFormulaManager()">getStringFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getStringFormulaManager()">getStringFormulaManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#getStringType()">getStringType()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html#getSubstitution()">getSubstitution()</a></span> - Method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#getSumTime()">getSumTime()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getSumTimeOfAllSatQueries()">getSumTimeOfAllSatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getSumTimeOfInterpolationQueries()">getSumTimeOfInterpolationQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html#getSumTimeOfIsUnsatQueries()">getSumTimeOfIsUnsatQueries()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html#getTheories()">getTheories()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#getTotalSize()">getTotalSize()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>
+<div class="block">Return the total size of a value of this type in bits.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;, int[])</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">Compute a sequence of interpolants.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;, int[])</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants(List&lt;? extends Collection&lt;T&gt;&gt;, int[])</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getTreeInterpolants0(java.util.List,int%5B%5D)">getTreeInterpolants0(List&lt;T&gt;, int[])</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></dt>
+<dd>
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)"><code>InterpolatingProverEnvironment.getTreeInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;, int[])</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html#getType()">getType()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#getType()">getType()</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#getUFManager()">getUFManager()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#getUFManager()">getUFManager()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#getUFManager()">getUFManager()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get an unsat core.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#getUnsatCore()">getUnsatCore()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getValue()">getValue()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">Value: see the <a href="org/sosy_lab/java_smt/api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(org.sosy_lab.java_smt.api.Formula)</code></a> methods for the possible types.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#getValueAsFormula()">getValueAsFormula()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>
+<div class="block">The formula AST which is assigned to a given key.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#getVersion()">getVersion()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Get version information out of the solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#getVersion()">getVersion()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#getVersion()">getVersion()</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#getVersion()">getVersion()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#getVersion()">getVersion()</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html#getVersion()">getVersion()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Compare the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#greaterOrEquals(TFormulaInfo,TFormulaInfo,boolean)">greaterOrEquals(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Compare the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#greaterThan(TFormulaInfo,TFormulaInfo,boolean)">greaterThan(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#GT">GT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Greater-than over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#GTE">GTE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Greater-than-or-equal over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#GTE_ZERO">GTE_ZERO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unary comparison with zero.</div>
+</dd>
+</dl>
+<a id="I:H">
+<!--   -->
+</a>
+<h2 class="title">H</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html#hasConstants(java.lang.String)">hasConstants(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Formula.html#hashCode()">hashCode()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></dt>
+<dd>
+<div class="block">returns a valid hashCode satisfying the constraints given by <a href="org/sosy_lab/java_smt/api/Formula.html#equals(java.lang.Object)"><code>Formula.equals(java.lang.Object)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#hashCode()">hashCode()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#hashCode()">hashCode()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#hashCode()">hashCode()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#hashCode()">hashCode()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#hashCode()">hashCode()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/HoudiniApp.html#houdini(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">houdini(List&lt;BooleanFormula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></dt>
+<dd>
+<div class="block">execute the Houdini algorithm to get the maximal inductive subset L_I for the given lemmas and
+ the transition.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">HoudiniApp</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This application executes the inductive-invariant synthesis algorithm called "Houdini" taken from
+ the paper Flanagan and Leino: "Houdini, an Annotation Assistant for ESC/Java".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/HoudiniApp.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">HoudiniApp(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:I">
+<!--   -->
+</a>
+<h2 class="title">I</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#IFF">IFF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">If and only if.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse(BooleanFormula, T, T)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing <code>IF cond THEN f1 ELSE f2</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse(BooleanFormula, T, T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing "IF cond THEN f1 ELSE f2".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse(BooleanFormula, T, T)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#ifThenElse(TFormulaInfo,TFormulaInfo,TFormulaInfo)">ifThenElse(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#imgr">imgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#implication(TFormulaInfo,TFormulaInfo)">implication(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#implies(org.sosy_lab.java_smt.api.BooleanFormula)">implies(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Check that the subject implies a given formula, i.e.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#IMPLIES">IMPLIES</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Implication between two boolean formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in(StringFormula, RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in(StringFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in(StringFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#in(TFormulaInfo,TFormulaInfo)">in(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#indexOf(TFormulaInfo,TFormulaInfo,TFormulaInfo)">indexOf(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend(PropagatorBackend)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This method is invoked after the user propagator is registered via <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend(PropagatorBackend)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend(PropagatorBackend)</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#initSolver()">initSolver()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#INT_TO_STR">INT_TO_STR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">IntegerBasedBinoxxoSolver(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">IntegerBasedSudokuSolver(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">IntegerFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Interface which operates over <a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.IntegerFormula</code></a>s.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#IntegerType">IntegerType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#internalMakeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">internalMakeArray(String, FormulaType&lt;TI&gt;, FormulaType&lt;TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#internalMakeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">internalMakeArray(FormulaType&lt;TI&gt;, FormulaType&lt;TE&gt;, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">InterpolatingProverEnvironment</span></a>&lt;<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This class provides an interface to an incremental SMT solver with methods for pushing and
+ popping formulas as well as SAT checks.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">InterpolatingProverWithAssumptionsWrapper</span></a>&lt;<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt; - Class in <a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.api.FormulaManager)">InterpolatingProverWithAssumptionsWrapper(InterpolatingProverEnvironment&lt;T&gt;, FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Interpolation.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Interpolation</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">Examples for Craig/sequential/tree interpolation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection(RegexFormula, RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#intersection(TFormulaInfo,TFormulaInfo)">intersection(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#isArrayType()">isArrayType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isArrayType()">isArrayType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isAssertToken(java.lang.String)">isAssertToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is an <code>(assert ...)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#isBitvectorType()">isBitvectorType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isBitvectorType()">isBitvectorType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isBooleanType()">isBooleanType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html#isClosed()">isClosed()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#isCompatible(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">isCompatible(FormulaType&lt;?&gt;, FormulaType&lt;?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>
+<div class="block">This function checks whether the used type of the function argument is compatible with the
+ declared type in the function declaration.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isDeclarationToken(java.lang.String)">isDeclarationToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is a function or variable declaration.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isDefinitionToken(java.lang.String)">isDefinitionToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is a function definition.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#isEnumerationType()">isEnumerationType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isEnumerationType()">isEnumerationType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#isEquisatisfiableTo(org.sosy_lab.java_smt.api.BooleanFormula)">isEquisatisfiableTo(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#isEquivalentTo(org.sosy_lab.java_smt.api.BooleanFormula)">isEquivalentTo(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Check that the subject is equivalent to a given formula, i.e.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isExitToken(java.lang.String)">isExitToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is <code>(exit)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Check, if the formula is the formula "FALSE".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#isFalse(TFormulaInfo)">isFalse(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#isFloatingPointType()">isFloatingPointType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isFloatingPointType()">isFloatingPointType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isForbiddenToken(java.lang.String)">isForbiddenToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if this is a forbidden token.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#isFunction()">isFunction()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isInfinity(TFormulaInfo)">isInfinity(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isIntegerType()">isIntegerType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNaN(TFormulaInfo)">isNaN(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNegative(TFormulaInfo)">isNegative(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNegativeZero(java.lang.Double)">isNegativeZero(Double)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isNormal(TFormulaInfo)">isNormal(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#isNumeral(TFormulaInfo)">isNumeral(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>
+<div class="block">Check whether the argument is a numeric constant (including negated constants).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isNumeralType()">isNumeralType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html#isNumeralType()">isNumeralType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isPopToken(java.lang.String)">isPopToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is an <code>(pop ...)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isPushToken(java.lang.String)">isPushToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is an <code>(push ...)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isRationalType()">isRationalType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isRegexType()">isRegexType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isResetAssertionsToken(java.lang.String)">isResetAssertionsToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is an <code>(reset-assertions ...)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isResetToken(java.lang.String)">isResetToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is an <code>(reset)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#isSatisfiable()">isSatisfiable()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Check that the subject is satisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html#isSatisfiable()">isSatisfiable()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></dt>
+<dd>
+<div class="block">Check that the subject stack is satisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#isSetLogicToken(java.lang.String)">isSetLogicToken(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Check if the token is <code>(set-logic ..)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isSLType()">isSLType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#isStringType()">isStringType()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isSubnormal(TFormulaInfo)">isSubnormal(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#isTautological()">isTautological()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Check that the subject is tautological, i.e., always holds.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Check, if the formula is the formula "TRUE".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#isTrue(TFormulaInfo)">isTrue(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#isUnsat()">isUnsat()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#isUnsat()">isUnsat()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html#isUnsatisfiable()">isUnsatisfiable()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></dt>
+<dd>
+<div class="block">Check that the subject is unsatisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html#isUnsatisfiable()">isUnsatisfiable()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></dt>
+<dd>
+<div class="block">Check that the subject stack is unsatisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions(Collection&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#isValidName(java.lang.String)">isValidName(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#isValidName(java.lang.String)">isValidName(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#isValidName(java.lang.String)">isValidName(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#isZero(TFormulaInfo)">isZero(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#ITE">ITE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">If-then-else operator.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.html#iterator()">iterator()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></dt>
+<dd>
+<div class="block">Iterate over all values present in the model.</div>
+</dd>
+</dl>
+<a id="I:L">
+<!--   -->
+</a>
+<h2 class="title">L</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#largerStackUsageTest()">largerStackUsageTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#largeStackUsageTest()">largeStackUsageTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#length(org.sosy_lab.java_smt.api.StringFormula)">length(StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#length(org.sosy_lab.java_smt.api.StringFormula)">length(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#length(org.sosy_lab.java_smt.api.StringFormula)">length(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#length(TFormulaInfo)">length(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Compare the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#lessOrEquals(TFormulaInfo,TFormulaInfo,boolean)">lessOrEquals(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Compare the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#lessThan(TFormulaInfo,TFormulaInfo)">lessThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#lessThan(TFormulaInfo,TFormulaInfo)">lessThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#lessThan(TFormulaInfo,TFormulaInfo)">lessThan(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#lessThan(TFormulaInfo,TFormulaInfo,boolean)">lessThan(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#loadLibrariesWithFallback(java.util.function.Consumer,java.util.List,java.util.List)">loadLibrariesWithFallback(Consumer&lt;String&gt;, List&lt;String&gt;, List&lt;String&gt;)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>
+<div class="block">This method loads the given libraries.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#logger">logger</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging"><span class="typeNameLink">LoggingSolverContext</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/logging/package-summary.html">org.sosy_lab.java_smt.delegate.logging</a></dt>
+<dd>
+<div class="block"><a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> that wraps all prover environments in their logging versions.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#%3Cinit%3E(org.sosy_lab.common.log.LogManager,org.sosy_lab.java_smt.api.SolverContext)">LoggingSolverContext(LogManager, SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#logicToUse()">logicToUse()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">This method is only called, if OpenSMT is called.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#lower(int,org.sosy_lab.common.rationals.Rational)">lower(int, Rational)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#lower(int,org.sosy_lab.common.rationals.Rational)">lower(int, Rational)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#LT">LT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Less-than over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#LTE">LTE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Less-than-or-equal over integers and rationals.</div>
+</dd>
+</dl>
+<a id="I:M">
+<!--   -->
+</a>
+<h2 class="title">M</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/AllSatExample.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example">AllSatExample</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Binoxxo.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/HoudiniApp.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Interpolation.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Interpolation.html" title="class in org.sosy_lab.java_smt.example">Interpolation</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueens</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/NQueens.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/NQueens.html" title="class in org.sosy_lab.java_smt.example">NQueens</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example">OptimizationFormulaWeights</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example">OptimizationIntReal</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/PrettyPrinter.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example">PrettyPrinter</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html#main(java.lang.String%5B%5D)">main(String[])</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example">SimpleUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html#main(java.lang.String%5B%5D)">main(String[])</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.html#main(java.lang.String...)">main(String...)</a></span> - Static method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Create a function application to the given list of arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication(FunctionDeclaration&lt;T&gt;, List&lt;? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Create a function application to the given list of arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication(FunctionDeclaration&lt;T&gt;, Formula...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#makeArray(FTI,FTE,TE)">makeArray(FTI, FTE, TE)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#makeArray(FTI,FTE,TE)">makeArray(FTI, FTE, TE)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#makeArray(FTI,FTE,TE)">makeArray(FTI, FTE, TE)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">makeArray(String, FTI, FTE)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Declare a new array with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">makeArray(String, FTI, FTE)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">makeArray(String, FTI, FTE)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray(String, FormulaType.ArrayFormulaType&lt;TI, TE&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Declare a new array with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray(String, FormulaType.ArrayFormulaType&lt;TI, TE&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)">makeArray(FormulaType.ArrayFormulaType&lt;TI, TE&gt;, TE)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#makeBitvector(int,long)">makeBitvector(int, long)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Convert a number into a bitvector with given size.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvector(int,long)">makeBitvector(int, long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#makeBitvector(int,long)">makeBitvector(int, long)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">makeBitvector(int, BigInteger)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Convert a number into a bitvector with given size.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">makeBitvector(int, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">makeBitvector(int, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector(int, NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector(int, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector(int, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvectorImpl(int,long)">makeBitvectorImpl(int, long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvectorImpl(int,java.math.BigInteger)">makeBitvectorImpl(int, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeBitvectorImpl(int,TFormulaInfo)">makeBitvectorImpl(int, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#makeBoolean(boolean)">makeBoolean(boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Returns a <a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> representing the given value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#makeBooleanImpl(boolean)">makeBooleanImpl(boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant(String, FormulaType.EnumerationFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#makeConstantImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstantImpl(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html#makeEmptyHeap(AT,VT)">makeEmptyHeap(AT, VT)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeEmptyHeap(AT,VT)">makeEmptyHeap(AT, VT)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#makeEmptyHeap(AT,VT)">makeEmptyHeap(AT, VT)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeEmptyHeap(TType,TType)">makeEmptyHeap(TType, TType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#makeFalse()">makeFalse()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#makeFalse()">makeFalse()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#makeFalse()">makeFalse()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeMagicWand(TFormulaInfo,TFormulaInfo)">makeMagicWand(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity(FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeMinusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinityImpl(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN(FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNaNImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaNImpl(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html#makeNilElement(AT)">makeNilElement(AT)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeNilElement(AT)">makeNilElement(AT)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#makeNilElement(AT)">makeNilElement(AT)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeNilElement(TType)">makeNilElement(TType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(double)">makeNumber(double)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">Create a numeric literal with a given value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(double)">makeNumber(double)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(double)">makeNumber(double)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(double, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(double, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(double, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(long)">makeNumber(long)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(long)">makeNumber(long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(long)">makeNumber(long)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(String, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(String, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(String, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber(BigDecimal)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">Create a numeric literal with a given value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber(BigDecimal)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber(BigDecimal)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigDecimal, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigDecimal, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigDecimal, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber(BigInteger)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber(BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber(BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber(Rational)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber(Rational)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber(Rational)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(Rational, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(Rational, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber(Rational, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumberAndRound(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberAndRound(String, FormulaType.FloatingPointType, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(double)">makeNumberImpl(double)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumberImpl(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl(double, FormulaType.FloatingPointType, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(long)">makeNumberImpl(long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(java.lang.String)">makeNumberImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumberImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl(String, FormulaType.FloatingPointType, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">directly catch the most common special String constants.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(java.math.BigDecimal)">makeNumberImpl(BigDecimal)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumberImpl(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl(BigDecimal, FormulaType.FloatingPointType, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(java.math.BigInteger)">makeNumberImpl(BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeNumberImpl(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumberImpl(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeNumberImpl(org.sosy_lab.common.rationals.Rational)">makeNumberImpl(Rational)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity(FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makePlusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinityImpl(FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html#makePointsTo(AF,VF)">makePointsTo(AF, VF)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#makePointsTo(AF,VF)">makePointsTo(AF, VF)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">makePointsTo(Formula, Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makePointsTo(TFormulaInfo,TFormulaInfo)">makePointsTo(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#makeRegex(java.lang.String)">makeRegex(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Returns a <a href="org/sosy_lab/java_smt/api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeRegex(java.lang.String)">makeRegex(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#makeRegex(java.lang.String)">makeRegex(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeRegexImpl(java.lang.String)">makeRegexImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html#makeStar(TFormulaInfo,TFormulaInfo)">makeStar(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#makeString(java.lang.String)">makeString(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Returns a <a href="org/sosy_lab/java_smt/api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeString(java.lang.String)">makeString(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#makeString(java.lang.String)">makeString(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeStringImpl(java.lang.String)">makeStringImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#makeTrue()">makeTrue()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#makeTrue()">makeTrue()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#makeTrue()">makeTrue()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)">makeVariable(int, String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable with exactly the given name and bitwidth.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeVariable(int,java.lang.String)">makeVariable(int, String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#makeVariable(int,java.lang.String)">makeVariable(int, String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable of type String with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#makeVariable(java.lang.String)">makeVariable(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable(String, FormulaType.EnumerationFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable(String, FormulaType.FloatingPointType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a variable with exactly the given name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable(String, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable(String, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable(FormulaType.BitvectorType, String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable(FormulaType.BitvectorType, String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable(FormulaType.BitvectorType, String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable(FormulaType&lt;T&gt;, String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable(FormulaType&lt;T&gt;, String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable(FormulaType&lt;T&gt;, String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#makeVariable(TType,java.lang.String)">makeVariable(TType, String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#makeVariableImpl(int,java.lang.String)">makeVariableImpl(int, String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#makeVariableImpl(java.lang.String)">makeVariableImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#makeVariableImpl(java.lang.String)">makeVariableImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#makeVariableImpl(java.lang.String)">makeVariableImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html#makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariableImpl(String, FormulaType.EnumerationFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariableImpl(String, FormulaType.FloatingPointType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#MATHSAT5">MATHSAT5</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#max(TFormulaInfo,TFormulaInfo)">max(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#maximize(org.sosy_lab.java_smt.api.Formula)">maximize(Formula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>
+<div class="block">Add the maximization <code>objective</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#maximize(org.sosy_lab.java_smt.api.Formula)">maximize(Formula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#mgr">mgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#min(TFormulaInfo,TFormulaInfo)">min(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#minimize(org.sosy_lab.java_smt.api.Formula)">minimize(Formula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>
+<div class="block">Add minimization <code>objective</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#minimize(org.sosy_lab.java_smt.api.Formula)">minimize(Formula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier(QuantifiedFormulaManager.Quantifier, List&lt;? extends Formula&gt;, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier(QuantifiedFormulaManager.Quantifier, List&lt;? extends Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier(QuantifiedFormulaManager.Quantifier, List&lt;? extends Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,TFormulaInfo)">mkQuantifier(QuantifiedFormulaManager.Quantifier, List&lt;TFormulaInfo&gt;, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This class provides a model with concrete evaluations for symbols and formulas from the
+ satisfiable solver environment.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model.ValueAssignment</span></a> - Class in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#modelForSatFormula()">modelForSatFormula()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#modelForSatFormulaWithLargeValue()">modelForSatFormulaWithLargeValue()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#modelForSatFormulaWithUF()">modelForSatFormulaWithUF()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#modelForUnsatFormula()">modelForUnsatFormula()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#modelForUnsatFormula2()">modelForUnsatFormula2()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#modelSet">modelSet</a></span> - Variable in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, long)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></dt>
+<dd>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, long)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, BigInteger)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></dt>
+<dd>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modularCongruence(ParamFormulaType,ParamFormulaType,long)">modularCongruence(ParamFormulaType, ParamFormulaType, long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modularCongruence(ParamFormulaType,ParamFormulaType,java.math.BigInteger)">modularCongruence(ParamFormulaType, ParamFormulaType, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modularCongruence(TFormulaInfo,TFormulaInfo,long)">modularCongruence(TFormulaInfo, TFormulaInfo, long)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modularCongruence(TFormulaInfo,TFormulaInfo,java.math.BigInteger)">modularCongruence(TFormulaInfo, TFormulaInfo, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">modulo(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="deprecationBlock"><span class="deprecatedLabel">Deprecated, for removal: This API element is subject to removal in a future version.</span></div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">modulo(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></dt>
+<dd>
+<div class="block">Create a formula representing the modulo of two operands according to Boute's Euclidean
+ definition.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">modulo(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modulo(ParamFormulaType,ParamFormulaType)">modulo(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#modulo(TFormulaInfo,TFormulaInfo)">modulo(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>
+<div class="block">If a solver does not support this operation, e.g.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#MODULO">MODULO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Modulo operator over integers.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#MUL">MUL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Multiplication over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#multiCloseTest()">multiCloseTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the multiplication of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#multiply(TFormulaInfo,TFormulaInfo)">multiply(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#multiply(TFormulaInfo,TFormulaInfo)">multiply(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>
+<div class="block">If a solver does not support this operation, e.g.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#multiply(TFormulaInfo,TFormulaInfo,TFormulaInfo)">multiply(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#multiStackTest()">multiStackTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:N">
+<!--   -->
+</a>
+<h2 class="title">N</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#NEAREST_TIES_AWAY">NEAREST_TIES_AWAY</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#NEAREST_TIES_TO_EVEN">NEAREST_TIES_TO_EVEN</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate(BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#negate(ParamFormulaType)">negate(ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#negate(ParamFormulaType)">negate(ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#negate(ParamFormulaType)">negate(ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#negate(TFormulaInfo)">negate(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#negate(TFormulaInfo)">negate(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#negate(TFormulaInfo)">negate(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#newEnvironmentForTest(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newEnvironmentForTest(SolverContext, SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Create a fresh new <a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newOptimizationProverEnvironment0(java.util.Set)">newOptimizationProverEnvironment0(Set&lt;SolverContext.ProverOptions&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Create a fresh new <a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newProverEnvironment0(java.util.Set)">newProverEnvironment0(Set&lt;SolverContext.ProverOptions&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dt>
+<dd>
+<div class="block">Create a fresh new <a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#newProverEnvironmentWithInterpolation0(java.util.Set)">newProverEnvironmentWithInterpolation0(Set&lt;SolverContext.ProverOptions&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#NNF">NNF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Convert the formula to NNF (negated normal form).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics"><span class="typeNameLink">NNFVisitor</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html">org.sosy_lab.java_smt.basicimpl.tactics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">NNFVisitor(FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></span> - Static variable in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#none()">none()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#none()">none()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#none()">none()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#noneImpl()">noneImpl()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not(BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not(BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">not(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing a negation of the argument.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">not(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">not(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#not(TFormulaInfo)">not(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#not(TFormulaInfo)">not(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#NOT">NOT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#notifyOnDecision()">notifyOnDecision()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Enables tracking of decisions made for the associated <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="org/sosy_lab/java_smt/api/UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(BooleanFormula, boolean)</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#notifyOnFinalCheck()">notifyOnFinalCheck()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Enables the final callback <a href="org/sosy_lab/java_smt/api/UserPropagator.html#onFinalCheck()"><code>UserPropagator.onFinalCheck()</code></a> that is invoked when the
+ solver finds a full satisfying assignment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#notifyOnKnownValue()">notifyOnKnownValue()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Enables tracking of expression values for the associated <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="org/sosy_lab/java_smt/api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/NQueens.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">NQueens</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueens</span></a> - Class in <a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></dt>
+<dd>
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,int)">NQueens(SolverContext, int)</a></span> - Constructor for class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueens</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensConstraintPropagator</span></a> - Class in <a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></dt>
+<dd>
+<div class="block">In addition to the enumeration done by <a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><code>NQueensEnumeratingPropagator</code></a>, this propagator also
+ enforces the queen placement constraints without explicit encoding.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html#%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D%5B%5D)">NQueensConstraintPropagator(BooleanFormula[][])</a></span> - Constructor for class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensEnumeratingPropagator</span></a> - Class in <a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></dt>
+<dd>
+<div class="block">This propagator enumerates the solutions of the NQueens problem by raising a conflict whenever
+ the solver finds a model.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#%3Cinit%3E()">NQueensEnumeratingPropagator()</a></span> - Constructor for class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Formulas of any numeral sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.IntegerFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.RationalFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormulaManager</span></a>&lt;<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a> extends <a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt; - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This interface represents the Numeral Theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html#%3Cinit%3E()">NumeralType()</a></span> - Constructor for class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:O">
+<!--   -->
+</a>
+<h2 class="title">O</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#of(boolean,java.math.BigInteger,java.math.BigInteger,int,int)">of(boolean, BigInteger, BigInteger, int, int)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#of(java.lang.String,int,int)">of(String, int, int)</a></span> - Static method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html#of(java.lang.String,org.sosy_lab.java_smt.api.FunctionDeclarationKind,java.util.List,org.sosy_lab.java_smt.api.FormulaType,T)">of(String, FunctionDeclarationKind, List&lt;FormulaType&lt;?&gt;&gt;, FormulaType&lt;F&gt;, T)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision(BooleanFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This callback is invoked if the solver decides to branch on a registered expression.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#onFinalCheck()">onFinalCheck()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#onFinalCheck()">onFinalCheck()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#onFinalCheck()">onFinalCheck()</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue(BooleanFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="org/sosy_lab/java_smt/api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#onPop(int)">onPop(int)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This callback is invoked when the solver backtracks.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#onPop(int)">onPop(int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#onPop(int)">onPop(int)</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#onPush()">onPush()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">This callback is invoked whenever the solver creates a new decision level.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#onPush()">onPush()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html#onPush()">onPush()</a></span> - Method in class org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#OPENSMT">OPENSMT</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html#OPT">OPT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></dt>
+<dd>
+<div class="block">The solution was found (may be unbounded).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationFormulaWeights</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">Example for optimizing the weight of some constraints.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationIntReal</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">Example for optimizing 'x' with the constraint '0 &lt;= x &lt; 10'.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Interface for optimization modulo SMT.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment.OptStatus</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Status of the optimization problem.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional(RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional(RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#or(java.util.Collection)">or(Collection&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#or(java.util.Collection)">or(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#or(java.util.Collection)">or(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or(BooleanFormula...)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or(BooleanFormula...)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or(BooleanFormula...)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#or(TFormulaInfo,TFormulaInfo)">or(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#or(TFormulaInfo,TFormulaInfo)">or(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#OR">OR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a> - package org.sosy_lab.java_smt</dt>
+<dd>
+<div class="block">JavaSMT: a generic SMT solver API.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a> - package org.sosy_lab.java_smt.api</dt>
+<dd>
+<div class="block">The core interfaces for abstracting from SMT solvers and providing a common API for all solvers.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a> - package org.sosy_lab.java_smt.api.visitors</dt>
+<dd>
+<div class="block">The visitors of this package allow for efficient traversal, manipulation and transformation of
+ formulas.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a> - package org.sosy_lab.java_smt.basicimpl</dt>
+<dd>
+<div class="block">Abstract base classes for easier implementation of a solver backend.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html">org.sosy_lab.java_smt.basicimpl.tactics</a> - package org.sosy_lab.java_smt.basicimpl.tactics</dt>
+<dd>
+<div class="block">Default tactics implementations (formula-to-formula transformations).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a> - package org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</dt>
+<dd>
+<div class="block">Wrapper-classes to guarantee identical behavior for all solvers.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a> - package org.sosy_lab.java_smt.delegate.debugging</dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/logging/package-summary.html">org.sosy_lab.java_smt.delegate.logging</a> - package org.sosy_lab.java_smt.delegate.logging</dt>
+<dd>
+<div class="block">Wraps the proving environment with loggers.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a> - package org.sosy_lab.java_smt.delegate.statistics</dt>
+<dd>
+<div class="block">The classes of this package wrap the whole proving environment and measure all accesses to it.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/synchronize/package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a> - package org.sosy_lab.java_smt.delegate.synchronize</dt>
+<dd>
+<div class="block">The classes of this package wrap the whole solver context and all corresponding proving
+ environment and synchronize all accesses to it.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a> - package org.sosy_lab.java_smt.example</dt>
+<dd>
+<div class="block">Some basic examples for using Java-SMT.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a> - package org.sosy_lab.java_smt.example.nqueens_user_propagator</dt>
+<dd>
+<div class="block">Some basic examples for using Java-SMT.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a> - package org.sosy_lab.java_smt.test</dt>
+<dd>
+<div class="block">Solver-independent tests and test utilities for the solver API.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a> - package org.sosy_lab.java_smt.utils</dt>
+<dd>
+<div class="block">Utility classes implementing algorithms based on the API of JavaSMT.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#orImpl(java.util.Collection)">orImpl(Collection&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Create an n-ary disjunction.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#OTHER">OTHER</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Solvers support a lot of different built-in theories.</div>
+</dd>
+</dl>
+<a id="I:P">
+<!--   -->
+</a>
+<h2 class="title">P</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html#%3Cinit%3E()">ParameterizedSolverBasedTest0()</a></span> - Constructor for class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#parse(java.lang.String)">parse(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#parse(java.lang.String)">parse(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#parse(java.lang.String)">parse(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#parseImpl(java.lang.String)">parseImpl(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#pop()">pop()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#pop()">pop()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#pop()">pop()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#popImpl()">popImpl()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#prefix(TFormulaInfo,TFormulaInfo)">prefix(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/SolverUtils.html#prettyPrinter(org.sosy_lab.java_smt.api.FormulaManager)">prettyPrinter(FormulaManager)</a></span> - Static method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils">SolverUtils</a></dt>
+<dd>
+<div class="block">Creates a new <a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><code>PrettyPrinter</code></a> instance.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">PrettyPrinter</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This program parses user-given formulas and prints them in a pretty format.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter</span></a> - Class in <a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">PrettyPrinter(FormulaManager)</a></span> - Constructor for class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter.PrinterOption</span></a> - Enum in <a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#PRINCESS">PRINCESS</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)">propagateConflict(BooleanFormula[])</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Raises a conflict caused by a set of conflicting assignments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)">propagateConsequence(BooleanFormula[], BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Propagates a consequence implied by a set of assigned expressions.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)">propagateNextDecision(BooleanFormula, Optional&lt;Boolean&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Propagates a decision to be made by the solver.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">PropagatorBackend</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">The PropagatorBackend class is used by <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> to implement custom user
+ propagators.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ProverEnvironment</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">An interface to an incremental SMT solver with methods for pushing and popping formulas as well
+ as SAT checks.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html#proverEnvironments()">proverEnvironments()</a></span> - Static method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></dt>
+<dd>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assert_().about(proverEnvironments()).that(stack).is...()</code>.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">ProverEnvironmentSubject</span></a> - Class in <a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></dt>
+<dd>
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about ProverEnvironments with Truth (allows using
+ <code>assert_().about(...).that(stack).isUnsatisfiable()</code> etc.).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">ProverWithAssumptionsWrapper</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html#%3Cinit%3E(org.sosy_lab.java_smt.api.ProverEnvironment)">ProverWithAssumptionsWrapper(ProverEnvironment)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#push()">push()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#push()">push()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#push()">push()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Push a backtracking point and add a formula to the current stack, asserting it.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#pushImpl()">pushImpl()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:Q">
+<!--   -->
+</a>
+<h2 class="title">Q</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#QE_LIGHT">QE_LIGHT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Perform "best-effort" quantifier elimination: when the bound variable can be "cheaply"
+ eliminated using a pattern-matching approach, eliminate it, and otherwise leave it as-is.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#qmgr">qmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">This interface contains methods for working with any theory with quantifiers.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager.Quantifier</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:R">
+<!--   -->
+</a>
+<h2 class="title">R</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#range(char,char)">range(char, char)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#range(TFormulaInfo,TFormulaInfo)">range(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RationalFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Interface for operating over <a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.RationalFormula</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#RationalType">RationalType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_COMPLEMENT">RE_COMPLEMENT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_CONCAT">RE_CONCAT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_DIFFERENCE">RE_DIFFERENCE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_INTERSECT">RE_INTERSECT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_OPTIONAL">RE_OPTIONAL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_PLUS">RE_PLUS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_RANGE">RE_RANGE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_STAR">RE_STAR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#RE_UNION">RE_UNION</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RegexFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the string sort.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#RegexType">RegexType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#registerEvaluator(E)">registerEvaluator(E)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>
+<div class="block">This method registers the Evaluator to be cleaned up before the next change on the prover
+ stack.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/PropagatorBackend.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></dt>
+<dd>
+<div class="block">Registers an expression to be observed by a <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></dt>
+<dd>
+<div class="block">Registers an expression to be observed by the <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#registerPushedFormula(T)">registerPushedFormula(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>
+<div class="block">overridden in sub-class.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html#registerPushedFormula(T)">registerPushedFormula(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator(UserPropagator)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Registers a <a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> for this prover environment.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>BitvectorFormulaManager.divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#remainder(TFormulaInfo,TFormulaInfo)">remainder(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#remainder(TFormulaInfo,TFormulaInfo,boolean)">remainder(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace(StringFormula, StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace(StringFormula, StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace(StringFormula, StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#replace(TFormulaInfo,TFormulaInfo,TFormulaInfo)">replace(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll(StringFormula, StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll(StringFormula, StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll(StringFormula, StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#replaceAll(TFormulaInfo,TFormulaInfo,TFormulaInfo)">replaceAll(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireArrayModel()">requireArrayModel()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireArrays()">requireArrays()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support arrays.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireBitvectors()">requireBitvectors()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireBitvectorToInt()">requireBitvectorToInt()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireEnumeration()">requireEnumeration()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support enumeration theory.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireFloats()">requireFloats()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireIntegers()">requireIntegers()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support integers.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireInterpolation()">requireInterpolation()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireModel()">requireModel()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireOptimization()">requireOptimization()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support optimization.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireParser()">requireParser()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireQuantifiers()">requireQuantifiers()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support quantifiers.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireRationals()">requireRationals()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireStrings()">requireStrings()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Skip test if the solver does not support strings.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireSubstitution()">requireSubstitution()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#requireTheoryCombination()">requireTheoryCombination()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#requireUfValuesInModel()">requireUfValuesInModel()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireUnsatCore()">requireUnsatCore()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireUnsatCoreOverAssumptions()">requireUnsatCoreOverAssumptions()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireUserPropagators()">requireUserPropagators()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#requireVisitor()">requireVisitor()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#rmgr">rmgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft(BitvectorFormula, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft(BitvectorFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft(BitvectorFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateLeft(TFormulaInfo,TFormulaInfo)">rotateLeft(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateLeftByConstant(TFormulaInfo,int)">rotateLeftByConstant(TFormulaInfo, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight(BitvectorFormula, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight(BitvectorFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight(BitvectorFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateRight(TFormulaInfo,TFormulaInfo)">rotateRight(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#rotateRightByConstant(TFormulaInfo,int)">rotateRightByConstant(TFormulaInfo, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#round(TFormulaInfo,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round(TFormulaInfo, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html#%3Cinit%3E()">RowBuilder()</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></dt>
+<dd>
+<div class="block">The constructor builds the header of the table.</div>
+</dd>
+</dl>
+<a id="I:S">
+<!--   -->
+</a>
+<h2 class="title">S</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#satTestBool5()">satTestBool5()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select(ArrayFormula&lt;TI, TE&gt;, TI)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select(ArrayFormula&lt;TI, TE&gt;, TI)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select(ArrayFormula&lt;TI, TE&gt;, TI)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#select(TFormulaInfo,TFormulaInfo)">select(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#SELECT">SELECT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#shiftLeft(TFormulaInfo,TFormulaInfo)">shiftLeft(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns a term representing the right shift (towards least-significant bit) of
+ number by toShift.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Return a term representing the (arithmetic if signed is true) right shift of number by toShift.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight(BitvectorFormula, BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#shiftRight(TFormulaInfo,TFormulaInfo,boolean)">shiftRight(TFormulaInfo, TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">ShutdownHook</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">A utility class for interrupting a parallel running solver thread.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html#%3Cinit%3E(org.sosy_lab.common.ShutdownNotifier,java.lang.Runnable)">ShutdownHook(ShutdownNotifier, Runnable)</a></span> - Constructor for class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#shutdownManager">shutdownManager</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html#shutdownNotifier">shutdownNotifier</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#shutdownNotifierToUse()">shutdownNotifierToUse()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html#shutdownRequested(java.lang.String)">shutdownRequested(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#simpleStackTestBool()">simpleStackTestBool()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SimpleUserPropagator</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">Example of a simple user propagator that prohibits variables/expressions to be set to true.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#simplify(T)">simplify(T)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Simplify an input formula, while ensuring equivalence.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#simplify(T)">simplify(T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#simplify(T)">simplify(T)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#simplify(TFormulaInfo)">simplify(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Apply a simplification procedure for the given formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#SINGLE_PRECISION_EXPONENT_SIZE">SINGLE_PRECISION_EXPONENT_SIZE</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#SINGLE_PRECISION_MANTISSA_SIZE">SINGLE_PRECISION_MANTISSA_SIZE</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#singleStackTestInteger()">singleStackTestInteger()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#singleStackTestRational()">singleStackTestRational()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#size()">size()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#size()">size()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#size()">size()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.html#SIZE">SIZE</a></span> - Static variable in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html#SKIP">SKIP</a></span> - Static variable in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dt>
+<dd>
+<div class="block">Continue traversal, but do not recurse into current formula subtree.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#SKIP_TYPE">SKIP_TYPE</a></span> - org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SLFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">The <a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>SLFormulaManager</code></a> can build formulae for separation logic.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#smgr">smgr</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#smodulo(TFormulaInfo,TFormulaInfo)">smodulo(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#SMTINTERPOL">SMTINTERPOL</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#SMTLIB2_KEYWORDS">SMTLIB2_KEYWORDS</a></span> - Static variable in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>
+<div class="block">Avoid using basic keywords of SMT-LIB2 as names for symbols.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html#solve(char%5B%5D%5B%5D)">solve(char[][])</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a></dt>
+<dd>
+<div class="block">Solves a Binoxxo using the given grid values and returns a possible solution.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html#solve(java.lang.Integer%5B%5D%5B%5D)">solve(Integer[][])</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a></dt>
+<dd>
+<div class="block">Solves a sudoku using the given grid values and returns a possible solution.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html#solver">solver</a></span> - Variable in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#solverAssumptionsAsFormula">solverAssumptionsAsFormula</a></span> - Variable in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0</span></a> - Class in <a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></dt>
+<dd>
+<div class="block">Abstract base class with helpful utilities for writing tests that use an SMT solver.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#%3Cinit%3E()">SolverBasedTest0()</a></span> - Constructor for class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0.ParameterizedSolverBasedTest0</span></a> - Class in <a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Instances of this interface provide access to an SMT solver.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext.ProverOptions</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Options for the prover environment.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory</span></a> - Class in <a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a></dt>
+<dd>
+<div class="block">Factory class for loading and generating solver contexts.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">SolverContextFactory(Configuration, LogManager, ShutdownNotifier)</a></span> - Constructor for class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">This constructor uses the default JavaSMT loader for accessing native libraries.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.html#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)">SolverContextFactory(Configuration, LogManager, ShutdownNotifier, Consumer&lt;String&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dt>
+<dd>
+<div class="block">This constructor instantiates a factory for building solver contexts for a configured SMT
+ solver (via the parameter <code>pConfig</code>).</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory.Solvers</span></a> - Enum in <a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverException</span></a> - Exception in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Exception thrown if there is an error during SMT solving.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverException.html#%3Cinit%3E(java.lang.String)">SolverException(String)</a></span> - Constructor for exception org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverException.html#%3Cinit%3E(java.lang.String,java.lang.Throwable)">SolverException(String, Throwable)</a></span> - Constructor for exception org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html#solverHasSharedFormulas(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">solverHasSharedFormulas(SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html#solverHasSharedFunctions(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">solverHasSharedFunctions(SolverContextFactory.Solvers)</a></span> - Static method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This program takes all installed solvers and checks them for version, theories and features and
+ prints them to StdOut in a nice table.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html#%3Cinit%3E()">SolverOverviewTable()</a></span> - Constructor for class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.RowBuilder</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This class builds the table row-by-row.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.SolverInfo</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">just a wrapper for some data.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverStackTest0</span></a> - Class in <a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#%3Cinit%3E()">SolverStackTest0()</a></span> - Constructor for class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">SolverStatistics</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html#solverToUse()">solverToUse()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html#solverToUse()">solverToUse()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dt>
+<dd>
+<div class="block">Return the solver to use in this test.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">SolverUtils</span></a> - Class in <a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></dt>
+<dd>
+<div class="block">Central entry point for all utility classes.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html#SPLIT_ONLY_BOOLEAN_OPERATIONS">SPLIT_ONLY_BOOLEAN_OPERATIONS</a></span> - org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></dt>
+<dd>
+<div class="block">introduce newlines only for boolean operations, instead of for all operations.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt(FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#sqrt(TFormulaInfo,TFormulaInfo)">sqrt(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTest()">stackTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTest2()">stackTest2()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTest3()">stackTest3()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTest4()">stackTest4()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTest5()">stackTest5()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTestUnsat()">stackTestUnsat()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#stackTestUnsat2()">stackTestUnsat2()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html#start()">start()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsEnumerationFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsSolverContext</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">StatisticsSolverContext(SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html#stop()">stop()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store(ArrayFormula&lt;TI, TE&gt;, TI, TE)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></dt>
+<dd>
+<div class="block">Store a value into a cell of the specified array.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store(ArrayFormula&lt;TI, TE&gt;, TI, TE)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store(ArrayFormula&lt;TI, TE&gt;, TI, TE)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html#store(TFormulaInfo,TFormulaInfo,TFormulaInfo)">store(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STORE">STORE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Store and select on arrays, and constant initialization.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_CHAR_AT">STR_CHAR_AT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_CONCAT">STR_CONCAT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_CONTAINS">STR_CONTAINS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_IN_RE">STR_IN_RE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_INDEX_OF">STR_INDEX_OF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_LE">STR_LE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_LENGTH">STR_LENGTH</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_LT">STR_LT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_PREFIX">STR_PREFIX</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_REPLACE">STR_REPLACE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_REPLACE_ALL">STR_REPLACE_ALL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_SUBSTRING">STR_SUBSTRING</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_SUFFIX">STR_SUFFIX</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_TO_INT">STR_TO_INT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#STR_TO_RE">STR_TO_RE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormula</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">A formula of the string sort.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormulaManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Manager for dealing with string formulas.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#StringType">StringType</a></span> - Static variable in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#SUB">SUB</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Subtraction over integers and rationals.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#substitute(T,java.util.Map)">substitute(T, Map&lt;? extends Formula, ? extends Formula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#substitute(T,java.util.Map)">substitute(T, Map&lt;? extends Formula, ? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#substitute(T,java.util.Map)">substitute(T, Map&lt;? extends Formula, ? extends Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Get a substring from the given String.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#substring(TFormulaInfo,TFormulaInfo,TFormulaInfo)">substring(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the subtraction of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract(FloatingPointFormula, FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract(ParamFormulaType, ParamFormulaType)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract(ParamFormulaType, ParamFormulaType)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#subtract(TFormulaInfo,TFormulaInfo)">subtract(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#subtract(TFormulaInfo,TFormulaInfo)">subtract(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#subtract(TFormulaInfo,TFormulaInfo,TFormulaInfo)">subtract(TFormulaInfo, TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>
+<div class="block">This program parses user-given Sudoku and solves it with an SMT solver.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.BooleanBasedSudokuSolver</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.EnumerationBasedSudokuSolver</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.IntegerBasedSudokuSolver</span></a> - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.SudokuSolver</span></a>&lt;<a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="type parameter in Sudoku.SudokuSolver">S</a>&gt; - Class in <a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix(StringFormula, StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix(StringFormula, StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#suffix(TFormulaInfo,TFormulaInfo)">suffix(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html#sum(java.util.List)">sum(List&lt;ParamFormulaType&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#sum(java.util.List)">sum(List&lt;ParamFormulaType&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html#sum(java.util.List)">sum(List&lt;ParamFormulaType&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#sumImpl(java.util.List)">sumImpl(List&lt;TFormulaInfo&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html#supportsAssumptionSolving()">supportsAssumptionSolving()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></dt>
+<dd>
+<div class="block">Whether the solver supports solving under some given assumptions (with all corresponding
+ features) by itself, i.e., whether <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> and <a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> are fully
+ implemented.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/test/SolverStackTest0.html#symbolsOnStackTest()">symbolsOnStackTest()</a></span> - Method in class org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></dt>
+<dd>
+<div class="block">Create a symbol on a level and pop this level.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedEnumerationFormulaManager</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/synchronize/package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedSolverContext</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/synchronize/package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.api.SolverContext)">SynchronizedSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContext)</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:T">
+<!--   -->
+</a>
+<h2 class="title">T</h2>
+<dl>
+<dt><a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">Tactic</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Tactic is a generic formula to formula transformation.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#%3Cinit%3E()">TimerPool()</a></span> - Constructor for class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool.TimerWrapper</span></a> - Class in <a href="org/sosy_lab/java_smt/delegate/statistics/package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></dt>
+<dd>
+<div class="block">A minimal wrapper to keep a reference on the timer and provide a limited view.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times(RegexFormula, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times(RegexFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times(RegexFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#TO_REAL">TO_REAL</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Identity operation, converts from integers to rationals, also known as <code>to_real</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#toConjunction()">toConjunction()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#toConjunction()">toConjunction()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#toConjunction()">toConjunction()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs(BooleanFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#toDisjunction()">toDisjunction()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#toDisjunction()">toDisjunction()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#toDisjunction()">toDisjunction()</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs(BooleanFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs(BooleanFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector(FloatingPointFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></dt>
+<dd>
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector(FloatingPointFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#toIeeeBitvectorImpl(TFormulaInfo)">toIeeeBitvectorImpl(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula(BitvectorFormula, boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula(BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula(BitvectorFormula, boolean)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula(StringFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Interpret a String formula as an Integer formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula(StringFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#toIntegerFormula(TFormulaInfo)">toIntegerFormula(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#toIntegerFormulaImpl(TFormulaInfo,boolean)">toIntegerFormulaImpl(TFormulaInfo, boolean)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html#tokenize(java.lang.String)">tokenize(String)</a></span> - Static method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></dt>
+<dd>
+<div class="block">Split up a sequence of lisp expressions.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">Tokenizer</span></a> - Class in <a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></dt>
+<dd>
+<div class="block">Helper class for splitting up an SMT-LIB2 file into a string of commands.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#toSMTLIBString()">toSMTLIBString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#toSMTLIBString()">toSMTLIBString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#toSMTLIBString()">toSMTLIBString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#toSMTLIBString()">toSMTLIBString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#toSMTLIBString()">toSMTLIBString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></dt>
+<dd>
+<div class="block">Return a bit-representation of sign-bit, exponent, and mantissa, i.e., a concatenation of their
+ bit-representations in this exact ordering.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Formula.html#toString()">toString()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></dt>
+<dd>
+<div class="block">returns an arbitrary representation of the formula, might be human- or machine-readable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaType.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.html#toString()">toString()</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></dt>
+<dd>
+<div class="block">Pretty-printing of the model values.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html#toString()">toString()</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula(NumeralFormula.IntegerFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>
+<div class="block">Interpret an Integer formula as a String formula.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula(NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula(NumeralFormula.IntegerFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#toStringFormula(TFormulaInfo)">toStringFormula(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#TOWARD_NEGATIVE">TOWARD_NEGATIVE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#TOWARD_POSITIVE">TOWARD_POSITIVE</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#TOWARD_ZERO">TOWARD_ZERO</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula recursively with a given <a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T)">transformRecursively(FormulaVisitor&lt;? extends Formula&gt;, T)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T,java.util.function.Predicate)">transformRecursively(FormulaVisitor&lt;? extends Formula&gt;, T, Predicate&lt;Object&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively(T, FormulaTransformationVisitor)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula recursively with a given <a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively(T, FormulaTransformationVisitor)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively(T, FormulaTransformationVisitor)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#transformValueToRange(int,java.math.BigInteger)">transformValueToRange(int, BigInteger)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">transform a negative value into its positive counterpart.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom(BooleanFormula, FormulaManager)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom(BooleanFormula, FormulaManager)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom(BooleanFormula, FormulaManager)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess</span></a> - Class in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>
+<div class="block">Return class that lets the visitor guide the recursive formula traversal process started with
+ <a href="org/sosy_lab/java_smt/api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a>.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess.TraversalType</span></a> - Enum in <a href="org/sosy_lab/java_smt/api/visitors/package-summary.html">org.sosy_lab.java_smt.api.visitors</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#TSEITIN_CNF">TSEITIN_CNF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Convert the formula to CNF (conjunctive normal form), using extra fresh variables to avoid the
+ size explosion.</div>
+</dd>
+</dl>
+<a id="I:U">
+<!--   -->
+</a>
+<h2 class="title">U</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#UF">UF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Uninterpreted function.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/SolverUtils.html#ufElimination(org.sosy_lab.java_smt.api.FormulaManager)">ufElimination(FormulaManager)</a></span> - Static method in class org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils">SolverUtils</a></dt>
+<dd>
+<div class="block">Creates a new <a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination</code></a> instance.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination</span></a> - Class in <a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></dt>
+<dd>
+<div class="block">UfElimination replaces UFs by fresh variables and adds constraints to enforce the functional
+ consistency.</div>
+</dd>
+<dt><a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination.Result</span></a> - Class in <a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UFManager</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Manager for dealing with uninterpreted functions (UFs).</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#UMINUS">UMINUS</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Unary minus.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html#UNDEF">UNDEF</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></dt>
+<dd>
+<div class="block">The result is unknown.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#unescape(java.lang.String)">unescape(String)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#unescape(java.lang.String)">unescape(String)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#unescape(java.lang.String)">unescape(String)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/StringFormulaManager.html#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union(RegexFormula, RegexFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union(RegexFormula, RegexFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html#union(TFormulaInfo,TFormulaInfo)">union(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html#unregisterEvaluator(org.sosy_lab.java_smt.api.Evaluator)">unregisterEvaluator(Evaluator)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html#UNSAT">UNSAT</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></dt>
+<dd>
+<div class="block">The set of constraints is unsatisfiable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions(Collection&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></dt>
+<dd>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions(Collection&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html#upper(int,org.sosy_lab.common.rationals.Rational)">upper(int, Rational)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html#upper(int,org.sosy_lab.common.rationals.Rational)">upper(int, Rational)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html#USE">USE</a></span> - org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></dt>
+<dd>&nbsp;</dd>
+<dt><a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UserPropagator</span></a> - Interface in <a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></dt>
+<dd>
+<div class="block">Allows user-defined propagators (~ theory solvers) to be implemented.</div>
+</dd>
+</dl>
+<a id="I:V">
+<!--   -->
+</a>
+<h2 class="title">V</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html#%3Cinit%3E(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula,java.lang.String,java.lang.Object,java.util.List)">ValueAssignment(Formula, Formula, BooleanFormula, String, Object, List&lt;?&gt;)</a></span> - Constructor for class org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html#valueOf(java.lang.String)">valueOf(String)</a></span> - Static method in enum org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></dt>
+<dd>
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/Tactic.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html#values()">values()</a></span> - Static method in enum org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></dt>
+<dd>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#VAR">VAR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">User-defined variable.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/example/FormulaClassifier.html#visit(org.sosy_lab.java_smt.api.BooleanFormula)">visit(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit(BooleanFormula, BooleanFormulaVisitor&lt;R&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula with the given visitor.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit(BooleanFormula, BooleanFormulaVisitor&lt;R&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit(BooleanFormula, BooleanFormulaVisitor&lt;R&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit(Formula, FormulaVisitor&lt;R&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula with a given visitor.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit(Formula, FormulaVisitor&lt;R&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit(Formula, FormulaVisitor&lt;R&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit(Formula, FormulaVisitor&lt;R&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#visit(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,TFormulaInfo)">visit(FormulaVisitor&lt;R&gt;, Formula, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitAnd(java.util.List)">visitAnd(List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitAnd(java.util.List)">visitAnd(List&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitAnd(java.util.List)">visitAnd(List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom(BooleanFormula, FunctionDeclaration&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom(BooleanFormula, FunctionDeclaration&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an SMT atom.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom(BooleanFormula, FunctionDeclaration&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar(BooleanFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar(BooleanFormula, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar(BooleanFormula, int)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable(Formula, int)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable(Formula, int)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable(Formula, int)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a variable bound by a quantifier.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitConstant(boolean)">visitConstant(boolean)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitConstant(boolean)">visitConstant(boolean)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a constant with a given value.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitConstant(boolean)">visitConstant(boolean)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant(Formula, Object)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant(Formula, Object)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant(Formula, Object)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitDefault()">visitDefault()</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitDefault(org.sosy_lab.java_smt.api.Formula)">visitDefault(Formula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>
+<div class="block">Method for default case, is called by all methods from this class if they are not overridden.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html#visitDefault(org.sosy_lab.java_smt.api.Formula)">visitDefault(Formula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable(Formula, String)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable(Formula, String)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable(Formula, String)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction(Formula, List&lt;Formula&gt;, FunctionDeclaration&lt;?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction(Formula, List&lt;Formula&gt;, FunctionDeclaration&lt;?&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction(Formula, List&lt;Formula&gt;, FunctionDeclaration&lt;?&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an arbitrary, potentially uninterpreted function.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an if-then-else expression.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an implication.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot(BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a NOT-expression.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot(BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitOr(java.util.List)">visitOr(List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitOr(java.util.List)">visitOr(List&lt;BooleanFormula&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitOr(java.util.List)">visitOr(List&lt;BooleanFormula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a quantified node.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List&lt;Formula&gt;, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively(BooleanFormula, BooleanFormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula recursively with a given <a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively(BooleanFormula, BooleanFormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively(BooleanFormula, BooleanFormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively(Formula, FormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></dt>
+<dd>
+<div class="block">Visit the formula recursively with a given <a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively(Formula, FormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively(Formula, FormulaVisitor&lt;TraversalProcess&gt;)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula)">visitRecursively(FormulaVisitor&lt;TraversalProcess&gt;, Formula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html#visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.util.function.Predicate)">visitRecursively(FormulaVisitor&lt;TraversalProcess&gt;, Formula, Predicate&lt;Formula&gt;)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a></dt>
+<dd>
+<div class="block">Visit a XOR-expression.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:W">
+<!--   -->
+</a>
+<h2 class="title">W</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html#wrap(TFormulaInfo)">wrap(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html#wrap(TFormulaInfo)">wrap(TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:X">
+<!--   -->
+</a>
+<h2 class="title">X</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor(BitvectorFormula, BitvectorFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></dt>
+<dd>
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor(BitvectorFormula, BitvectorFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor(BooleanFormula, BooleanFormula)</a></span> - Method in interface org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></dt>
+<dd>
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor(BooleanFormula, BooleanFormula)</a></span> - Method in class org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html#xor(TFormulaInfo,TFormulaInfo)">xor(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html#xor(TFormulaInfo,TFormulaInfo)">xor(TFormulaInfo, TFormulaInfo)</a></span> - Method in class org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html#XOR">XOR</a></span> - org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></dt>
+<dd>
+<div class="block">Exclusive OR over two formulas.</div>
+</dd>
+</dl>
+<a id="I:Y">
+<!--   -->
+</a>
+<h2 class="title">Y</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#YICES2">YICES2</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a id="I:Z">
+<!--   -->
+</a>
+<h2 class="title">Z</h2>
+<dl>
+<dt><span class="memberNameLink"><a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html#Z3">Z3</a></span> - org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></dt>
+<dd>&nbsp;</dd>
+</dl>
+<a href="#I:A">A</a>&nbsp;<a href="#I:B">B</a>&nbsp;<a href="#I:C">C</a>&nbsp;<a href="#I:D">D</a>&nbsp;<a href="#I:E">E</a>&nbsp;<a href="#I:F">F</a>&nbsp;<a href="#I:G">G</a>&nbsp;<a href="#I:H">H</a>&nbsp;<a href="#I:I">I</a>&nbsp;<a href="#I:L">L</a>&nbsp;<a href="#I:M">M</a>&nbsp;<a href="#I:N">N</a>&nbsp;<a href="#I:O">O</a>&nbsp;<a href="#I:P">P</a>&nbsp;<a href="#I:Q">Q</a>&nbsp;<a href="#I:R">R</a>&nbsp;<a href="#I:S">S</a>&nbsp;<a href="#I:T">T</a>&nbsp;<a href="#I:U">U</a>&nbsp;<a href="#I:V">V</a>&nbsp;<a href="#I:W">W</a>&nbsp;<a href="#I:X">X</a>&nbsp;<a href="#I:Y">Y</a>&nbsp;<a href="#I:Z">Z</a>&nbsp;<br><a href="allclasses-index.html">All&nbsp;Classes</a>&nbsp;<a href="allpackages-index.html">All&nbsp;Packages</a></div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li class="navBarCell1Rev">Index</li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/index.html b/api/index.html
new file mode 100644
index 0000000000..1501339c18
--- /dev/null
+++ b/api/index.html
@@ -0,0 +1,250 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Overview (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Overview (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li class="navBarCell1Rev">Overview</li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title"><h1>JavaSMT Solver Library</h1></h1>
+</div>
+<div class="contentContainer">
+<div class="block"><p>JavaSMT is a generic API allowing unified access to different SMT solvers.</p>
+
+<p>All the interaction with a solver is performed through the
+<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> interface, which encapsulates a
+single context.
+<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> instances are created using
+<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt"><code>SolverContextFactory</code></a>.</p></div>
+</div>
+<div class="contentContainer">
+<table class="overviewSummary">
+<caption><span>Packages</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Package</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor" id="i0">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/package-summary.html">org.sosy_lab.java_smt</a></th>
+<td class="colLast">
+<div class="block">JavaSMT: a generic SMT solver API.</div>
+</td>
+</tr>
+<tr class="rowColor" id="i1">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/api/package-summary.html">org.sosy_lab.java_smt.api</a></th>
+<td class="colLast">
+<div class="block">The core interfaces for abstracting from SMT solvers and providing a common API for all solvers.</div>
+</td>
+</tr>
+<tr class="altColor" id="i2">
+<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>
+<td class="colLast">
+<div class="block">The visitors of this package allow for efficient traversal, manipulation and transformation of
+ formulas.</div>
+</td>
+</tr>
+<tr class="rowColor" id="i3">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/basicimpl/package-summary.html">org.sosy_lab.java_smt.basicimpl</a></th>
+<td class="colLast">
+<div class="block">Abstract base classes for easier implementation of a solver backend.</div>
+</td>
+</tr>
+<tr class="altColor" id="i4">
+<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>
+<td class="colLast">
+<div class="block">Default tactics implementations (formula-to-formula transformations).</div>
+</td>
+</tr>
+<tr class="rowColor" id="i5">
+<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>
+<td class="colLast">
+<div class="block">Wrapper-classes to guarantee identical behavior for all solvers.</div>
+</td>
+</tr>
+<tr class="altColor" id="i6">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/delegate/debugging/package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor" id="i7">
+<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>
+<td class="colLast">
+<div class="block">Wraps the proving environment with loggers.</div>
+</td>
+</tr>
+<tr class="altColor" id="i8">
+<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>
+<td class="colLast">
+<div class="block">The classes of this package wrap the whole proving environment and measure all accesses to it.</div>
+</td>
+</tr>
+<tr class="rowColor" id="i9">
+<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>
+<td class="colLast">
+<div class="block">The classes of this package wrap the whole solver context and all corresponding proving
+ environment and synchronize all accesses to it.</div>
+</td>
+</tr>
+<tr class="altColor" id="i10">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/example/package-summary.html">org.sosy_lab.java_smt.example</a></th>
+<td class="colLast">
+<div class="block">Some basic examples for using Java-SMT.</div>
+</td>
+</tr>
+<tr class="rowColor" id="i11">
+<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>
+<td class="colLast">
+<div class="block">Some basic examples for using Java-SMT.</div>
+</td>
+</tr>
+<tr class="altColor" id="i12">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/test/package-summary.html">org.sosy_lab.java_smt.test</a></th>
+<td class="colLast">
+<div class="block">Solver-independent tests and test utilities for the solver API.</div>
+</td>
+</tr>
+<tr class="rowColor" id="i13">
+<th class="colFirst" scope="row"><a href="org/sosy_lab/java_smt/utils/package-summary.html">org.sosy_lab.java_smt.utils</a></th>
+<td class="colLast">
+<div class="block">Utility classes implementing algorithms based on the API of JavaSMT.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li class="navBarCell1Rev">Overview</li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/jquery-ui.overrides.css b/api/jquery-ui.overrides.css
new file mode 100644
index 0000000000..facf852c27
--- /dev/null
+++ b/api/jquery-ui.overrides.css
@@ -0,0 +1,35 @@
+/*
+ * Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+.ui-state-active,
+.ui-widget-content .ui-state-active,
+.ui-widget-header .ui-state-active,
+a.ui-button:active,
+.ui-button:active,
+.ui-button.ui-state-active:hover {
+    /* Overrides the color of selection used in jQuery UI */
+    background: #F8981D;
+    border: 1px solid #F8981D;
+}
diff --git a/api/jquery/external/jquery/jquery.js b/api/jquery/external/jquery/jquery.js
new file mode 100644
index 0000000000..50937333b9
--- /dev/null
+++ b/api/jquery/external/jquery/jquery.js
@@ -0,0 +1,10872 @@
+/*!
+ * jQuery JavaScript Library v3.5.1
+ * https://jquery.com/
+ *
+ * Includes Sizzle.js
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://jquery.org/license
+ *
+ * Date: 2020-05-04T22:49Z
+ */
+( function( global, factory ) {
+
+	"use strict";
+
+	if ( typeof module === "object" && typeof module.exports === "object" ) {
+
+		// For CommonJS and CommonJS-like environments where a proper `window`
+		// is present, execute the factory and get jQuery.
+		// For environments that do not have a `window` with a `document`
+		// (such as Node.js), expose a factory as module.exports.
+		// This accentuates the need for the creation of a real `window`.
+		// e.g. var jQuery = require("jquery")(window);
+		// See ticket #14549 for more info.
+		module.exports = global.document ?
+			factory( global, true ) :
+			function( w ) {
+				if ( !w.document ) {
+					throw new Error( "jQuery requires a window with a document" );
+				}
+				return factory( w );
+			};
+	} else {
+		factory( global );
+	}
+
+// Pass this if window is not defined yet
+} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
+
+// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1
+// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode
+// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common
+// enough that all such attempts are guarded in a try block.
+"use strict";
+
+var arr = [];
+
+var getProto = Object.getPrototypeOf;
+
+var slice = arr.slice;
+
+var flat = arr.flat ? function( array ) {
+	return arr.flat.call( array );
+} : function( array ) {
+	return arr.concat.apply( [], array );
+};
+
+
+var push = arr.push;
+
+var indexOf = arr.indexOf;
+
+var class2type = {};
+
+var toString = class2type.toString;
+
+var hasOwn = class2type.hasOwnProperty;
+
+var fnToString = hasOwn.toString;
+
+var ObjectFunctionString = fnToString.call( Object );
+
+var support = {};
+
+var isFunction = function isFunction( obj ) {
+
+      // Support: Chrome <=57, Firefox <=52
+      // In some browsers, typeof returns "function" for HTML <object> elements
+      // (i.e., `typeof document.createElement( "object" ) === "function"`).
+      // We don't want to classify *any* DOM node as a function.
+      return typeof obj === "function" && typeof obj.nodeType !== "number";
+  };
+
+
+var isWindow = function isWindow( obj ) {
+		return obj != null && obj === obj.window;
+	};
+
+
+var document = window.document;
+
+
+
+	var preservedScriptAttributes = {
+		type: true,
+		src: true,
+		nonce: true,
+		noModule: true
+	};
+
+	function DOMEval( code, node, doc ) {
+		doc = doc || document;
+
+		var i, val,
+			script = doc.createElement( "script" );
+
+		script.text = code;
+		if ( node ) {
+			for ( i in preservedScriptAttributes ) {
+
+				// Support: Firefox 64+, Edge 18+
+				// Some browsers don't support the "nonce" property on scripts.
+				// On the other hand, just using `getAttribute` is not enough as
+				// the `nonce` attribute is reset to an empty string whenever it
+				// becomes browsing-context connected.
+				// See https://github.com/whatwg/html/issues/2369
+				// See https://html.spec.whatwg.org/#nonce-attributes
+				// The `node.getAttribute` check was added for the sake of
+				// `jQuery.globalEval` so that it can fake a nonce-containing node
+				// via an object.
+				val = node[ i ] || node.getAttribute && node.getAttribute( i );
+				if ( val ) {
+					script.setAttribute( i, val );
+				}
+			}
+		}
+		doc.head.appendChild( script ).parentNode.removeChild( script );
+	}
+
+
+function toType( obj ) {
+	if ( obj == null ) {
+		return obj + "";
+	}
+
+	// Support: Android <=2.3 only (functionish RegExp)
+	return typeof obj === "object" || typeof obj === "function" ?
+		class2type[ toString.call( obj ) ] || "object" :
+		typeof obj;
+}
+/* global Symbol */
+// Defining this global in .eslintrc.json would create a danger of using the global
+// unguarded in another place, it seems safer to define global only for this module
+
+
+
+var
+	version = "3.5.1",
+
+	// Define a local copy of jQuery
+	jQuery = function( selector, context ) {
+
+		// The jQuery object is actually just the init constructor 'enhanced'
+		// Need init if jQuery is called (just allow error to be thrown if not included)
+		return new jQuery.fn.init( selector, context );
+	};
+
+jQuery.fn = jQuery.prototype = {
+
+	// The current version of jQuery being used
+	jquery: version,
+
+	constructor: jQuery,
+
+	// The default length of a jQuery object is 0
+	length: 0,
+
+	toArray: function() {
+		return slice.call( this );
+	},
+
+	// Get the Nth element in the matched element set OR
+	// Get the whole matched element set as a clean array
+	get: function( num ) {
+
+		// Return all the elements in a clean array
+		if ( num == null ) {
+			return slice.call( this );
+		}
+
+		// Return just the one element from the set
+		return num < 0 ? this[ num + this.length ] : this[ num ];
+	},
+
+	// Take an array of elements and push it onto the stack
+	// (returning the new matched element set)
+	pushStack: function( elems ) {
+
+		// Build a new jQuery matched element set
+		var ret = jQuery.merge( this.constructor(), elems );
+
+		// Add the old object onto the stack (as a reference)
+		ret.prevObject = this;
+
+		// Return the newly-formed element set
+		return ret;
+	},
+
+	// Execute a callback for every element in the matched set.
+	each: function( callback ) {
+		return jQuery.each( this, callback );
+	},
+
+	map: function( callback ) {
+		return this.pushStack( jQuery.map( this, function( elem, i ) {
+			return callback.call( elem, i, elem );
+		} ) );
+	},
+
+	slice: function() {
+		return this.pushStack( slice.apply( this, arguments ) );
+	},
+
+	first: function() {
+		return this.eq( 0 );
+	},
+
+	last: function() {
+		return this.eq( -1 );
+	},
+
+	even: function() {
+		return this.pushStack( jQuery.grep( this, function( _elem, i ) {
+			return ( i + 1 ) % 2;
+		} ) );
+	},
+
+	odd: function() {
+		return this.pushStack( jQuery.grep( this, function( _elem, i ) {
+			return i % 2;
+		} ) );
+	},
+
+	eq: function( i ) {
+		var len = this.length,
+			j = +i + ( i < 0 ? len : 0 );
+		return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );
+	},
+
+	end: function() {
+		return this.prevObject || this.constructor();
+	},
+
+	// For internal use only.
+	// Behaves like an Array's method, not like a jQuery method.
+	push: push,
+	sort: arr.sort,
+	splice: arr.splice
+};
+
+jQuery.extend = jQuery.fn.extend = function() {
+	var options, name, src, copy, copyIsArray, clone,
+		target = arguments[ 0 ] || {},
+		i = 1,
+		length = arguments.length,
+		deep = false;
+
+	// Handle a deep copy situation
+	if ( typeof target === "boolean" ) {
+		deep = target;
+
+		// Skip the boolean and the target
+		target = arguments[ i ] || {};
+		i++;
+	}
+
+	// Handle case when target is a string or something (possible in deep copy)
+	if ( typeof target !== "object" && !isFunction( target ) ) {
+		target = {};
+	}
+
+	// Extend jQuery itself if only one argument is passed
+	if ( i === length ) {
+		target = this;
+		i--;
+	}
+
+	for ( ; i < length; i++ ) {
+
+		// Only deal with non-null/undefined values
+		if ( ( options = arguments[ i ] ) != null ) {
+
+			// Extend the base object
+			for ( name in options ) {
+				copy = options[ name ];
+
+				// Prevent Object.prototype pollution
+				// Prevent never-ending loop
+				if ( name === "__proto__" || target === copy ) {
+					continue;
+				}
+
+				// Recurse if we're merging plain objects or arrays
+				if ( deep && copy && ( jQuery.isPlainObject( copy ) ||
+					( copyIsArray = Array.isArray( copy ) ) ) ) {
+					src = target[ name ];
+
+					// Ensure proper type for the source value
+					if ( copyIsArray && !Array.isArray( src ) ) {
+						clone = [];
+					} else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) {
+						clone = {};
+					} else {
+						clone = src;
+					}
+					copyIsArray = false;
+
+					// Never move original objects, clone them
+					target[ name ] = jQuery.extend( deep, clone, copy );
+
+				// Don't bring in undefined values
+				} else if ( copy !== undefined ) {
+					target[ name ] = copy;
+				}
+			}
+		}
+	}
+
+	// Return the modified object
+	return target;
+};
+
+jQuery.extend( {
+
+	// Unique for each copy of jQuery on the page
+	expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ),
+
+	// Assume jQuery is ready without the ready module
+	isReady: true,
+
+	error: function( msg ) {
+		throw new Error( msg );
+	},
+
+	noop: function() {},
+
+	isPlainObject: function( obj ) {
+		var proto, Ctor;
+
+		// Detect obvious negatives
+		// Use toString instead of jQuery.type to catch host objects
+		if ( !obj || toString.call( obj ) !== "[object Object]" ) {
+			return false;
+		}
+
+		proto = getProto( obj );
+
+		// Objects with no prototype (e.g., `Object.create( null )`) are plain
+		if ( !proto ) {
+			return true;
+		}
+
+		// Objects with prototype are plain iff they were constructed by a global Object function
+		Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor;
+		return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString;
+	},
+
+	isEmptyObject: function( obj ) {
+		var name;
+
+		for ( name in obj ) {
+			return false;
+		}
+		return true;
+	},
+
+	// Evaluates a script in a provided context; falls back to the global one
+	// if not specified.
+	globalEval: function( code, options, doc ) {
+		DOMEval( code, { nonce: options && options.nonce }, doc );
+	},
+
+	each: function( obj, callback ) {
+		var length, i = 0;
+
+		if ( isArrayLike( obj ) ) {
+			length = obj.length;
+			for ( ; i < length; i++ ) {
+				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
+					break;
+				}
+			}
+		} else {
+			for ( i in obj ) {
+				if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {
+					break;
+				}
+			}
+		}
+
+		return obj;
+	},
+
+	// results is for internal usage only
+	makeArray: function( arr, results ) {
+		var ret = results || [];
+
+		if ( arr != null ) {
+			if ( isArrayLike( Object( arr ) ) ) {
+				jQuery.merge( ret,
+					typeof arr === "string" ?
+					[ arr ] : arr
+				);
+			} else {
+				push.call( ret, arr );
+			}
+		}
+
+		return ret;
+	},
+
+	inArray: function( elem, arr, i ) {
+		return arr == null ? -1 : indexOf.call( arr, elem, i );
+	},
+
+	// Support: Android <=4.0 only, PhantomJS 1 only
+	// push.apply(_, arraylike) throws on ancient WebKit
+	merge: function( first, second ) {
+		var len = +second.length,
+			j = 0,
+			i = first.length;
+
+		for ( ; j < len; j++ ) {
+			first[ i++ ] = second[ j ];
+		}
+
+		first.length = i;
+
+		return first;
+	},
+
+	grep: function( elems, callback, invert ) {
+		var callbackInverse,
+			matches = [],
+			i = 0,
+			length = elems.length,
+			callbackExpect = !invert;
+
+		// Go through the array, only saving the items
+		// that pass the validator function
+		for ( ; i < length; i++ ) {
+			callbackInverse = !callback( elems[ i ], i );
+			if ( callbackInverse !== callbackExpect ) {
+				matches.push( elems[ i ] );
+			}
+		}
+
+		return matches;
+	},
+
+	// arg is for internal usage only
+	map: function( elems, callback, arg ) {
+		var length, value,
+			i = 0,
+			ret = [];
+
+		// Go through the array, translating each of the items to their new values
+		if ( isArrayLike( elems ) ) {
+			length = elems.length;
+			for ( ; i < length; i++ ) {
+				value = callback( elems[ i ], i, arg );
+
+				if ( value != null ) {
+					ret.push( value );
+				}
+			}
+
+		// Go through every key on the object,
+		} else {
+			for ( i in elems ) {
+				value = callback( elems[ i ], i, arg );
+
+				if ( value != null ) {
+					ret.push( value );
+				}
+			}
+		}
+
+		// Flatten any nested arrays
+		return flat( ret );
+	},
+
+	// A global GUID counter for objects
+	guid: 1,
+
+	// jQuery.support is not used in Core but other projects attach their
+	// properties to it so it needs to exist.
+	support: support
+} );
+
+if ( typeof Symbol === "function" ) {
+	jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];
+}
+
+// Populate the class2type map
+jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ),
+function( _i, name ) {
+	class2type[ "[object " + name + "]" ] = name.toLowerCase();
+} );
+
+function isArrayLike( obj ) {
+
+	// Support: real iOS 8.2 only (not reproducible in simulator)
+	// `in` check used to prevent JIT error (gh-2145)
+	// hasOwn isn't used here due to false negatives
+	// regarding Nodelist length in IE
+	var length = !!obj && "length" in obj && obj.length,
+		type = toType( obj );
+
+	if ( isFunction( obj ) || isWindow( obj ) ) {
+		return false;
+	}
+
+	return type === "array" || length === 0 ||
+		typeof length === "number" && length > 0 && ( length - 1 ) in obj;
+}
+var Sizzle =
+/*!
+ * Sizzle CSS Selector Engine v2.3.5
+ * https://sizzlejs.com/
+ *
+ * Copyright JS Foundation and other contributors
+ * Released under the MIT license
+ * https://js.foundation/
+ *
+ * Date: 2020-03-14
+ */
+( function( window ) {
+var i,
+	support,
+	Expr,
+	getText,
+	isXML,
+	tokenize,
+	compile,
+	select,
+	outermostContext,
+	sortInput,
+	hasDuplicate,
+
+	// Local document vars
+	setDocument,
+	document,
+	docElem,
+	documentIsHTML,
+	rbuggyQSA,
+	rbuggyMatches,
+	matches,
+	contains,
+
+	// Instance-specific data
+	expando = "sizzle" + 1 * new Date(),
+	preferredDoc = window.document,
+	dirruns = 0,
+	done = 0,
+	classCache = createCache(),
+	tokenCache = createCache(),
+	compilerCache = createCache(),
+	nonnativeSelectorCache = createCache(),
+	sortOrder = function( a, b ) {
+		if ( a === b ) {
+			hasDuplicate = true;
+		}
+		return 0;
+	},
+
+	// Instance methods
+	hasOwn = ( {} ).hasOwnProperty,
+	arr = [],
+	pop = arr.pop,
+	pushNative = arr.push,
+	push = arr.push,
+	slice = arr.slice,
+
+	// Use a stripped-down indexOf as it's faster than native
+	// https://jsperf.com/thor-indexof-vs-for/5
+	indexOf = function( list, elem ) {
+		var i = 0,
+			len = list.length;
+		for ( ; i < len; i++ ) {
+			if ( list[ i ] === elem ) {
+				return i;
+			}
+		}
+		return -1;
+	},
+
+	booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" +
+		"ismap|loop|multiple|open|readonly|required|scoped",
+
+	// Regular expressions
+
+	// http://www.w3.org/TR/css3-selectors/#whitespace
+	whitespace = "[\\x20\\t\\r\\n\\f]",
+
+	// https://www.w3.org/TR/css-syntax-3/#ident-token-diagram
+	identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace +
+		"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",
+
+	// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors
+	attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace +
+
+		// Operator (capture 2)
+		"*([*^$|!~]?=)" + whitespace +
+
+		// "Attribute values must be CSS identifiers [capture 5]
+		// or strings [capture 3 or capture 4]"
+		"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" +
+		whitespace + "*\\]",
+
+	pseudos = ":(" + identifier + ")(?:\\((" +
+
+		// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:
+		// 1. quoted (capture 3; capture 4 or capture 5)
+		"('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" +
+
+		// 2. simple (capture 6)
+		"((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" +
+
+		// 3. anything else (capture 2)
+		".*" +
+		")\\)|)",
+
+	// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter
+	rwhitespace = new RegExp( whitespace + "+", "g" ),
+	rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" +
+		whitespace + "+$", "g" ),
+
+	rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ),
+	rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace +
+		"*" ),
+	rdescend = new RegExp( whitespace + "|>" ),
+
+	rpseudo = new RegExp( pseudos ),
+	ridentifier = new RegExp( "^" + identifier + "$" ),
+
+	matchExpr = {
+		"ID": new RegExp( "^#(" + identifier + ")" ),
+		"CLASS": new RegExp( "^\\.(" + identifier + ")" ),
+		"TAG": new RegExp( "^(" + identifier + "|[*])" ),
+		"ATTR": new RegExp( "^" + attributes ),
+		"PSEUDO": new RegExp( "^" + pseudos ),
+		"CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" +
+			whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" +
+			whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ),
+		"bool": new RegExp( "^(?:" + booleans + ")$", "i" ),
+
+		// For use in libraries implementing .is()
+		// We use this for POS matching in `select`
+		"needsContext": new RegExp( "^" + whitespace +
+			"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace +
+			"*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" )
+	},
+
+	rhtml = /HTML$/i,
+	rinputs = /^(?:input|select|textarea|button)$/i,
+	rheader = /^h\d$/i,
+
+	rnative = /^[^{]+\{\s*\[native \w/,
+
+	// Easily-parseable/retrievable ID or TAG or CLASS selectors
+	rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,
+
+	rsibling = /[+~]/,
+
+	// CSS escapes
+	// http://www.w3.org/TR/CSS21/syndata.html#escaped-characters
+	runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ),
+	funescape = function( escape, nonHex ) {
+		var high = "0x" + escape.slice( 1 ) - 0x10000;
+
+		return nonHex ?
+
+			// Strip the backslash prefix from a non-hex escape sequence
+			nonHex :
+
+			// Replace a hexadecimal escape sequence with the encoded Unicode code point
+			// Support: IE <=11+
+			// For values outside the Basic Multilingual Plane (BMP), manually construct a
+			// surrogate pair
+			high < 0 ?
+				String.fromCharCode( high + 0x10000 ) :
+				String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
+	},
+
+	// CSS string/identifier serialization
+	// https://drafts.csswg.org/cssom/#common-serializing-idioms
+	rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,
+	fcssescape = function( ch, asCodePoint ) {
+		if ( asCodePoint ) {
+
+			// U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER
+			if ( ch === "\0" ) {
+				return "\uFFFD";
+			}
+
+			// Control characters and (dependent upon position) numbers get escaped as code points
+			return ch.slice( 0, -1 ) + "\\" +
+				ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " ";
+		}
+
+		// Other potentially-special ASCII characters get backslash-escaped
+		return "\\" + ch;
+	},
+
+	// Used for iframes
+	// See setDocument()
+	// Removing the function wrapper causes a "Permission Denied"
+	// error in IE
+	unloadHandler = function() {
+		setDocument();
+	},
+
+	inDisabledFieldset = addCombinator(
+		function( elem ) {
+			return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";
+		},
+		{ dir: "parentNode", next: "legend" }
+	);
+
+// Optimize for push.apply( _, NodeList )
+try {
+	push.apply(
+		( arr = slice.call( preferredDoc.childNodes ) ),
+		preferredDoc.childNodes
+	);
+
+	// Support: Android<4.0
+	// Detect silently failing push.apply
+	// eslint-disable-next-line no-unused-expressions
+	arr[ preferredDoc.childNodes.length ].nodeType;
+} catch ( e ) {
+	push = { apply: arr.length ?
+
+		// Leverage slice if possible
+		function( target, els ) {
+			pushNative.apply( target, slice.call( els ) );
+		} :
+
+		// Support: IE<9
+		// Otherwise append directly
+		function( target, els ) {
+			var j = target.length,
+				i = 0;
+
+			// Can't trust NodeList.length
+			while ( ( target[ j++ ] = els[ i++ ] ) ) {}
+			target.length = j - 1;
+		}
+	};
+}
+
+function Sizzle( selector, context, results, seed ) {
+	var m, i, elem, nid, match, groups, newSelector,
+		newContext = context && context.ownerDocument,
+
+		// nodeType defaults to 9, since context defaults to document
+		nodeType = context ? context.nodeType : 9;
+
+	results = results || [];
+
+	// Return early from calls with invalid selector or context
+	if ( typeof selector !== "string" || !selector ||
+		nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {
+
+		return results;
+	}
+
+	// Try to shortcut find operations (as opposed to filters) in HTML documents
+	if ( !seed ) {
+		setDocument( context );
+		context = context || document;
+
+		if ( documentIsHTML ) {
+
+			// If the selector is sufficiently simple, try using a "get*By*" DOM method
+			// (excepting DocumentFragment context, where the methods don't exist)
+			if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {
+
+				// ID selector
+				if ( ( m = match[ 1 ] ) ) {
+
+					// Document context
+					if ( nodeType === 9 ) {
+						if ( ( elem = context.getElementById( m ) ) ) {
+
+							// Support: IE, Opera, Webkit
+							// TODO: identify versions
+							// getElementById can match elements by name instead of ID
+							if ( elem.id === m ) {
+								results.push( elem );
+								return results;
+							}
+						} else {
+							return results;
+						}
+
+					// Element context
+					} else {
+
+						// Support: IE, Opera, Webkit
+						// TODO: identify versions
+						// getElementById can match elements by name instead of ID
+						if ( newContext && ( elem = newContext.getElementById( m ) ) &&
+							contains( context, elem ) &&
+							elem.id === m ) {
+
+							results.push( elem );
+							return results;
+						}
+					}
+
+				// Type selector
+				} else if ( match[ 2 ] ) {
+					push.apply( results, context.getElementsByTagName( selector ) );
+					return results;
+
+				// Class selector
+				} else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&
+					context.getElementsByClassName ) {
+
+					push.apply( results, context.getElementsByClassName( m ) );
+					return results;
+				}
+			}
+
+			// Take advantage of querySelectorAll
+			if ( support.qsa &&
+				!nonnativeSelectorCache[ selector + " " ] &&
+				( !rbuggyQSA || !rbuggyQSA.test( selector ) ) &&
+
+				// Support: IE 8 only
+				// Exclude object elements
+				( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) {
+
+				newSelector = selector;
+				newContext = context;
+
+				// qSA considers elements outside a scoping root when evaluating child or
+				// descendant combinators, which is not what we want.
+				// In such cases, we work around the behavior by prefixing every selector in the
+				// list with an ID selector referencing the scope context.
+				// The technique has to be used as well when a leading combinator is used
+				// as such selectors are not recognized by querySelectorAll.
+				// Thanks to Andrew Dupont for this technique.
+				if ( nodeType === 1 &&
+					( rdescend.test( selector ) || rcombinators.test( selector ) ) ) {
+
+					// Expand context for sibling selectors
+					newContext = rsibling.test( selector ) && testContext( context.parentNode ) ||
+						context;
+
+					// We can use :scope instead of the ID hack if the browser
+					// supports it & if we're not changing the context.
+					if ( newContext !== context || !support.scope ) {
+
+						// Capture the context ID, setting it first if necessary
+						if ( ( nid = context.getAttribute( "id" ) ) ) {
+							nid = nid.replace( rcssescape, fcssescape );
+						} else {
+							context.setAttribute( "id", ( nid = expando ) );
+						}
+					}
+
+					// Prefix every selector in the list
+					groups = tokenize( selector );
+					i = groups.length;
+					while ( i-- ) {
+						groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " +
+							toSelector( groups[ i ] );
+					}
+					newSelector = groups.join( "," );
+				}
+
+				try {
+					push.apply( results,
+						newContext.querySelectorAll( newSelector )
+					);
+					return results;
+				} catch ( qsaError ) {
+					nonnativeSelectorCache( selector, true );
+				} finally {
+					if ( nid === expando ) {
+						context.removeAttribute( "id" );
+					}
+				}
+			}
+		}
+	}
+
+	// All others
+	return select( selector.replace( rtrim, "$1" ), context, results, seed );
+}
+
+/**
+ * Create key-value caches of limited size
+ * @returns {function(string, object)} Returns the Object data after storing it on itself with
+ *	property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)
+ *	deleting the oldest entry
+ */
+function createCache() {
+	var keys = [];
+
+	function cache( key, value ) {
+
+		// Use (key + " ") to avoid collision with native prototype properties (see Issue #157)
+		if ( keys.push( key + " " ) > Expr.cacheLength ) {
+
+			// Only keep the most recent entries
+			delete cache[ keys.shift() ];
+		}
+		return ( cache[ key + " " ] = value );
+	}
+	return cache;
+}
+
+/**
+ * Mark a function for special use by Sizzle
+ * @param {Function} fn The function to mark
+ */
+function markFunction( fn ) {
+	fn[ expando ] = true;
+	return fn;
+}
+
+/**
+ * Support testing using an element
+ * @param {Function} fn Passed the created element and returns a boolean result
+ */
+function assert( fn ) {
+	var el = document.createElement( "fieldset" );
+
+	try {
+		return !!fn( el );
+	} catch ( e ) {
+		return false;
+	} finally {
+
+		// Remove from its parent by default
+		if ( el.parentNode ) {
+			el.parentNode.removeChild( el );
+		}
+
+		// release memory in IE
+		el = null;
+	}
+}
+
+/**
+ * Adds the same handler for all of the specified attrs
+ * @param {String} attrs Pipe-separated list of attributes
+ * @param {Function} handler The method that will be applied
+ */
+function addHandle( attrs, handler ) {
+	var arr = attrs.split( "|" ),
+		i = arr.length;
+
+	while ( i-- ) {
+		Expr.attrHandle[ arr[ i ] ] = handler;
+	}
+}
+
+/**
+ * Checks document order of two siblings
+ * @param {Element} a
+ * @param {Element} b
+ * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b
+ */
+function siblingCheck( a, b ) {
+	var cur = b && a,
+		diff = cur && a.nodeType === 1 && b.nodeType === 1 &&
+			a.sourceIndex - b.sourceIndex;
+
+	// Use IE sourceIndex if available on both nodes
+	if ( diff ) {
+		return diff;
+	}
+
+	// Check if b follows a
+	if ( cur ) {
+		while ( ( cur = cur.nextSibling ) ) {
+			if ( cur === b ) {
+				return -1;
+			}
+		}
+	}
+
+	return a ? 1 : -1;
+}
+
+/**
+ * Returns a function to use in pseudos for input types
+ * @param {String} type
+ */
+function createInputPseudo( type ) {
+	return function( elem ) {
+		var name = elem.nodeName.toLowerCase();
+		return name === "input" && elem.type === type;
+	};
+}
+
+/**
+ * Returns a function to use in pseudos for buttons
+ * @param {String} type
+ */
+function createButtonPseudo( type ) {
+	return function( elem ) {
+		var name = elem.nodeName.toLowerCase();
+		return ( name === "input" || name === "button" ) && elem.type === type;
+	};
+}
+
+/**
+ * Returns a function to use in pseudos for :enabled/:disabled
+ * @param {Boolean} disabled true for :disabled; false for :enabled
+ */
+function createDisabledPseudo( disabled ) {
+
+	// Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable
+	return function( elem ) {
+
+		// Only certain elements can match :enabled or :disabled
+		// https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled
+		// https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled
+		if ( "form" in elem ) {
+
+			// Check for inherited disabledness on relevant non-disabled elements:
+			// * listed form-associated elements in a disabled fieldset
+			//   https://html.spec.whatwg.org/multipage/forms.html#category-listed
+			//   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled
+			// * option elements in a disabled optgroup
+			//   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled
+			// All such elements have a "form" property.
+			if ( elem.parentNode && elem.disabled === false ) {
+
+				// Option elements defer to a parent optgroup if present
+				if ( "label" in elem ) {
+					if ( "label" in elem.parentNode ) {
+						return elem.parentNode.disabled === disabled;
+					} else {
+						return elem.disabled === disabled;
+					}
+				}
+
+				// Support: IE 6 - 11
+				// Use the isDisabled shortcut property to check for disabled fieldset ancestors
+				return elem.isDisabled === disabled ||
+
+					// Where there is no isDisabled, check manually
+					/* jshint -W018 */
+					elem.isDisabled !== !disabled &&
+					inDisabledFieldset( elem ) === disabled;
+			}
+
+			return elem.disabled === disabled;
+
+		// Try to winnow out elements that can't be disabled before trusting the disabled property.
+		// Some victims get caught in our net (label, legend, menu, track), but it shouldn't
+		// even exist on them, let alone have a boolean value.
+		} else if ( "label" in elem ) {
+			return elem.disabled === disabled;
+		}
+
+		// Remaining elements are neither :enabled nor :disabled
+		return false;
+	};
+}
+
+/**
+ * Returns a function to use in pseudos for positionals
+ * @param {Function} fn
+ */
+function createPositionalPseudo( fn ) {
+	return markFunction( function( argument ) {
+		argument = +argument;
+		return markFunction( function( seed, matches ) {
+			var j,
+				matchIndexes = fn( [], seed.length, argument ),
+				i = matchIndexes.length;
+
+			// Match elements found at the specified indexes
+			while ( i-- ) {
+				if ( seed[ ( j = matchIndexes[ i ] ) ] ) {
+					seed[ j ] = !( matches[ j ] = seed[ j ] );
+				}
+			}
+		} );
+	} );
+}
+
+/**
+ * Checks a node for validity as a Sizzle context
+ * @param {Element|Object=} context
+ * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value
+ */
+function testContext( context ) {
+	return context && typeof context.getElementsByTagName !== "undefined" && context;
+}
+
+// Expose support vars for convenience
+support = Sizzle.support = {};
+
+/**
+ * Detects XML nodes
+ * @param {Element|Object} elem An element or a document
+ * @returns {Boolean} True iff elem is a non-HTML XML node
+ */
+isXML = Sizzle.isXML = function( elem ) {
+	var namespace = elem.namespaceURI,
+		docElem = ( elem.ownerDocument || elem ).documentElement;
+
+	// Support: IE <=8
+	// Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
+	// https://bugs.jquery.com/ticket/4833
+	return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" );
+};
+
+/**
+ * Sets document-related variables once based on the current document
+ * @param {Element|Object} [doc] An element or document object to use to set the document
+ * @returns {Object} Returns the current document
+ */
+setDocument = Sizzle.setDocument = function( node ) {
+	var hasCompare, subWindow,
+		doc = node ? node.ownerDocument || node : preferredDoc;
+
+	// Return early if doc is invalid or already selected
+	// Support: IE 11+, Edge 17 - 18+
+	// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+	// two documents; shallow comparisons work.
+	// eslint-disable-next-line eqeqeq
+	if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) {
+		return document;
+	}
+
+	// Update global variables
+	document = doc;
+	docElem = document.documentElement;
+	documentIsHTML = !isXML( document );
+
+	// Support: IE 9 - 11+, Edge 12 - 18+
+	// Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)
+	// Support: IE 11+, Edge 17 - 18+
+	// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+	// two documents; shallow comparisons work.
+	// eslint-disable-next-line eqeqeq
+	if ( preferredDoc != document &&
+		( subWindow = document.defaultView ) && subWindow.top !== subWindow ) {
+
+		// Support: IE 11, Edge
+		if ( subWindow.addEventListener ) {
+			subWindow.addEventListener( "unload", unloadHandler, false );
+
+		// Support: IE 9 - 10 only
+		} else if ( subWindow.attachEvent ) {
+			subWindow.attachEvent( "onunload", unloadHandler );
+		}
+	}
+
+	// Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,
+	// Safari 4 - 5 only, Opera <=11.6 - 12.x only
+	// IE/Edge & older browsers don't support the :scope pseudo-class.
+	// Support: Safari 6.0 only
+	// Safari 6.0 supports :scope but it's an alias of :root there.
+	support.scope = assert( function( el ) {
+		docElem.appendChild( el ).appendChild( document.createElement( "div" ) );
+		return typeof el.querySelectorAll !== "undefined" &&
+			!el.querySelectorAll( ":scope fieldset div" ).length;
+	} );
+
+	/* Attributes
+	---------------------------------------------------------------------- */
+
+	// Support: IE<8
+	// Verify that getAttribute really returns attributes and not properties
+	// (excepting IE8 booleans)
+	support.attributes = assert( function( el ) {
+		el.className = "i";
+		return !el.getAttribute( "className" );
+	} );
+
+	/* getElement(s)By*
+	---------------------------------------------------------------------- */
+
+	// Check if getElementsByTagName("*") returns only elements
+	support.getElementsByTagName = assert( function( el ) {
+		el.appendChild( document.createComment( "" ) );
+		return !el.getElementsByTagName( "*" ).length;
+	} );
+
+	// Support: IE<9
+	support.getElementsByClassName = rnative.test( document.getElementsByClassName );
+
+	// Support: IE<10
+	// Check if getElementById returns elements by name
+	// The broken getElementById methods don't pick up programmatically-set names,
+	// so use a roundabout getElementsByName test
+	support.getById = assert( function( el ) {
+		docElem.appendChild( el ).id = expando;
+		return !document.getElementsByName || !document.getElementsByName( expando ).length;
+	} );
+
+	// ID filter and find
+	if ( support.getById ) {
+		Expr.filter[ "ID" ] = function( id ) {
+			var attrId = id.replace( runescape, funescape );
+			return function( elem ) {
+				return elem.getAttribute( "id" ) === attrId;
+			};
+		};
+		Expr.find[ "ID" ] = function( id, context ) {
+			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
+				var elem = context.getElementById( id );
+				return elem ? [ elem ] : [];
+			}
+		};
+	} else {
+		Expr.filter[ "ID" ] =  function( id ) {
+			var attrId = id.replace( runescape, funescape );
+			return function( elem ) {
+				var node = typeof elem.getAttributeNode !== "undefined" &&
+					elem.getAttributeNode( "id" );
+				return node && node.value === attrId;
+			};
+		};
+
+		// Support: IE 6 - 7 only
+		// getElementById is not reliable as a find shortcut
+		Expr.find[ "ID" ] = function( id, context ) {
+			if ( typeof context.getElementById !== "undefined" && documentIsHTML ) {
+				var node, i, elems,
+					elem = context.getElementById( id );
+
+				if ( elem ) {
+
+					// Verify the id attribute
+					node = elem.getAttributeNode( "id" );
+					if ( node && node.value === id ) {
+						return [ elem ];
+					}
+
+					// Fall back on getElementsByName
+					elems = context.getElementsByName( id );
+					i = 0;
+					while ( ( elem = elems[ i++ ] ) ) {
+						node = elem.getAttributeNode( "id" );
+						if ( node && node.value === id ) {
+							return [ elem ];
+						}
+					}
+				}
+
+				return [];
+			}
+		};
+	}
+
+	// Tag
+	Expr.find[ "TAG" ] = support.getElementsByTagName ?
+		function( tag, context ) {
+			if ( typeof context.getElementsByTagName !== "undefined" ) {
+				return context.getElementsByTagName( tag );
+
+			// DocumentFragment nodes don't have gEBTN
+			} else if ( support.qsa ) {
+				return context.querySelectorAll( tag );
+			}
+		} :
+
+		function( tag, context ) {
+			var elem,
+				tmp = [],
+				i = 0,
+
+				// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too
+				results = context.getElementsByTagName( tag );
+
+			// Filter out possible comments
+			if ( tag === "*" ) {
+				while ( ( elem = results[ i++ ] ) ) {
+					if ( elem.nodeType === 1 ) {
+						tmp.push( elem );
+					}
+				}
+
+				return tmp;
+			}
+			return results;
+		};
+
+	// Class
+	Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) {
+		if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) {
+			return context.getElementsByClassName( className );
+		}
+	};
+
+	/* QSA/matchesSelector
+	---------------------------------------------------------------------- */
+
+	// QSA and matchesSelector support
+
+	// matchesSelector(:active) reports false when true (IE9/Opera 11.5)
+	rbuggyMatches = [];
+
+	// qSa(:focus) reports false when true (Chrome 21)
+	// We allow this because of a bug in IE8/9 that throws an error
+	// whenever `document.activeElement` is accessed on an iframe
+	// So, we allow :focus to pass through QSA all the time to avoid the IE error
+	// See https://bugs.jquery.com/ticket/13378
+	rbuggyQSA = [];
+
+	if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) {
+
+		// Build QSA regex
+		// Regex strategy adopted from Diego Perini
+		assert( function( el ) {
+
+			var input;
+
+			// Select is set to empty string on purpose
+			// This is to test IE's treatment of not explicitly
+			// setting a boolean content attribute,
+			// since its presence should be enough
+			// https://bugs.jquery.com/ticket/12359
+			docElem.appendChild( el ).innerHTML = "<a id='" + expando + "'></a>" +
+				"<select id='" + expando + "-\r\\' msallowcapture=''>" +
+				"<option selected=''></option></select>";
+
+			// Support: IE8, Opera 11-12.16
+			// Nothing should be selected when empty strings follow ^= or $= or *=
+			// The test attribute must be unknown in Opera but "safe" for WinRT
+			// https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section
+			if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) {
+				rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" );
+			}
+
+			// Support: IE8
+			// Boolean attributes and "value" are not treated correctly
+			if ( !el.querySelectorAll( "[selected]" ).length ) {
+				rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" );
+			}
+
+			// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+
+			if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) {
+				rbuggyQSA.push( "~=" );
+			}
+
+			// Support: IE 11+, Edge 15 - 18+
+			// IE 11/Edge don't find elements on a `[name='']` query in some cases.
+			// Adding a temporary attribute to the document before the selection works
+			// around the issue.
+			// Interestingly, IE 10 & older don't seem to have the issue.
+			input = document.createElement( "input" );
+			input.setAttribute( "name", "" );
+			el.appendChild( input );
+			if ( !el.querySelectorAll( "[name='']" ).length ) {
+				rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" +
+					whitespace + "*(?:''|\"\")" );
+			}
+
+			// Webkit/Opera - :checked should return selected option elements
+			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+			// IE8 throws error here and will not see later tests
+			if ( !el.querySelectorAll( ":checked" ).length ) {
+				rbuggyQSA.push( ":checked" );
+			}
+
+			// Support: Safari 8+, iOS 8+
+			// https://bugs.webkit.org/show_bug.cgi?id=136851
+			// In-page `selector#id sibling-combinator selector` fails
+			if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) {
+				rbuggyQSA.push( ".#.+[+~]" );
+			}
+
+			// Support: Firefox <=3.6 - 5 only
+			// Old Firefox doesn't throw on a badly-escaped identifier.
+			el.querySelectorAll( "\\\f" );
+			rbuggyQSA.push( "[\\r\\n\\f]" );
+		} );
+
+		assert( function( el ) {
+			el.innerHTML = "<a href='' disabled='disabled'></a>" +
+				"<select disabled='disabled'><option/></select>";
+
+			// Support: Windows 8 Native Apps
+			// The type and name attributes are restricted during .innerHTML assignment
+			var input = document.createElement( "input" );
+			input.setAttribute( "type", "hidden" );
+			el.appendChild( input ).setAttribute( "name", "D" );
+
+			// Support: IE8
+			// Enforce case-sensitivity of name attribute
+			if ( el.querySelectorAll( "[name=d]" ).length ) {
+				rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" );
+			}
+
+			// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)
+			// IE8 throws error here and will not see later tests
+			if ( el.querySelectorAll( ":enabled" ).length !== 2 ) {
+				rbuggyQSA.push( ":enabled", ":disabled" );
+			}
+
+			// Support: IE9-11+
+			// IE's :disabled selector does not pick up the children of disabled fieldsets
+			docElem.appendChild( el ).disabled = true;
+			if ( el.querySelectorAll( ":disabled" ).length !== 2 ) {
+				rbuggyQSA.push( ":enabled", ":disabled" );
+			}
+
+			// Support: Opera 10 - 11 only
+			// Opera 10-11 does not throw on post-comma invalid pseudos
+			el.querySelectorAll( "*,:x" );
+			rbuggyQSA.push( ",.*:" );
+		} );
+	}
+
+	if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches ||
+		docElem.webkitMatchesSelector ||
+		docElem.mozMatchesSelector ||
+		docElem.oMatchesSelector ||
+		docElem.msMatchesSelector ) ) ) ) {
+
+		assert( function( el ) {
+
+			// Check to see if it's possible to do matchesSelector
+			// on a disconnected node (IE 9)
+			support.disconnectedMatch = matches.call( el, "*" );
+
+			// This should fail with an exception
+			// Gecko does not error, returns false instead
+			matches.call( el, "[s!='']:x" );
+			rbuggyMatches.push( "!=", pseudos );
+		} );
+	}
+
+	rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) );
+	rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) );
+
+	/* Contains
+	---------------------------------------------------------------------- */
+	hasCompare = rnative.test( docElem.compareDocumentPosition );
+
+	// Element contains another
+	// Purposefully self-exclusive
+	// As in, an element does not contain itself
+	contains = hasCompare || rnative.test( docElem.contains ) ?
+		function( a, b ) {
+			var adown = a.nodeType === 9 ? a.documentElement : a,
+				bup = b && b.parentNode;
+			return a === bup || !!( bup && bup.nodeType === 1 && (
+				adown.contains ?
+					adown.contains( bup ) :
+					a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16
+			) );
+		} :
+		function( a, b ) {
+			if ( b ) {
+				while ( ( b = b.parentNode ) ) {
+					if ( b === a ) {
+						return true;
+					}
+				}
+			}
+			return false;
+		};
+
+	/* Sorting
+	---------------------------------------------------------------------- */
+
+	// Document order sorting
+	sortOrder = hasCompare ?
+	function( a, b ) {
+
+		// Flag for duplicate removal
+		if ( a === b ) {
+			hasDuplicate = true;
+			return 0;
+		}
+
+		// Sort on method existence if only one input has compareDocumentPosition
+		var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;
+		if ( compare ) {
+			return compare;
+		}
+
+		// Calculate position if both inputs belong to the same document
+		// Support: IE 11+, Edge 17 - 18+
+		// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+		// two documents; shallow comparisons work.
+		// eslint-disable-next-line eqeqeq
+		compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ?
+			a.compareDocumentPosition( b ) :
+
+			// Otherwise we know they are disconnected
+			1;
+
+		// Disconnected nodes
+		if ( compare & 1 ||
+			( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) {
+
+			// Choose the first element that is related to our preferred document
+			// Support: IE 11+, Edge 17 - 18+
+			// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+			// two documents; shallow comparisons work.
+			// eslint-disable-next-line eqeqeq
+			if ( a == document || a.ownerDocument == preferredDoc &&
+				contains( preferredDoc, a ) ) {
+				return -1;
+			}
+
+			// Support: IE 11+, Edge 17 - 18+
+			// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+			// two documents; shallow comparisons work.
+			// eslint-disable-next-line eqeqeq
+			if ( b == document || b.ownerDocument == preferredDoc &&
+				contains( preferredDoc, b ) ) {
+				return 1;
+			}
+
+			// Maintain original order
+			return sortInput ?
+				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
+				0;
+		}
+
+		return compare & 4 ? -1 : 1;
+	} :
+	function( a, b ) {
+
+		// Exit early if the nodes are identical
+		if ( a === b ) {
+			hasDuplicate = true;
+			return 0;
+		}
+
+		var cur,
+			i = 0,
+			aup = a.parentNode,
+			bup = b.parentNode,
+			ap = [ a ],
+			bp = [ b ];
+
+		// Parentless nodes are either documents or disconnected
+		if ( !aup || !bup ) {
+
+			// Support: IE 11+, Edge 17 - 18+
+			// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+			// two documents; shallow comparisons work.
+			/* eslint-disable eqeqeq */
+			return a == document ? -1 :
+				b == document ? 1 :
+				/* eslint-enable eqeqeq */
+				aup ? -1 :
+				bup ? 1 :
+				sortInput ?
+				( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :
+				0;
+
+		// If the nodes are siblings, we can do a quick check
+		} else if ( aup === bup ) {
+			return siblingCheck( a, b );
+		}
+
+		// Otherwise we need full lists of their ancestors for comparison
+		cur = a;
+		while ( ( cur = cur.parentNode ) ) {
+			ap.unshift( cur );
+		}
+		cur = b;
+		while ( ( cur = cur.parentNode ) ) {
+			bp.unshift( cur );
+		}
+
+		// Walk down the tree looking for a discrepancy
+		while ( ap[ i ] === bp[ i ] ) {
+			i++;
+		}
+
+		return i ?
+
+			// Do a sibling check if the nodes have a common ancestor
+			siblingCheck( ap[ i ], bp[ i ] ) :
+
+			// Otherwise nodes in our document sort first
+			// Support: IE 11+, Edge 17 - 18+
+			// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+			// two documents; shallow comparisons work.
+			/* eslint-disable eqeqeq */
+			ap[ i ] == preferredDoc ? -1 :
+			bp[ i ] == preferredDoc ? 1 :
+			/* eslint-enable eqeqeq */
+			0;
+	};
+
+	return document;
+};
+
+Sizzle.matches = function( expr, elements ) {
+	return Sizzle( expr, null, null, elements );
+};
+
+Sizzle.matchesSelector = function( elem, expr ) {
+	setDocument( elem );
+
+	if ( support.matchesSelector && documentIsHTML &&
+		!nonnativeSelectorCache[ expr + " " ] &&
+		( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&
+		( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {
+
+		try {
+			var ret = matches.call( elem, expr );
+
+			// IE 9's matchesSelector returns false on disconnected nodes
+			if ( ret || support.disconnectedMatch ||
+
+				// As well, disconnected nodes are said to be in a document
+				// fragment in IE 9
+				elem.document && elem.document.nodeType !== 11 ) {
+				return ret;
+			}
+		} catch ( e ) {
+			nonnativeSelectorCache( expr, true );
+		}
+	}
+
+	return Sizzle( expr, document, null, [ elem ] ).length > 0;
+};
+
+Sizzle.contains = function( context, elem ) {
+
+	// Set document vars if needed
+	// Support: IE 11+, Edge 17 - 18+
+	// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+	// two documents; shallow comparisons work.
+	// eslint-disable-next-line eqeqeq
+	if ( ( context.ownerDocument || context ) != document ) {
+		setDocument( context );
+	}
+	return contains( context, elem );
+};
+
+Sizzle.attr = function( elem, name ) {
+
+	// Set document vars if needed
+	// Support: IE 11+, Edge 17 - 18+
+	// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+	// two documents; shallow comparisons work.
+	// eslint-disable-next-line eqeqeq
+	if ( ( elem.ownerDocument || elem ) != document ) {
+		setDocument( elem );
+	}
+
+	var fn = Expr.attrHandle[ name.toLowerCase() ],
+
+		// Don't get fooled by Object.prototype properties (jQuery #13807)
+		val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?
+			fn( elem, name, !documentIsHTML ) :
+			undefined;
+
+	return val !== undefined ?
+		val :
+		support.attributes || !documentIsHTML ?
+			elem.getAttribute( name ) :
+			( val = elem.getAttributeNode( name ) ) && val.specified ?
+				val.value :
+				null;
+};
+
+Sizzle.escape = function( sel ) {
+	return ( sel + "" ).replace( rcssescape, fcssescape );
+};
+
+Sizzle.error = function( msg ) {
+	throw new Error( "Syntax error, unrecognized expression: " + msg );
+};
+
+/**
+ * Document sorting and removing duplicates
+ * @param {ArrayLike} results
+ */
+Sizzle.uniqueSort = function( results ) {
+	var elem,
+		duplicates = [],
+		j = 0,
+		i = 0;
+
+	// Unless we *know* we can detect duplicates, assume their presence
+	hasDuplicate = !support.detectDuplicates;
+	sortInput = !support.sortStable && results.slice( 0 );
+	results.sort( sortOrder );
+
+	if ( hasDuplicate ) {
+		while ( ( elem = results[ i++ ] ) ) {
+			if ( elem === results[ i ] ) {
+				j = duplicates.push( i );
+			}
+		}
+		while ( j-- ) {
+			results.splice( duplicates[ j ], 1 );
+		}
+	}
+
+	// Clear input after sorting to release objects
+	// See https://github.com/jquery/sizzle/pull/225
+	sortInput = null;
+
+	return results;
+};
+
+/**
+ * Utility function for retrieving the text value of an array of DOM nodes
+ * @param {Array|Element} elem
+ */
+getText = Sizzle.getText = function( elem ) {
+	var node,
+		ret = "",
+		i = 0,
+		nodeType = elem.nodeType;
+
+	if ( !nodeType ) {
+
+		// If no nodeType, this is expected to be an array
+		while ( ( node = elem[ i++ ] ) ) {
+
+			// Do not traverse comment nodes
+			ret += getText( node );
+		}
+	} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {
+
+		// Use textContent for elements
+		// innerText usage removed for consistency of new lines (jQuery #11153)
+		if ( typeof elem.textContent === "string" ) {
+			return elem.textContent;
+		} else {
+
+			// Traverse its children
+			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+				ret += getText( elem );
+			}
+		}
+	} else if ( nodeType === 3 || nodeType === 4 ) {
+		return elem.nodeValue;
+	}
+
+	// Do not include comment or processing instruction nodes
+
+	return ret;
+};
+
+Expr = Sizzle.selectors = {
+
+	// Can be adjusted by the user
+	cacheLength: 50,
+
+	createPseudo: markFunction,
+
+	match: matchExpr,
+
+	attrHandle: {},
+
+	find: {},
+
+	relative: {
+		">": { dir: "parentNode", first: true },
+		" ": { dir: "parentNode" },
+		"+": { dir: "previousSibling", first: true },
+		"~": { dir: "previousSibling" }
+	},
+
+	preFilter: {
+		"ATTR": function( match ) {
+			match[ 1 ] = match[ 1 ].replace( runescape, funescape );
+
+			// Move the given value to match[3] whether quoted or unquoted
+			match[ 3 ] = ( match[ 3 ] || match[ 4 ] ||
+				match[ 5 ] || "" ).replace( runescape, funescape );
+
+			if ( match[ 2 ] === "~=" ) {
+				match[ 3 ] = " " + match[ 3 ] + " ";
+			}
+
+			return match.slice( 0, 4 );
+		},
+
+		"CHILD": function( match ) {
+
+			/* matches from matchExpr["CHILD"]
+				1 type (only|nth|...)
+				2 what (child|of-type)
+				3 argument (even|odd|\d*|\d*n([+-]\d+)?|...)
+				4 xn-component of xn+y argument ([+-]?\d*n|)
+				5 sign of xn-component
+				6 x of xn-component
+				7 sign of y-component
+				8 y of y-component
+			*/
+			match[ 1 ] = match[ 1 ].toLowerCase();
+
+			if ( match[ 1 ].slice( 0, 3 ) === "nth" ) {
+
+				// nth-* requires argument
+				if ( !match[ 3 ] ) {
+					Sizzle.error( match[ 0 ] );
+				}
+
+				// numeric x and y parameters for Expr.filter.CHILD
+				// remember that false/true cast respectively to 0/1
+				match[ 4 ] = +( match[ 4 ] ?
+					match[ 5 ] + ( match[ 6 ] || 1 ) :
+					2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) );
+				match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" );
+
+				// other types prohibit arguments
+			} else if ( match[ 3 ] ) {
+				Sizzle.error( match[ 0 ] );
+			}
+
+			return match;
+		},
+
+		"PSEUDO": function( match ) {
+			var excess,
+				unquoted = !match[ 6 ] && match[ 2 ];
+
+			if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) {
+				return null;
+			}
+
+			// Accept quoted arguments as-is
+			if ( match[ 3 ] ) {
+				match[ 2 ] = match[ 4 ] || match[ 5 ] || "";
+
+			// Strip excess characters from unquoted arguments
+			} else if ( unquoted && rpseudo.test( unquoted ) &&
+
+				// Get excess from tokenize (recursively)
+				( excess = tokenize( unquoted, true ) ) &&
+
+				// advance to the next closing parenthesis
+				( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) {
+
+				// excess is a negative index
+				match[ 0 ] = match[ 0 ].slice( 0, excess );
+				match[ 2 ] = unquoted.slice( 0, excess );
+			}
+
+			// Return only captures needed by the pseudo filter method (type and argument)
+			return match.slice( 0, 3 );
+		}
+	},
+
+	filter: {
+
+		"TAG": function( nodeNameSelector ) {
+			var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();
+			return nodeNameSelector === "*" ?
+				function() {
+					return true;
+				} :
+				function( elem ) {
+					return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;
+				};
+		},
+
+		"CLASS": function( className ) {
+			var pattern = classCache[ className + " " ];
+
+			return pattern ||
+				( pattern = new RegExp( "(^|" + whitespace +
+					")" + className + "(" + whitespace + "|$)" ) ) && classCache(
+						className, function( elem ) {
+							return pattern.test(
+								typeof elem.className === "string" && elem.className ||
+								typeof elem.getAttribute !== "undefined" &&
+									elem.getAttribute( "class" ) ||
+								""
+							);
+				} );
+		},
+
+		"ATTR": function( name, operator, check ) {
+			return function( elem ) {
+				var result = Sizzle.attr( elem, name );
+
+				if ( result == null ) {
+					return operator === "!=";
+				}
+				if ( !operator ) {
+					return true;
+				}
+
+				result += "";
+
+				/* eslint-disable max-len */
+
+				return operator === "=" ? result === check :
+					operator === "!=" ? result !== check :
+					operator === "^=" ? check && result.indexOf( check ) === 0 :
+					operator === "*=" ? check && result.indexOf( check ) > -1 :
+					operator === "$=" ? check && result.slice( -check.length ) === check :
+					operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 :
+					operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" :
+					false;
+				/* eslint-enable max-len */
+
+			};
+		},
+
+		"CHILD": function( type, what, _argument, first, last ) {
+			var simple = type.slice( 0, 3 ) !== "nth",
+				forward = type.slice( -4 ) !== "last",
+				ofType = what === "of-type";
+
+			return first === 1 && last === 0 ?
+
+				// Shortcut for :nth-*(n)
+				function( elem ) {
+					return !!elem.parentNode;
+				} :
+
+				function( elem, _context, xml ) {
+					var cache, uniqueCache, outerCache, node, nodeIndex, start,
+						dir = simple !== forward ? "nextSibling" : "previousSibling",
+						parent = elem.parentNode,
+						name = ofType && elem.nodeName.toLowerCase(),
+						useCache = !xml && !ofType,
+						diff = false;
+
+					if ( parent ) {
+
+						// :(first|last|only)-(child|of-type)
+						if ( simple ) {
+							while ( dir ) {
+								node = elem;
+								while ( ( node = node[ dir ] ) ) {
+									if ( ofType ?
+										node.nodeName.toLowerCase() === name :
+										node.nodeType === 1 ) {
+
+										return false;
+									}
+								}
+
+								// Reverse direction for :only-* (if we haven't yet done so)
+								start = dir = type === "only" && !start && "nextSibling";
+							}
+							return true;
+						}
+
+						start = [ forward ? parent.firstChild : parent.lastChild ];
+
+						// non-xml :nth-child(...) stores cache data on `parent`
+						if ( forward && useCache ) {
+
+							// Seek `elem` from a previously-cached index
+
+							// ...in a gzip-friendly way
+							node = parent;
+							outerCache = node[ expando ] || ( node[ expando ] = {} );
+
+							// Support: IE <9 only
+							// Defend against cloned attroperties (jQuery gh-1709)
+							uniqueCache = outerCache[ node.uniqueID ] ||
+								( outerCache[ node.uniqueID ] = {} );
+
+							cache = uniqueCache[ type ] || [];
+							nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
+							diff = nodeIndex && cache[ 2 ];
+							node = nodeIndex && parent.childNodes[ nodeIndex ];
+
+							while ( ( node = ++nodeIndex && node && node[ dir ] ||
+
+								// Fallback to seeking `elem` from the start
+								( diff = nodeIndex = 0 ) || start.pop() ) ) {
+
+								// When found, cache indexes on `parent` and break
+								if ( node.nodeType === 1 && ++diff && node === elem ) {
+									uniqueCache[ type ] = [ dirruns, nodeIndex, diff ];
+									break;
+								}
+							}
+
+						} else {
+
+							// Use previously-cached element index if available
+							if ( useCache ) {
+
+								// ...in a gzip-friendly way
+								node = elem;
+								outerCache = node[ expando ] || ( node[ expando ] = {} );
+
+								// Support: IE <9 only
+								// Defend against cloned attroperties (jQuery gh-1709)
+								uniqueCache = outerCache[ node.uniqueID ] ||
+									( outerCache[ node.uniqueID ] = {} );
+
+								cache = uniqueCache[ type ] || [];
+								nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];
+								diff = nodeIndex;
+							}
+
+							// xml :nth-child(...)
+							// or :nth-last-child(...) or :nth(-last)?-of-type(...)
+							if ( diff === false ) {
+
+								// Use the same loop as above to seek `elem` from the start
+								while ( ( node = ++nodeIndex && node && node[ dir ] ||
+									( diff = nodeIndex = 0 ) || start.pop() ) ) {
+
+									if ( ( ofType ?
+										node.nodeName.toLowerCase() === name :
+										node.nodeType === 1 ) &&
+										++diff ) {
+
+										// Cache the index of each encountered element
+										if ( useCache ) {
+											outerCache = node[ expando ] ||
+												( node[ expando ] = {} );
+
+											// Support: IE <9 only
+											// Defend against cloned attroperties (jQuery gh-1709)
+											uniqueCache = outerCache[ node.uniqueID ] ||
+												( outerCache[ node.uniqueID ] = {} );
+
+											uniqueCache[ type ] = [ dirruns, diff ];
+										}
+
+										if ( node === elem ) {
+											break;
+										}
+									}
+								}
+							}
+						}
+
+						// Incorporate the offset, then check against cycle size
+						diff -= last;
+						return diff === first || ( diff % first === 0 && diff / first >= 0 );
+					}
+				};
+		},
+
+		"PSEUDO": function( pseudo, argument ) {
+
+			// pseudo-class names are case-insensitive
+			// http://www.w3.org/TR/selectors/#pseudo-classes
+			// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters
+			// Remember that setFilters inherits from pseudos
+			var args,
+				fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||
+					Sizzle.error( "unsupported pseudo: " + pseudo );
+
+			// The user may use createPseudo to indicate that
+			// arguments are needed to create the filter function
+			// just as Sizzle does
+			if ( fn[ expando ] ) {
+				return fn( argument );
+			}
+
+			// But maintain support for old signatures
+			if ( fn.length > 1 ) {
+				args = [ pseudo, pseudo, "", argument ];
+				return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?
+					markFunction( function( seed, matches ) {
+						var idx,
+							matched = fn( seed, argument ),
+							i = matched.length;
+						while ( i-- ) {
+							idx = indexOf( seed, matched[ i ] );
+							seed[ idx ] = !( matches[ idx ] = matched[ i ] );
+						}
+					} ) :
+					function( elem ) {
+						return fn( elem, 0, args );
+					};
+			}
+
+			return fn;
+		}
+	},
+
+	pseudos: {
+
+		// Potentially complex pseudos
+		"not": markFunction( function( selector ) {
+
+			// Trim the selector passed to compile
+			// to avoid treating leading and trailing
+			// spaces as combinators
+			var input = [],
+				results = [],
+				matcher = compile( selector.replace( rtrim, "$1" ) );
+
+			return matcher[ expando ] ?
+				markFunction( function( seed, matches, _context, xml ) {
+					var elem,
+						unmatched = matcher( seed, null, xml, [] ),
+						i = seed.length;
+
+					// Match elements unmatched by `matcher`
+					while ( i-- ) {
+						if ( ( elem = unmatched[ i ] ) ) {
+							seed[ i ] = !( matches[ i ] = elem );
+						}
+					}
+				} ) :
+				function( elem, _context, xml ) {
+					input[ 0 ] = elem;
+					matcher( input, null, xml, results );
+
+					// Don't keep the element (issue #299)
+					input[ 0 ] = null;
+					return !results.pop();
+				};
+		} ),
+
+		"has": markFunction( function( selector ) {
+			return function( elem ) {
+				return Sizzle( selector, elem ).length > 0;
+			};
+		} ),
+
+		"contains": markFunction( function( text ) {
+			text = text.replace( runescape, funescape );
+			return function( elem ) {
+				return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1;
+			};
+		} ),
+
+		// "Whether an element is represented by a :lang() selector
+		// is based solely on the element's language value
+		// being equal to the identifier C,
+		// or beginning with the identifier C immediately followed by "-".
+		// The matching of C against the element's language value is performed case-insensitively.
+		// The identifier C does not have to be a valid language name."
+		// http://www.w3.org/TR/selectors/#lang-pseudo
+		"lang": markFunction( function( lang ) {
+
+			// lang value must be a valid identifier
+			if ( !ridentifier.test( lang || "" ) ) {
+				Sizzle.error( "unsupported lang: " + lang );
+			}
+			lang = lang.replace( runescape, funescape ).toLowerCase();
+			return function( elem ) {
+				var elemLang;
+				do {
+					if ( ( elemLang = documentIsHTML ?
+						elem.lang :
+						elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) {
+
+						elemLang = elemLang.toLowerCase();
+						return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0;
+					}
+				} while ( ( elem = elem.parentNode ) && elem.nodeType === 1 );
+				return false;
+			};
+		} ),
+
+		// Miscellaneous
+		"target": function( elem ) {
+			var hash = window.location && window.location.hash;
+			return hash && hash.slice( 1 ) === elem.id;
+		},
+
+		"root": function( elem ) {
+			return elem === docElem;
+		},
+
+		"focus": function( elem ) {
+			return elem === document.activeElement &&
+				( !document.hasFocus || document.hasFocus() ) &&
+				!!( elem.type || elem.href || ~elem.tabIndex );
+		},
+
+		// Boolean properties
+		"enabled": createDisabledPseudo( false ),
+		"disabled": createDisabledPseudo( true ),
+
+		"checked": function( elem ) {
+
+			// In CSS3, :checked should return both checked and selected elements
+			// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked
+			var nodeName = elem.nodeName.toLowerCase();
+			return ( nodeName === "input" && !!elem.checked ) ||
+				( nodeName === "option" && !!elem.selected );
+		},
+
+		"selected": function( elem ) {
+
+			// Accessing this property makes selected-by-default
+			// options in Safari work properly
+			if ( elem.parentNode ) {
+				// eslint-disable-next-line no-unused-expressions
+				elem.parentNode.selectedIndex;
+			}
+
+			return elem.selected === true;
+		},
+
+		// Contents
+		"empty": function( elem ) {
+
+			// http://www.w3.org/TR/selectors/#empty-pseudo
+			// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),
+			//   but not by others (comment: 8; processing instruction: 7; etc.)
+			// nodeType < 6 works because attributes (2) do not appear as children
+			for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {
+				if ( elem.nodeType < 6 ) {
+					return false;
+				}
+			}
+			return true;
+		},
+
+		"parent": function( elem ) {
+			return !Expr.pseudos[ "empty" ]( elem );
+		},
+
+		// Element/input types
+		"header": function( elem ) {
+			return rheader.test( elem.nodeName );
+		},
+
+		"input": function( elem ) {
+			return rinputs.test( elem.nodeName );
+		},
+
+		"button": function( elem ) {
+			var name = elem.nodeName.toLowerCase();
+			return name === "input" && elem.type === "button" || name === "button";
+		},
+
+		"text": function( elem ) {
+			var attr;
+			return elem.nodeName.toLowerCase() === "input" &&
+				elem.type === "text" &&
+
+				// Support: IE<8
+				// New HTML5 attribute values (e.g., "search") appear with elem.type === "text"
+				( ( attr = elem.getAttribute( "type" ) ) == null ||
+					attr.toLowerCase() === "text" );
+		},
+
+		// Position-in-collection
+		"first": createPositionalPseudo( function() {
+			return [ 0 ];
+		} ),
+
+		"last": createPositionalPseudo( function( _matchIndexes, length ) {
+			return [ length - 1 ];
+		} ),
+
+		"eq": createPositionalPseudo( function( _matchIndexes, length, argument ) {
+			return [ argument < 0 ? argument + length : argument ];
+		} ),
+
+		"even": createPositionalPseudo( function( matchIndexes, length ) {
+			var i = 0;
+			for ( ; i < length; i += 2 ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		} ),
+
+		"odd": createPositionalPseudo( function( matchIndexes, length ) {
+			var i = 1;
+			for ( ; i < length; i += 2 ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		} ),
+
+		"lt": createPositionalPseudo( function( matchIndexes, length, argument ) {
+			var i = argument < 0 ?
+				argument + length :
+				argument > length ?
+					length :
+					argument;
+			for ( ; --i >= 0; ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		} ),
+
+		"gt": createPositionalPseudo( function( matchIndexes, length, argument ) {
+			var i = argument < 0 ? argument + length : argument;
+			for ( ; ++i < length; ) {
+				matchIndexes.push( i );
+			}
+			return matchIndexes;
+		} )
+	}
+};
+
+Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ];
+
+// Add button/input type pseudos
+for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {
+	Expr.pseudos[ i ] = createInputPseudo( i );
+}
+for ( i in { submit: true, reset: true } ) {
+	Expr.pseudos[ i ] = createButtonPseudo( i );
+}
+
+// Easy API for creating new setFilters
+function setFilters() {}
+setFilters.prototype = Expr.filters = Expr.pseudos;
+Expr.setFilters = new setFilters();
+
+tokenize = Sizzle.tokenize = function( selector, parseOnly ) {
+	var matched, match, tokens, type,
+		soFar, groups, preFilters,
+		cached = tokenCache[ selector + " " ];
+
+	if ( cached ) {
+		return parseOnly ? 0 : cached.slice( 0 );
+	}
+
+	soFar = selector;
+	groups = [];
+	preFilters = Expr.preFilter;
+
+	while ( soFar ) {
+
+		// Comma and first run
+		if ( !matched || ( match = rcomma.exec( soFar ) ) ) {
+			if ( match ) {
+
+				// Don't consume trailing commas as valid
+				soFar = soFar.slice( match[ 0 ].length ) || soFar;
+			}
+			groups.push( ( tokens = [] ) );
+		}
+
+		matched = false;
+
+		// Combinators
+		if ( ( match = rcombinators.exec( soFar ) ) ) {
+			matched = match.shift();
+			tokens.push( {
+				value: matched,
+
+				// Cast descendant combinators to space
+				type: match[ 0 ].replace( rtrim, " " )
+			} );
+			soFar = soFar.slice( matched.length );
+		}
+
+		// Filters
+		for ( type in Expr.filter ) {
+			if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||
+				( match = preFilters[ type ]( match ) ) ) ) {
+				matched = match.shift();
+				tokens.push( {
+					value: matched,
+					type: type,
+					matches: match
+				} );
+				soFar = soFar.slice( matched.length );
+			}
+		}
+
+		if ( !matched ) {
+			break;
+		}
+	}
+
+	// Return the length of the invalid excess
+	// if we're just parsing
+	// Otherwise, throw an error or return tokens
+	return parseOnly ?
+		soFar.length :
+		soFar ?
+			Sizzle.error( selector ) :
+
+			// Cache the tokens
+			tokenCache( selector, groups ).slice( 0 );
+};
+
+function toSelector( tokens ) {
+	var i = 0,
+		len = tokens.length,
+		selector = "";
+	for ( ; i < len; i++ ) {
+		selector += tokens[ i ].value;
+	}
+	return selector;
+}
+
+function addCombinator( matcher, combinator, base ) {
+	var dir = combinator.dir,
+		skip = combinator.next,
+		key = skip || dir,
+		checkNonElements = base && key === "parentNode",
+		doneName = done++;
+
+	return combinator.first ?
+
+		// Check against closest ancestor/preceding element
+		function( elem, context, xml ) {
+			while ( ( elem = elem[ dir ] ) ) {
+				if ( elem.nodeType === 1 || checkNonElements ) {
+					return matcher( elem, context, xml );
+				}
+			}
+			return false;
+		} :
+
+		// Check against all ancestor/preceding elements
+		function( elem, context, xml ) {
+			var oldCache, uniqueCache, outerCache,
+				newCache = [ dirruns, doneName ];
+
+			// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching
+			if ( xml ) {
+				while ( ( elem = elem[ dir ] ) ) {
+					if ( elem.nodeType === 1 || checkNonElements ) {
+						if ( matcher( elem, context, xml ) ) {
+							return true;
+						}
+					}
+				}
+			} else {
+				while ( ( elem = elem[ dir ] ) ) {
+					if ( elem.nodeType === 1 || checkNonElements ) {
+						outerCache = elem[ expando ] || ( elem[ expando ] = {} );
+
+						// Support: IE <9 only
+						// Defend against cloned attroperties (jQuery gh-1709)
+						uniqueCache = outerCache[ elem.uniqueID ] ||
+							( outerCache[ elem.uniqueID ] = {} );
+
+						if ( skip && skip === elem.nodeName.toLowerCase() ) {
+							elem = elem[ dir ] || elem;
+						} else if ( ( oldCache = uniqueCache[ key ] ) &&
+							oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {
+
+							// Assign to newCache so results back-propagate to previous elements
+							return ( newCache[ 2 ] = oldCache[ 2 ] );
+						} else {
+
+							// Reuse newcache so results back-propagate to previous elements
+							uniqueCache[ key ] = newCache;
+
+							// A match means we're done; a fail means we have to keep checking
+							if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) {
+								return true;
+							}
+						}
+					}
+				}
+			}
+			return false;
+		};
+}
+
+function elementMatcher( matchers ) {
+	return matchers.length > 1 ?
+		function( elem, context, xml ) {
+			var i = matchers.length;
+			while ( i-- ) {
+				if ( !matchers[ i ]( elem, context, xml ) ) {
+					return false;
+				}
+			}
+			return true;
+		} :
+		matchers[ 0 ];
+}
+
+function multipleContexts( selector, contexts, results ) {
+	var i = 0,
+		len = contexts.length;
+	for ( ; i < len; i++ ) {
+		Sizzle( selector, contexts[ i ], results );
+	}
+	return results;
+}
+
+function condense( unmatched, map, filter, context, xml ) {
+	var elem,
+		newUnmatched = [],
+		i = 0,
+		len = unmatched.length,
+		mapped = map != null;
+
+	for ( ; i < len; i++ ) {
+		if ( ( elem = unmatched[ i ] ) ) {
+			if ( !filter || filter( elem, context, xml ) ) {
+				newUnmatched.push( elem );
+				if ( mapped ) {
+					map.push( i );
+				}
+			}
+		}
+	}
+
+	return newUnmatched;
+}
+
+function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {
+	if ( postFilter && !postFilter[ expando ] ) {
+		postFilter = setMatcher( postFilter );
+	}
+	if ( postFinder && !postFinder[ expando ] ) {
+		postFinder = setMatcher( postFinder, postSelector );
+	}
+	return markFunction( function( seed, results, context, xml ) {
+		var temp, i, elem,
+			preMap = [],
+			postMap = [],
+			preexisting = results.length,
+
+			// Get initial elements from seed or context
+			elems = seed || multipleContexts(
+				selector || "*",
+				context.nodeType ? [ context ] : context,
+				[]
+			),
+
+			// Prefilter to get matcher input, preserving a map for seed-results synchronization
+			matcherIn = preFilter && ( seed || !selector ) ?
+				condense( elems, preMap, preFilter, context, xml ) :
+				elems,
+
+			matcherOut = matcher ?
+
+				// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
+				postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
+
+					// ...intermediate processing is necessary
+					[] :
+
+					// ...otherwise use results directly
+					results :
+				matcherIn;
+
+		// Find primary matches
+		if ( matcher ) {
+			matcher( matcherIn, matcherOut, context, xml );
+		}
+
+		// Apply postFilter
+		if ( postFilter ) {
+			temp = condense( matcherOut, postMap );
+			postFilter( temp, [], context, xml );
+
+			// Un-match failing elements by moving them back to matcherIn
+			i = temp.length;
+			while ( i-- ) {
+				if ( ( elem = temp[ i ] ) ) {
+					matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem );
+				}
+			}
+		}
+
+		if ( seed ) {
+			if ( postFinder || preFilter ) {
+				if ( postFinder ) {
+
+					// Get the final matcherOut by condensing this intermediate into postFinder contexts
+					temp = [];
+					i = matcherOut.length;
+					while ( i-- ) {
+						if ( ( elem = matcherOut[ i ] ) ) {
+
+							// Restore matcherIn since elem is not yet a final match
+							temp.push( ( matcherIn[ i ] = elem ) );
+						}
+					}
+					postFinder( null, ( matcherOut = [] ), temp, xml );
+				}
+
+				// Move matched elements from seed to results to keep them synchronized
+				i = matcherOut.length;
+				while ( i-- ) {
+					if ( ( elem = matcherOut[ i ] ) &&
+						( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) {
+
+						seed[ temp ] = !( results[ temp ] = elem );
+					}
+				}
+			}
+
+		// Add elements to results, through postFinder if defined
+		} else {
+			matcherOut = condense(
+				matcherOut === results ?
+					matcherOut.splice( preexisting, matcherOut.length ) :
+					matcherOut
+			);
+			if ( postFinder ) {
+				postFinder( null, results, matcherOut, xml );
+			} else {
+				push.apply( results, matcherOut );
+			}
+		}
+	} );
+}
+
+function matcherFromTokens( tokens ) {
+	var checkContext, matcher, j,
+		len = tokens.length,
+		leadingRelative = Expr.relative[ tokens[ 0 ].type ],
+		implicitRelative = leadingRelative || Expr.relative[ " " ],
+		i = leadingRelative ? 1 : 0,
+
+		// The foundational matcher ensures that elements are reachable from top-level context(s)
+		matchContext = addCombinator( function( elem ) {
+			return elem === checkContext;
+		}, implicitRelative, true ),
+		matchAnyContext = addCombinator( function( elem ) {
+			return indexOf( checkContext, elem ) > -1;
+		}, implicitRelative, true ),
+		matchers = [ function( elem, context, xml ) {
+			var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (
+				( checkContext = context ).nodeType ?
+					matchContext( elem, context, xml ) :
+					matchAnyContext( elem, context, xml ) );
+
+			// Avoid hanging onto element (issue #299)
+			checkContext = null;
+			return ret;
+		} ];
+
+	for ( ; i < len; i++ ) {
+		if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) {
+			matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ];
+		} else {
+			matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches );
+
+			// Return special upon seeing a positional matcher
+			if ( matcher[ expando ] ) {
+
+				// Find the next relative operator (if any) for proper handling
+				j = ++i;
+				for ( ; j < len; j++ ) {
+					if ( Expr.relative[ tokens[ j ].type ] ) {
+						break;
+					}
+				}
+				return setMatcher(
+					i > 1 && elementMatcher( matchers ),
+					i > 1 && toSelector(
+
+					// If the preceding token was a descendant combinator, insert an implicit any-element `*`
+					tokens
+						.slice( 0, i - 1 )
+						.concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } )
+					).replace( rtrim, "$1" ),
+					matcher,
+					i < j && matcherFromTokens( tokens.slice( i, j ) ),
+					j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ),
+					j < len && toSelector( tokens )
+				);
+			}
+			matchers.push( matcher );
+		}
+	}
+
+	return elementMatcher( matchers );
+}
+
+function matcherFromGroupMatchers( elementMatchers, setMatchers ) {
+	var bySet = setMatchers.length > 0,
+		byElement = elementMatchers.length > 0,
+		superMatcher = function( seed, context, xml, results, outermost ) {
+			var elem, j, matcher,
+				matchedCount = 0,
+				i = "0",
+				unmatched = seed && [],
+				setMatched = [],
+				contextBackup = outermostContext,
+
+				// We must always have either seed elements or outermost context
+				elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ),
+
+				// Use integer dirruns iff this is the outermost matcher
+				dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ),
+				len = elems.length;
+
+			if ( outermost ) {
+
+				// Support: IE 11+, Edge 17 - 18+
+				// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+				// two documents; shallow comparisons work.
+				// eslint-disable-next-line eqeqeq
+				outermostContext = context == document || context || outermost;
+			}
+
+			// Add elements passing elementMatchers directly to results
+			// Support: IE<9, Safari
+			// Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id
+			for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) {
+				if ( byElement && elem ) {
+					j = 0;
+
+					// Support: IE 11+, Edge 17 - 18+
+					// IE/Edge sometimes throw a "Permission denied" error when strict-comparing
+					// two documents; shallow comparisons work.
+					// eslint-disable-next-line eqeqeq
+					if ( !context && elem.ownerDocument != document ) {
+						setDocument( elem );
+						xml = !documentIsHTML;
+					}
+					while ( ( matcher = elementMatchers[ j++ ] ) ) {
+						if ( matcher( elem, context || document, xml ) ) {
+							results.push( elem );
+							break;
+						}
+					}
+					if ( outermost ) {
+						dirruns = dirrunsUnique;
+					}
+				}
+
+				// Track unmatched elements for set filters
+				if ( bySet ) {
+
+					// They will have gone through all possible matchers
+					if ( ( elem = !matcher && elem ) ) {
+						matchedCount--;
+					}
+
+					// Lengthen the array for every element, matched or not
+					if ( seed ) {
+						unmatched.push( elem );
+					}
+				}
+			}
+
+			// `i` is now the count of elements visited above, and adding it to `matchedCount`
+			// makes the latter nonnegative.
+			matchedCount += i;
+
+			// Apply set filters to unmatched elements
+			// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`
+			// equals `i`), unless we didn't visit _any_ elements in the above loop because we have
+			// no element matchers and no seed.
+			// Incrementing an initially-string "0" `i` allows `i` to remain a string only in that
+			// case, which will result in a "00" `matchedCount` that differs from `i` but is also
+			// numerically zero.
+			if ( bySet && i !== matchedCount ) {
+				j = 0;
+				while ( ( matcher = setMatchers[ j++ ] ) ) {
+					matcher( unmatched, setMatched, context, xml );
+				}
+
+				if ( seed ) {
+
+					// Reintegrate element matches to eliminate the need for sorting
+					if ( matchedCount > 0 ) {
+						while ( i-- ) {
+							if ( !( unmatched[ i ] || setMatched[ i ] ) ) {
+								setMatched[ i ] = pop.call( results );
+							}
+						}
+					}
+
+					// Discard index placeholder values to get only actual matches
+					setMatched = condense( setMatched );
+				}
+
+				// Add matches to results
+				push.apply( results, setMatched );
+
+				// Seedless set matches succeeding multiple successful matchers stipulate sorting
+				if ( outermost && !seed && setMatched.length > 0 &&
+					( matchedCount + setMatchers.length ) > 1 ) {
+
+					Sizzle.uniqueSort( results );
+				}
+			}
+
+			// Override manipulation of globals by nested matchers
+			if ( outermost ) {
+				dirruns = dirrunsUnique;
+				outermostContext = contextBackup;
+			}
+
+			return unmatched;
+		};
+
+	return bySet ?
+		markFunction( superMatcher ) :
+		superMatcher;
+}
+
+compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {
+	var i,
+		setMatchers = [],
+		elementMatchers = [],
+		cached = compilerCache[ selector + " " ];
+
+	if ( !cached ) {
+
+		// Generate a function of recursive functions that can be used to check each element
+		if ( !match ) {
+			match = tokenize( selector );
+		}
+		i = match.length;
+		while ( i-- ) {
+			cached = matcherFromTokens( match[ i ] );
+			if ( cached[ expando ] ) {
+				setMatchers.push( cached );
+			} else {
+				elementMatchers.push( cached );
+			}
+		}
+
+		// Cache the compiled function
+		cached = compilerCache(
+			selector,
+			matcherFromGroupMatchers( elementMatchers, setMatchers )
+		);
+
+		// Save selector and tokenization
+		cached.selector = selector;
+	}
+	return cached;
+};
+
+/**
+ * A low-level selection function that works with Sizzle's compiled
+ *  selector functions
+ * @param {String|Function} selector A selector or a pre-compiled
+ *  selector function built with Sizzle.compile
+ * @param {Element} context
+ * @param {Array} [results]
+ * @param {Array} [seed] A set of elements to match against
+ */
+select = Sizzle.select = function( selector, context, results, seed ) {
+	var i, tokens, token, type, find,
+		compiled = typeof selector === "function" && selector,
+		match = !seed && tokenize( ( selector = compiled.selector || selector ) );
+
+	results = results || [];
+
+	// Try to minimize operations if there is only one selector in the list and no seed
+	// (the latter of which guarantees us context)
+	if ( match.length === 1 ) {
+
+		// Reduce context if the leading compound selector is an ID
+		tokens = match[ 0 ] = match[ 0 ].slice( 0 );
+		if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" &&
+			context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) {
+
+			context = ( Expr.find[ "ID" ]( token.matches[ 0 ]
+				.replace( runescape, funescape ), context ) || [] )[ 0 ];
+			if ( !context ) {
+				return results;
+
+			// Precompiled matchers will still verify ancestry, so step up a level
+			} else if ( compiled ) {
+				context = context.parentNode;
+			}
+
+			selector = selector.slice( tokens.shift().value.length );
+		}
+
+		// Fetch a seed set for right-to-left matching
+		i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length;
+		while ( i-- ) {
+			token = tokens[ i ];
+
+			// Abort if we hit a combinator
+			if ( Expr.relative[ ( type = token.type ) ] ) {
+				break;
+			}
+			if ( ( find = Expr.find[ type ] ) ) {
+
+				// Search, expanding context for leading sibling combinators
+				if ( ( seed = find(
+					token.matches[ 0 ].replace( runescape, funescape ),
+					rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) ||
+						context
+				) ) ) {
+
+					// If seed is empty or no tokens remain, we can return early
+					tokens.splice( i, 1 );
+					selector = seed.length && toSelector( tokens );
+					if ( !selector ) {
+						push.apply( results, seed );
+						return results;
+					}
+
+					break;
+				}
+			}
+		}
+	}
+
+	// Compile and execute a filtering function if one is not provided
+	// Provide `match` to avoid retokenization if we modified the selector above
+	( compiled || compile( selector, match ) )(
+		seed,
+		context,
+		!documentIsHTML,
+		results,
+		!context || rsibling.test( selector ) && testContext( context.parentNode ) || context
+	);
+	return results;
+};
+
+// One-time assignments
+
+// Sort stability
+support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando;
+
+// Support: Chrome 14-35+
+// Always assume duplicates if they aren't passed to the comparison function
+support.detectDuplicates = !!hasDuplicate;
+
+// Initialize against the default document
+setDocument();
+
+// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)
+// Detached nodes confoundingly follow *each other*
+support.sortDetached = assert( function( el ) {
+
+	// Should return 1, but returns 4 (following)
+	return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1;
+} );
+
+// Support: IE<8
+// Prevent attribute/property "interpolation"
+// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx
+if ( !assert( function( el ) {
+	el.innerHTML = "<a href='#'></a>";
+	return el.firstChild.getAttribute( "href" ) === "#";
+} ) ) {
+	addHandle( "type|href|height|width", function( elem, name, isXML ) {
+		if ( !isXML ) {
+			return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 );
+		}
+	} );
+}
+
+// Support: IE<9
+// Use defaultValue in place of getAttribute("value")
+if ( !support.attributes || !assert( function( el ) {
+	el.innerHTML = "<input/>";
+	el.firstChild.setAttribute( "value", "" );
+	return el.firstChild.getAttribute( "value" ) === "";
+} ) ) {
+	addHandle( "value", function( elem, _name, isXML ) {
+		if ( !isXML && elem.nodeName.toLowerCase() === "input" ) {
+			return elem.defaultValue;
+		}
+	} );
+}
+
+// Support: IE<9
+// Use getAttributeNode to fetch booleans when getAttribute lies
+if ( !assert( function( el ) {
+	return el.getAttribute( "disabled" ) == null;
+} ) ) {
+	addHandle( booleans, function( elem, name, isXML ) {
+		var val;
+		if ( !isXML ) {
+			return elem[ name ] === true ? name.toLowerCase() :
+				( val = elem.getAttributeNode( name ) ) && val.specified ?
+					val.value :
+					null;
+		}
+	} );
+}
+
+return Sizzle;
+
+} )( window );
+
+
+
+jQuery.find = Sizzle;
+jQuery.expr = Sizzle.selectors;
+
+// Deprecated
+jQuery.expr[ ":" ] = jQuery.expr.pseudos;
+jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;
+jQuery.text = Sizzle.getText;
+jQuery.isXMLDoc = Sizzle.isXML;
+jQuery.contains = Sizzle.contains;
+jQuery.escapeSelector = Sizzle.escape;
+
+
+
+
+var dir = function( elem, dir, until ) {
+	var matched = [],
+		truncate = until !== undefined;
+
+	while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {
+		if ( elem.nodeType === 1 ) {
+			if ( truncate && jQuery( elem ).is( until ) ) {
+				break;
+			}
+			matched.push( elem );
+		}
+	}
+	return matched;
+};
+
+
+var siblings = function( n, elem ) {
+	var matched = [];
+
+	for ( ; n; n = n.nextSibling ) {
+		if ( n.nodeType === 1 && n !== elem ) {
+			matched.push( n );
+		}
+	}
+
+	return matched;
+};
+
+
+var rneedsContext = jQuery.expr.match.needsContext;
+
+
+
+function nodeName( elem, name ) {
+
+  return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();
+
+};
+var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i );
+
+
+
+// Implement the identical functionality for filter and not
+function winnow( elements, qualifier, not ) {
+	if ( isFunction( qualifier ) ) {
+		return jQuery.grep( elements, function( elem, i ) {
+			return !!qualifier.call( elem, i, elem ) !== not;
+		} );
+	}
+
+	// Single element
+	if ( qualifier.nodeType ) {
+		return jQuery.grep( elements, function( elem ) {
+			return ( elem === qualifier ) !== not;
+		} );
+	}
+
+	// Arraylike of elements (jQuery, arguments, Array)
+	if ( typeof qualifier !== "string" ) {
+		return jQuery.grep( elements, function( elem ) {
+			return ( indexOf.call( qualifier, elem ) > -1 ) !== not;
+		} );
+	}
+
+	// Filtered directly for both simple and complex selectors
+	return jQuery.filter( qualifier, elements, not );
+}
+
+jQuery.filter = function( expr, elems, not ) {
+	var elem = elems[ 0 ];
+
+	if ( not ) {
+		expr = ":not(" + expr + ")";
+	}
+
+	if ( elems.length === 1 && elem.nodeType === 1 ) {
+		return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [];
+	}
+
+	return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {
+		return elem.nodeType === 1;
+	} ) );
+};
+
+jQuery.fn.extend( {
+	find: function( selector ) {
+		var i, ret,
+			len = this.length,
+			self = this;
+
+		if ( typeof selector !== "string" ) {
+			return this.pushStack( jQuery( selector ).filter( function() {
+				for ( i = 0; i < len; i++ ) {
+					if ( jQuery.contains( self[ i ], this ) ) {
+						return true;
+					}
+				}
+			} ) );
+		}
+
+		ret = this.pushStack( [] );
+
+		for ( i = 0; i < len; i++ ) {
+			jQuery.find( selector, self[ i ], ret );
+		}
+
+		return len > 1 ? jQuery.uniqueSort( ret ) : ret;
+	},
+	filter: function( selector ) {
+		return this.pushStack( winnow( this, selector || [], false ) );
+	},
+	not: function( selector ) {
+		return this.pushStack( winnow( this, selector || [], true ) );
+	},
+	is: function( selector ) {
+		return !!winnow(
+			this,
+
+			// If this is a positional/relative selector, check membership in the returned set
+			// so $("p:first").is("p:last") won't return true for a doc with two "p".
+			typeof selector === "string" && rneedsContext.test( selector ) ?
+				jQuery( selector ) :
+				selector || [],
+			false
+		).length;
+	}
+} );
+
+
+// Initialize a jQuery object
+
+
+// A central reference to the root jQuery(document)
+var rootjQuery,
+
+	// A simple way to check for HTML strings
+	// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)
+	// Strict HTML recognition (#11290: must start with <)
+	// Shortcut simple #id case for speed
+	rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,
+
+	init = jQuery.fn.init = function( selector, context, root ) {
+		var match, elem;
+
+		// HANDLE: $(""), $(null), $(undefined), $(false)
+		if ( !selector ) {
+			return this;
+		}
+
+		// Method init() accepts an alternate rootjQuery
+		// so migrate can support jQuery.sub (gh-2101)
+		root = root || rootjQuery;
+
+		// Handle HTML strings
+		if ( typeof selector === "string" ) {
+			if ( selector[ 0 ] === "<" &&
+				selector[ selector.length - 1 ] === ">" &&
+				selector.length >= 3 ) {
+
+				// Assume that strings that start and end with <> are HTML and skip the regex check
+				match = [ null, selector, null ];
+
+			} else {
+				match = rquickExpr.exec( selector );
+			}
+
+			// Match html or make sure no context is specified for #id
+			if ( match && ( match[ 1 ] || !context ) ) {
+
+				// HANDLE: $(html) -> $(array)
+				if ( match[ 1 ] ) {
+					context = context instanceof jQuery ? context[ 0 ] : context;
+
+					// Option to run scripts is true for back-compat
+					// Intentionally let the error be thrown if parseHTML is not present
+					jQuery.merge( this, jQuery.parseHTML(
+						match[ 1 ],
+						context && context.nodeType ? context.ownerDocument || context : document,
+						true
+					) );
+
+					// HANDLE: $(html, props)
+					if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
+						for ( match in context ) {
+
+							// Properties of context are called as methods if possible
+							if ( isFunction( this[ match ] ) ) {
+								this[ match ]( context[ match ] );
+
+							// ...and otherwise set as attributes
+							} else {
+								this.attr( match, context[ match ] );
+							}
+						}
+					}
+
+					return this;
+
+				// HANDLE: $(#id)
+				} else {
+					elem = document.getElementById( match[ 2 ] );
+
+					if ( elem ) {
+
+						// Inject the element directly into the jQuery object
+						this[ 0 ] = elem;
+						this.length = 1;
+					}
+					return this;
+				}
+
+			// HANDLE: $(expr, $(...))
+			} else if ( !context || context.jquery ) {
+				return ( context || root ).find( selector );
+
+			// HANDLE: $(expr, context)
+			// (which is just equivalent to: $(context).find(expr)
+			} else {
+				return this.constructor( context ).find( selector );
+			}
+
+		// HANDLE: $(DOMElement)
+		} else if ( selector.nodeType ) {
+			this[ 0 ] = selector;
+			this.length = 1;
+			return this;
+
+		// HANDLE: $(function)
+		// Shortcut for document ready
+		} else if ( isFunction( selector ) ) {
+			return root.ready !== undefined ?
+				root.ready( selector ) :
+
+				// Execute immediately if ready is not present
+				selector( jQuery );
+		}
+
+		return jQuery.makeArray( selector, this );
+	};
+
+// Give the init function the jQuery prototype for later instantiation
+init.prototype = jQuery.fn;
+
+// Initialize central reference
+rootjQuery = jQuery( document );
+
+
+var rparentsprev = /^(?:parents|prev(?:Until|All))/,
+
+	// Methods guaranteed to produce a unique set when starting from a unique set
+	guaranteedUnique = {
+		children: true,
+		contents: true,
+		next: true,
+		prev: true
+	};
+
+jQuery.fn.extend( {
+	has: function( target ) {
+		var targets = jQuery( target, this ),
+			l = targets.length;
+
+		return this.filter( function() {
+			var i = 0;
+			for ( ; i < l; i++ ) {
+				if ( jQuery.contains( this, targets[ i ] ) ) {
+					return true;
+				}
+			}
+		} );
+	},
+
+	closest: function( selectors, context ) {
+		var cur,
+			i = 0,
+			l = this.length,
+			matched = [],
+			targets = typeof selectors !== "string" && jQuery( selectors );
+
+		// Positional selectors never match, since there's no _selection_ context
+		if ( !rneedsContext.test( selectors ) ) {
+			for ( ; i < l; i++ ) {
+				for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {
+
+					// Always skip document fragments
+					if ( cur.nodeType < 11 && ( targets ?
+						targets.index( cur ) > -1 :
+
+						// Don't pass non-elements to Sizzle
+						cur.nodeType === 1 &&
+							jQuery.find.matchesSelector( cur, selectors ) ) ) {
+
+						matched.push( cur );
+						break;
+					}
+				}
+			}
+		}
+
+		return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );
+	},
+
+	// Determine the position of an element within the set
+	index: function( elem ) {
+
+		// No argument, return index in parent
+		if ( !elem ) {
+			return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;
+		}
+
+		// Index in selector
+		if ( typeof elem === "string" ) {
+			return indexOf.call( jQuery( elem ), this[ 0 ] );
+		}
+
+		// Locate the position of the desired element
+		return indexOf.call( this,
+
+			// If it receives a jQuery object, the first element is used
+			elem.jquery ? elem[ 0 ] : elem
+		);
+	},
+
+	add: function( selector, context ) {
+		return this.pushStack(
+			jQuery.uniqueSort(
+				jQuery.merge( this.get(), jQuery( selector, context ) )
+			)
+		);
+	},
+
+	addBack: function( selector ) {
+		return this.add( selector == null ?
+			this.prevObject : this.prevObject.filter( selector )
+		);
+	}
+} );
+
+function sibling( cur, dir ) {
+	while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}
+	return cur;
+}
+
+jQuery.each( {
+	parent: function( elem ) {
+		var parent = elem.parentNode;
+		return parent && parent.nodeType !== 11 ? parent : null;
+	},
+	parents: function( elem ) {
+		return dir( elem, "parentNode" );
+	},
+	parentsUntil: function( elem, _i, until ) {
+		return dir( elem, "parentNode", until );
+	},
+	next: function( elem ) {
+		return sibling( elem, "nextSibling" );
+	},
+	prev: function( elem ) {
+		return sibling( elem, "previousSibling" );
+	},
+	nextAll: function( elem ) {
+		return dir( elem, "nextSibling" );
+	},
+	prevAll: function( elem ) {
+		return dir( elem, "previousSibling" );
+	},
+	nextUntil: function( elem, _i, until ) {
+		return dir( elem, "nextSibling", until );
+	},
+	prevUntil: function( elem, _i, until ) {
+		return dir( elem, "previousSibling", until );
+	},
+	siblings: function( elem ) {
+		return siblings( ( elem.parentNode || {} ).firstChild, elem );
+	},
+	children: function( elem ) {
+		return siblings( elem.firstChild );
+	},
+	contents: function( elem ) {
+		if ( elem.contentDocument != null &&
+
+			// Support: IE 11+
+			// <object> elements with no `data` attribute has an object
+			// `contentDocument` with a `null` prototype.
+			getProto( elem.contentDocument ) ) {
+
+			return elem.contentDocument;
+		}
+
+		// Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only
+		// Treat the template element as a regular one in browsers that
+		// don't support it.
+		if ( nodeName( elem, "template" ) ) {
+			elem = elem.content || elem;
+		}
+
+		return jQuery.merge( [], elem.childNodes );
+	}
+}, function( name, fn ) {
+	jQuery.fn[ name ] = function( until, selector ) {
+		var matched = jQuery.map( this, fn, until );
+
+		if ( name.slice( -5 ) !== "Until" ) {
+			selector = until;
+		}
+
+		if ( selector && typeof selector === "string" ) {
+			matched = jQuery.filter( selector, matched );
+		}
+
+		if ( this.length > 1 ) {
+
+			// Remove duplicates
+			if ( !guaranteedUnique[ name ] ) {
+				jQuery.uniqueSort( matched );
+			}
+
+			// Reverse order for parents* and prev-derivatives
+			if ( rparentsprev.test( name ) ) {
+				matched.reverse();
+			}
+		}
+
+		return this.pushStack( matched );
+	};
+} );
+var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g );
+
+
+
+// Convert String-formatted options into Object-formatted ones
+function createOptions( options ) {
+	var object = {};
+	jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
+		object[ flag ] = true;
+	} );
+	return object;
+}
+
+/*
+ * Create a callback list using the following parameters:
+ *
+ *	options: an optional list of space-separated options that will change how
+ *			the callback list behaves or a more traditional option object
+ *
+ * By default a callback list will act like an event callback list and can be
+ * "fired" multiple times.
+ *
+ * Possible options:
+ *
+ *	once:			will ensure the callback list can only be fired once (like a Deferred)
+ *
+ *	memory:			will keep track of previous values and will call any callback added
+ *					after the list has been fired right away with the latest "memorized"
+ *					values (like a Deferred)
+ *
+ *	unique:			will ensure a callback can only be added once (no duplicate in the list)
+ *
+ *	stopOnFalse:	interrupt callings when a callback returns false
+ *
+ */
+jQuery.Callbacks = function( options ) {
+
+	// Convert options from String-formatted to Object-formatted if needed
+	// (we check in cache first)
+	options = typeof options === "string" ?
+		createOptions( options ) :
+		jQuery.extend( {}, options );
+
+	var // Flag to know if list is currently firing
+		firing,
+
+		// Last fire value for non-forgettable lists
+		memory,
+
+		// Flag to know if list was already fired
+		fired,
+
+		// Flag to prevent firing
+		locked,
+
+		// Actual callback list
+		list = [],
+
+		// Queue of execution data for repeatable lists
+		queue = [],
+
+		// Index of currently firing callback (modified by add/remove as needed)
+		firingIndex = -1,
+
+		// Fire callbacks
+		fire = function() {
+
+			// Enforce single-firing
+			locked = locked || options.once;
+
+			// Execute callbacks for all pending executions,
+			// respecting firingIndex overrides and runtime changes
+			fired = firing = true;
+			for ( ; queue.length; firingIndex = -1 ) {
+				memory = queue.shift();
+				while ( ++firingIndex < list.length ) {
+
+					// Run callback and check for early termination
+					if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&
+						options.stopOnFalse ) {
+
+						// Jump to end and forget the data so .add doesn't re-fire
+						firingIndex = list.length;
+						memory = false;
+					}
+				}
+			}
+
+			// Forget the data if we're done with it
+			if ( !options.memory ) {
+				memory = false;
+			}
+
+			firing = false;
+
+			// Clean up if we're done firing for good
+			if ( locked ) {
+
+				// Keep an empty list if we have data for future add calls
+				if ( memory ) {
+					list = [];
+
+				// Otherwise, this object is spent
+				} else {
+					list = "";
+				}
+			}
+		},
+
+		// Actual Callbacks object
+		self = {
+
+			// Add a callback or a collection of callbacks to the list
+			add: function() {
+				if ( list ) {
+
+					// If we have memory from a past run, we should fire after adding
+					if ( memory && !firing ) {
+						firingIndex = list.length - 1;
+						queue.push( memory );
+					}
+
+					( function add( args ) {
+						jQuery.each( args, function( _, arg ) {
+							if ( isFunction( arg ) ) {
+								if ( !options.unique || !self.has( arg ) ) {
+									list.push( arg );
+								}
+							} else if ( arg && arg.length && toType( arg ) !== "string" ) {
+
+								// Inspect recursively
+								add( arg );
+							}
+						} );
+					} )( arguments );
+
+					if ( memory && !firing ) {
+						fire();
+					}
+				}
+				return this;
+			},
+
+			// Remove a callback from the list
+			remove: function() {
+				jQuery.each( arguments, function( _, arg ) {
+					var index;
+					while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {
+						list.splice( index, 1 );
+
+						// Handle firing indexes
+						if ( index <= firingIndex ) {
+							firingIndex--;
+						}
+					}
+				} );
+				return this;
+			},
+
+			// Check if a given callback is in the list.
+			// If no argument is given, return whether or not list has callbacks attached.
+			has: function( fn ) {
+				return fn ?
+					jQuery.inArray( fn, list ) > -1 :
+					list.length > 0;
+			},
+
+			// Remove all callbacks from the list
+			empty: function() {
+				if ( list ) {
+					list = [];
+				}
+				return this;
+			},
+
+			// Disable .fire and .add
+			// Abort any current/pending executions
+			// Clear all callbacks and values
+			disable: function() {
+				locked = queue = [];
+				list = memory = "";
+				return this;
+			},
+			disabled: function() {
+				return !list;
+			},
+
+			// Disable .fire
+			// Also disable .add unless we have memory (since it would have no effect)
+			// Abort any pending executions
+			lock: function() {
+				locked = queue = [];
+				if ( !memory && !firing ) {
+					list = memory = "";
+				}
+				return this;
+			},
+			locked: function() {
+				return !!locked;
+			},
+
+			// Call all callbacks with the given context and arguments
+			fireWith: function( context, args ) {
+				if ( !locked ) {
+					args = args || [];
+					args = [ context, args.slice ? args.slice() : args ];
+					queue.push( args );
+					if ( !firing ) {
+						fire();
+					}
+				}
+				return this;
+			},
+
+			// Call all the callbacks with the given arguments
+			fire: function() {
+				self.fireWith( this, arguments );
+				return this;
+			},
+
+			// To know if the callbacks have already been called at least once
+			fired: function() {
+				return !!fired;
+			}
+		};
+
+	return self;
+};
+
+
+function Identity( v ) {
+	return v;
+}
+function Thrower( ex ) {
+	throw ex;
+}
+
+function adoptValue( value, resolve, reject, noValue ) {
+	var method;
+
+	try {
+
+		// Check for promise aspect first to privilege synchronous behavior
+		if ( value && isFunction( ( method = value.promise ) ) ) {
+			method.call( value ).done( resolve ).fail( reject );
+
+		// Other thenables
+		} else if ( value && isFunction( ( method = value.then ) ) ) {
+			method.call( value, resolve, reject );
+
+		// Other non-thenables
+		} else {
+
+			// Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:
+			// * false: [ value ].slice( 0 ) => resolve( value )
+			// * true: [ value ].slice( 1 ) => resolve()
+			resolve.apply( undefined, [ value ].slice( noValue ) );
+		}
+
+	// For Promises/A+, convert exceptions into rejections
+	// Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in
+	// Deferred#then to conditionally suppress rejection.
+	} catch ( value ) {
+
+		// Support: Android 4.0 only
+		// Strict mode functions invoked without .call/.apply get global-object context
+		reject.apply( undefined, [ value ] );
+	}
+}
+
+jQuery.extend( {
+
+	Deferred: function( func ) {
+		var tuples = [
+
+				// action, add listener, callbacks,
+				// ... .then handlers, argument index, [final state]
+				[ "notify", "progress", jQuery.Callbacks( "memory" ),
+					jQuery.Callbacks( "memory" ), 2 ],
+				[ "resolve", "done", jQuery.Callbacks( "once memory" ),
+					jQuery.Callbacks( "once memory" ), 0, "resolved" ],
+				[ "reject", "fail", jQuery.Callbacks( "once memory" ),
+					jQuery.Callbacks( "once memory" ), 1, "rejected" ]
+			],
+			state = "pending",
+			promise = {
+				state: function() {
+					return state;
+				},
+				always: function() {
+					deferred.done( arguments ).fail( arguments );
+					return this;
+				},
+				"catch": function( fn ) {
+					return promise.then( null, fn );
+				},
+
+				// Keep pipe for back-compat
+				pipe: function( /* fnDone, fnFail, fnProgress */ ) {
+					var fns = arguments;
+
+					return jQuery.Deferred( function( newDefer ) {
+						jQuery.each( tuples, function( _i, tuple ) {
+
+							// Map tuples (progress, done, fail) to arguments (done, fail, progress)
+							var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ];
+
+							// deferred.progress(function() { bind to newDefer or newDefer.notify })
+							// deferred.done(function() { bind to newDefer or newDefer.resolve })
+							// deferred.fail(function() { bind to newDefer or newDefer.reject })
+							deferred[ tuple[ 1 ] ]( function() {
+								var returned = fn && fn.apply( this, arguments );
+								if ( returned && isFunction( returned.promise ) ) {
+									returned.promise()
+										.progress( newDefer.notify )
+										.done( newDefer.resolve )
+										.fail( newDefer.reject );
+								} else {
+									newDefer[ tuple[ 0 ] + "With" ](
+										this,
+										fn ? [ returned ] : arguments
+									);
+								}
+							} );
+						} );
+						fns = null;
+					} ).promise();
+				},
+				then: function( onFulfilled, onRejected, onProgress ) {
+					var maxDepth = 0;
+					function resolve( depth, deferred, handler, special ) {
+						return function() {
+							var that = this,
+								args = arguments,
+								mightThrow = function() {
+									var returned, then;
+
+									// Support: Promises/A+ section 2.3.3.3.3
+									// https://promisesaplus.com/#point-59
+									// Ignore double-resolution attempts
+									if ( depth < maxDepth ) {
+										return;
+									}
+
+									returned = handler.apply( that, args );
+
+									// Support: Promises/A+ section 2.3.1
+									// https://promisesaplus.com/#point-48
+									if ( returned === deferred.promise() ) {
+										throw new TypeError( "Thenable self-resolution" );
+									}
+
+									// Support: Promises/A+ sections 2.3.3.1, 3.5
+									// https://promisesaplus.com/#point-54
+									// https://promisesaplus.com/#point-75
+									// Retrieve `then` only once
+									then = returned &&
+
+										// Support: Promises/A+ section 2.3.4
+										// https://promisesaplus.com/#point-64
+										// Only check objects and functions for thenability
+										( typeof returned === "object" ||
+											typeof returned === "function" ) &&
+										returned.then;
+
+									// Handle a returned thenable
+									if ( isFunction( then ) ) {
+
+										// Special processors (notify) just wait for resolution
+										if ( special ) {
+											then.call(
+												returned,
+												resolve( maxDepth, deferred, Identity, special ),
+												resolve( maxDepth, deferred, Thrower, special )
+											);
+
+										// Normal processors (resolve) also hook into progress
+										} else {
+
+											// ...and disregard older resolution values
+											maxDepth++;
+
+											then.call(
+												returned,
+												resolve( maxDepth, deferred, Identity, special ),
+												resolve( maxDepth, deferred, Thrower, special ),
+												resolve( maxDepth, deferred, Identity,
+													deferred.notifyWith )
+											);
+										}
+
+									// Handle all other returned values
+									} else {
+
+										// Only substitute handlers pass on context
+										// and multiple values (non-spec behavior)
+										if ( handler !== Identity ) {
+											that = undefined;
+											args = [ returned ];
+										}
+
+										// Process the value(s)
+										// Default process is resolve
+										( special || deferred.resolveWith )( that, args );
+									}
+								},
+
+								// Only normal processors (resolve) catch and reject exceptions
+								process = special ?
+									mightThrow :
+									function() {
+										try {
+											mightThrow();
+										} catch ( e ) {
+
+											if ( jQuery.Deferred.exceptionHook ) {
+												jQuery.Deferred.exceptionHook( e,
+													process.stackTrace );
+											}
+
+											// Support: Promises/A+ section 2.3.3.3.4.1
+											// https://promisesaplus.com/#point-61
+											// Ignore post-resolution exceptions
+											if ( depth + 1 >= maxDepth ) {
+
+												// Only substitute handlers pass on context
+												// and multiple values (non-spec behavior)
+												if ( handler !== Thrower ) {
+													that = undefined;
+													args = [ e ];
+												}
+
+												deferred.rejectWith( that, args );
+											}
+										}
+									};
+
+							// Support: Promises/A+ section 2.3.3.3.1
+							// https://promisesaplus.com/#point-57
+							// Re-resolve promises immediately to dodge false rejection from
+							// subsequent errors
+							if ( depth ) {
+								process();
+							} else {
+
+								// Call an optional hook to record the stack, in case of exception
+								// since it's otherwise lost when execution goes async
+								if ( jQuery.Deferred.getStackHook ) {
+									process.stackTrace = jQuery.Deferred.getStackHook();
+								}
+								window.setTimeout( process );
+							}
+						};
+					}
+
+					return jQuery.Deferred( function( newDefer ) {
+
+						// progress_handlers.add( ... )
+						tuples[ 0 ][ 3 ].add(
+							resolve(
+								0,
+								newDefer,
+								isFunction( onProgress ) ?
+									onProgress :
+									Identity,
+								newDefer.notifyWith
+							)
+						);
+
+						// fulfilled_handlers.add( ... )
+						tuples[ 1 ][ 3 ].add(
+							resolve(
+								0,
+								newDefer,
+								isFunction( onFulfilled ) ?
+									onFulfilled :
+									Identity
+							)
+						);
+
+						// rejected_handlers.add( ... )
+						tuples[ 2 ][ 3 ].add(
+							resolve(
+								0,
+								newDefer,
+								isFunction( onRejected ) ?
+									onRejected :
+									Thrower
+							)
+						);
+					} ).promise();
+				},
+
+				// Get a promise for this deferred
+				// If obj is provided, the promise aspect is added to the object
+				promise: function( obj ) {
+					return obj != null ? jQuery.extend( obj, promise ) : promise;
+				}
+			},
+			deferred = {};
+
+		// Add list-specific methods
+		jQuery.each( tuples, function( i, tuple ) {
+			var list = tuple[ 2 ],
+				stateString = tuple[ 5 ];
+
+			// promise.progress = list.add
+			// promise.done = list.add
+			// promise.fail = list.add
+			promise[ tuple[ 1 ] ] = list.add;
+
+			// Handle state
+			if ( stateString ) {
+				list.add(
+					function() {
+
+						// state = "resolved" (i.e., fulfilled)
+						// state = "rejected"
+						state = stateString;
+					},
+
+					// rejected_callbacks.disable
+					// fulfilled_callbacks.disable
+					tuples[ 3 - i ][ 2 ].disable,
+
+					// rejected_handlers.disable
+					// fulfilled_handlers.disable
+					tuples[ 3 - i ][ 3 ].disable,
+
+					// progress_callbacks.lock
+					tuples[ 0 ][ 2 ].lock,
+
+					// progress_handlers.lock
+					tuples[ 0 ][ 3 ].lock
+				);
+			}
+
+			// progress_handlers.fire
+			// fulfilled_handlers.fire
+			// rejected_handlers.fire
+			list.add( tuple[ 3 ].fire );
+
+			// deferred.notify = function() { deferred.notifyWith(...) }
+			// deferred.resolve = function() { deferred.resolveWith(...) }
+			// deferred.reject = function() { deferred.rejectWith(...) }
+			deferred[ tuple[ 0 ] ] = function() {
+				deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments );
+				return this;
+			};
+
+			// deferred.notifyWith = list.fireWith
+			// deferred.resolveWith = list.fireWith
+			// deferred.rejectWith = list.fireWith
+			deferred[ tuple[ 0 ] + "With" ] = list.fireWith;
+		} );
+
+		// Make the deferred a promise
+		promise.promise( deferred );
+
+		// Call given func if any
+		if ( func ) {
+			func.call( deferred, deferred );
+		}
+
+		// All done!
+		return deferred;
+	},
+
+	// Deferred helper
+	when: function( singleValue ) {
+		var
+
+			// count of uncompleted subordinates
+			remaining = arguments.length,
+
+			// count of unprocessed arguments
+			i = remaining,
+
+			// subordinate fulfillment data
+			resolveContexts = Array( i ),
+			resolveValues = slice.call( arguments ),
+
+			// the master Deferred
+			master = jQuery.Deferred(),
+
+			// subordinate callback factory
+			updateFunc = function( i ) {
+				return function( value ) {
+					resolveContexts[ i ] = this;
+					resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;
+					if ( !( --remaining ) ) {
+						master.resolveWith( resolveContexts, resolveValues );
+					}
+				};
+			};
+
+		// Single- and empty arguments are adopted like Promise.resolve
+		if ( remaining <= 1 ) {
+			adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject,
+				!remaining );
+
+			// Use .then() to unwrap secondary thenables (cf. gh-3000)
+			if ( master.state() === "pending" ||
+				isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) {
+
+				return master.then();
+			}
+		}
+
+		// Multiple arguments are aggregated like Promise.all array elements
+		while ( i-- ) {
+			adoptValue( resolveValues[ i ], updateFunc( i ), master.reject );
+		}
+
+		return master.promise();
+	}
+} );
+
+
+// These usually indicate a programmer mistake during development,
+// warn about them ASAP rather than swallowing them by default.
+var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
+
+jQuery.Deferred.exceptionHook = function( error, stack ) {
+
+	// Support: IE 8 - 9 only
+	// Console exists when dev tools are open, which can happen at any time
+	if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) {
+		window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack );
+	}
+};
+
+
+
+
+jQuery.readyException = function( error ) {
+	window.setTimeout( function() {
+		throw error;
+	} );
+};
+
+
+
+
+// The deferred used on DOM ready
+var readyList = jQuery.Deferred();
+
+jQuery.fn.ready = function( fn ) {
+
+	readyList
+		.then( fn )
+
+		// Wrap jQuery.readyException in a function so that the lookup
+		// happens at the time of error handling instead of callback
+		// registration.
+		.catch( function( error ) {
+			jQuery.readyException( error );
+		} );
+
+	return this;
+};
+
+jQuery.extend( {
+
+	// Is the DOM ready to be used? Set to true once it occurs.
+	isReady: false,
+
+	// A counter to track how many items to wait for before
+	// the ready event fires. See #6781
+	readyWait: 1,
+
+	// Handle when the DOM is ready
+	ready: function( wait ) {
+
+		// Abort if there are pending holds or we're already ready
+		if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {
+			return;
+		}
+
+		// Remember that the DOM is ready
+		jQuery.isReady = true;
+
+		// If a normal DOM Ready event fired, decrement, and wait if need be
+		if ( wait !== true && --jQuery.readyWait > 0 ) {
+			return;
+		}
+
+		// If there are functions bound, to execute
+		readyList.resolveWith( document, [ jQuery ] );
+	}
+} );
+
+jQuery.ready.then = readyList.then;
+
+// The ready event handler and self cleanup method
+function completed() {
+	document.removeEventListener( "DOMContentLoaded", completed );
+	window.removeEventListener( "load", completed );
+	jQuery.ready();
+}
+
+// Catch cases where $(document).ready() is called
+// after the browser event has already occurred.
+// Support: IE <=9 - 10 only
+// Older IE sometimes signals "interactive" too soon
+if ( document.readyState === "complete" ||
+	( document.readyState !== "loading" && !document.documentElement.doScroll ) ) {
+
+	// Handle it asynchronously to allow scripts the opportunity to delay ready
+	window.setTimeout( jQuery.ready );
+
+} else {
+
+	// Use the handy event callback
+	document.addEventListener( "DOMContentLoaded", completed );
+
+	// A fallback to window.onload, that will always work
+	window.addEventListener( "load", completed );
+}
+
+
+
+
+// Multifunctional method to get and set values of a collection
+// The value/s can optionally be executed if it's a function
+var access = function( elems, fn, key, value, chainable, emptyGet, raw ) {
+	var i = 0,
+		len = elems.length,
+		bulk = key == null;
+
+	// Sets many values
+	if ( toType( key ) === "object" ) {
+		chainable = true;
+		for ( i in key ) {
+			access( elems, fn, i, key[ i ], true, emptyGet, raw );
+		}
+
+	// Sets one value
+	} else if ( value !== undefined ) {
+		chainable = true;
+
+		if ( !isFunction( value ) ) {
+			raw = true;
+		}
+
+		if ( bulk ) {
+
+			// Bulk operations run against the entire set
+			if ( raw ) {
+				fn.call( elems, value );
+				fn = null;
+
+			// ...except when executing function values
+			} else {
+				bulk = fn;
+				fn = function( elem, _key, value ) {
+					return bulk.call( jQuery( elem ), value );
+				};
+			}
+		}
+
+		if ( fn ) {
+			for ( ; i < len; i++ ) {
+				fn(
+					elems[ i ], key, raw ?
+					value :
+					value.call( elems[ i ], i, fn( elems[ i ], key ) )
+				);
+			}
+		}
+	}
+
+	if ( chainable ) {
+		return elems;
+	}
+
+	// Gets
+	if ( bulk ) {
+		return fn.call( elems );
+	}
+
+	return len ? fn( elems[ 0 ], key ) : emptyGet;
+};
+
+
+// Matches dashed string for camelizing
+var rmsPrefix = /^-ms-/,
+	rdashAlpha = /-([a-z])/g;
+
+// Used by camelCase as callback to replace()
+function fcamelCase( _all, letter ) {
+	return letter.toUpperCase();
+}
+
+// Convert dashed to camelCase; used by the css and data modules
+// Support: IE <=9 - 11, Edge 12 - 15
+// Microsoft forgot to hump their vendor prefix (#9572)
+function camelCase( string ) {
+	return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase );
+}
+var acceptData = function( owner ) {
+
+	// Accepts only:
+	//  - Node
+	//    - Node.ELEMENT_NODE
+	//    - Node.DOCUMENT_NODE
+	//  - Object
+	//    - Any
+	return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );
+};
+
+
+
+
+function Data() {
+	this.expando = jQuery.expando + Data.uid++;
+}
+
+Data.uid = 1;
+
+Data.prototype = {
+
+	cache: function( owner ) {
+
+		// Check if the owner object already has a cache
+		var value = owner[ this.expando ];
+
+		// If not, create one
+		if ( !value ) {
+			value = {};
+
+			// We can accept data for non-element nodes in modern browsers,
+			// but we should not, see #8335.
+			// Always return an empty object.
+			if ( acceptData( owner ) ) {
+
+				// If it is a node unlikely to be stringify-ed or looped over
+				// use plain assignment
+				if ( owner.nodeType ) {
+					owner[ this.expando ] = value;
+
+				// Otherwise secure it in a non-enumerable property
+				// configurable must be true to allow the property to be
+				// deleted when data is removed
+				} else {
+					Object.defineProperty( owner, this.expando, {
+						value: value,
+						configurable: true
+					} );
+				}
+			}
+		}
+
+		return value;
+	},
+	set: function( owner, data, value ) {
+		var prop,
+			cache = this.cache( owner );
+
+		// Handle: [ owner, key, value ] args
+		// Always use camelCase key (gh-2257)
+		if ( typeof data === "string" ) {
+			cache[ camelCase( data ) ] = value;
+
+		// Handle: [ owner, { properties } ] args
+		} else {
+
+			// Copy the properties one-by-one to the cache object
+			for ( prop in data ) {
+				cache[ camelCase( prop ) ] = data[ prop ];
+			}
+		}
+		return cache;
+	},
+	get: function( owner, key ) {
+		return key === undefined ?
+			this.cache( owner ) :
+
+			// Always use camelCase key (gh-2257)
+			owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ];
+	},
+	access: function( owner, key, value ) {
+
+		// In cases where either:
+		//
+		//   1. No key was specified
+		//   2. A string key was specified, but no value provided
+		//
+		// Take the "read" path and allow the get method to determine
+		// which value to return, respectively either:
+		//
+		//   1. The entire cache object
+		//   2. The data stored at the key
+		//
+		if ( key === undefined ||
+				( ( key && typeof key === "string" ) && value === undefined ) ) {
+
+			return this.get( owner, key );
+		}
+
+		// When the key is not a string, or both a key and value
+		// are specified, set or extend (existing objects) with either:
+		//
+		//   1. An object of properties
+		//   2. A key and value
+		//
+		this.set( owner, key, value );
+
+		// Since the "set" path can have two possible entry points
+		// return the expected data based on which path was taken[*]
+		return value !== undefined ? value : key;
+	},
+	remove: function( owner, key ) {
+		var i,
+			cache = owner[ this.expando ];
+
+		if ( cache === undefined ) {
+			return;
+		}
+
+		if ( key !== undefined ) {
+
+			// Support array or space separated string of keys
+			if ( Array.isArray( key ) ) {
+
+				// If key is an array of keys...
+				// We always set camelCase keys, so remove that.
+				key = key.map( camelCase );
+			} else {
+				key = camelCase( key );
+
+				// If a key with the spaces exists, use it.
+				// Otherwise, create an array by matching non-whitespace
+				key = key in cache ?
+					[ key ] :
+					( key.match( rnothtmlwhite ) || [] );
+			}
+
+			i = key.length;
+
+			while ( i-- ) {
+				delete cache[ key[ i ] ];
+			}
+		}
+
+		// Remove the expando if there's no more data
+		if ( key === undefined || jQuery.isEmptyObject( cache ) ) {
+
+			// Support: Chrome <=35 - 45
+			// Webkit & Blink performance suffers when deleting properties
+			// from DOM nodes, so set to undefined instead
+			// https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)
+			if ( owner.nodeType ) {
+				owner[ this.expando ] = undefined;
+			} else {
+				delete owner[ this.expando ];
+			}
+		}
+	},
+	hasData: function( owner ) {
+		var cache = owner[ this.expando ];
+		return cache !== undefined && !jQuery.isEmptyObject( cache );
+	}
+};
+var dataPriv = new Data();
+
+var dataUser = new Data();
+
+
+
+//	Implementation Summary
+//
+//	1. Enforce API surface and semantic compatibility with 1.9.x branch
+//	2. Improve the module's maintainability by reducing the storage
+//		paths to a single mechanism.
+//	3. Use the same single mechanism to support "private" and "user" data.
+//	4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)
+//	5. Avoid exposing implementation details on user objects (eg. expando properties)
+//	6. Provide a clear path for implementation upgrade to WeakMap in 2014
+
+var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,
+	rmultiDash = /[A-Z]/g;
+
+function getData( data ) {
+	if ( data === "true" ) {
+		return true;
+	}
+
+	if ( data === "false" ) {
+		return false;
+	}
+
+	if ( data === "null" ) {
+		return null;
+	}
+
+	// Only convert to a number if it doesn't change the string
+	if ( data === +data + "" ) {
+		return +data;
+	}
+
+	if ( rbrace.test( data ) ) {
+		return JSON.parse( data );
+	}
+
+	return data;
+}
+
+function dataAttr( elem, key, data ) {
+	var name;
+
+	// If nothing was found internally, try to fetch any
+	// data from the HTML5 data-* attribute
+	if ( data === undefined && elem.nodeType === 1 ) {
+		name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase();
+		data = elem.getAttribute( name );
+
+		if ( typeof data === "string" ) {
+			try {
+				data = getData( data );
+			} catch ( e ) {}
+
+			// Make sure we set the data so it isn't changed later
+			dataUser.set( elem, key, data );
+		} else {
+			data = undefined;
+		}
+	}
+	return data;
+}
+
+jQuery.extend( {
+	hasData: function( elem ) {
+		return dataUser.hasData( elem ) || dataPriv.hasData( elem );
+	},
+
+	data: function( elem, name, data ) {
+		return dataUser.access( elem, name, data );
+	},
+
+	removeData: function( elem, name ) {
+		dataUser.remove( elem, name );
+	},
+
+	// TODO: Now that all calls to _data and _removeData have been replaced
+	// with direct calls to dataPriv methods, these can be deprecated.
+	_data: function( elem, name, data ) {
+		return dataPriv.access( elem, name, data );
+	},
+
+	_removeData: function( elem, name ) {
+		dataPriv.remove( elem, name );
+	}
+} );
+
+jQuery.fn.extend( {
+	data: function( key, value ) {
+		var i, name, data,
+			elem = this[ 0 ],
+			attrs = elem && elem.attributes;
+
+		// Gets all values
+		if ( key === undefined ) {
+			if ( this.length ) {
+				data = dataUser.get( elem );
+
+				if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) {
+					i = attrs.length;
+					while ( i-- ) {
+
+						// Support: IE 11 only
+						// The attrs elements can be null (#14894)
+						if ( attrs[ i ] ) {
+							name = attrs[ i ].name;
+							if ( name.indexOf( "data-" ) === 0 ) {
+								name = camelCase( name.slice( 5 ) );
+								dataAttr( elem, name, data[ name ] );
+							}
+						}
+					}
+					dataPriv.set( elem, "hasDataAttrs", true );
+				}
+			}
+
+			return data;
+		}
+
+		// Sets multiple values
+		if ( typeof key === "object" ) {
+			return this.each( function() {
+				dataUser.set( this, key );
+			} );
+		}
+
+		return access( this, function( value ) {
+			var data;
+
+			// The calling jQuery object (element matches) is not empty
+			// (and therefore has an element appears at this[ 0 ]) and the
+			// `value` parameter was not undefined. An empty jQuery object
+			// will result in `undefined` for elem = this[ 0 ] which will
+			// throw an exception if an attempt to read a data cache is made.
+			if ( elem && value === undefined ) {
+
+				// Attempt to get data from the cache
+				// The key will always be camelCased in Data
+				data = dataUser.get( elem, key );
+				if ( data !== undefined ) {
+					return data;
+				}
+
+				// Attempt to "discover" the data in
+				// HTML5 custom data-* attrs
+				data = dataAttr( elem, key );
+				if ( data !== undefined ) {
+					return data;
+				}
+
+				// We tried really hard, but the data doesn't exist.
+				return;
+			}
+
+			// Set the data...
+			this.each( function() {
+
+				// We always store the camelCased key
+				dataUser.set( this, key, value );
+			} );
+		}, null, value, arguments.length > 1, null, true );
+	},
+
+	removeData: function( key ) {
+		return this.each( function() {
+			dataUser.remove( this, key );
+		} );
+	}
+} );
+
+
+jQuery.extend( {
+	queue: function( elem, type, data ) {
+		var queue;
+
+		if ( elem ) {
+			type = ( type || "fx" ) + "queue";
+			queue = dataPriv.get( elem, type );
+
+			// Speed up dequeue by getting out quickly if this is just a lookup
+			if ( data ) {
+				if ( !queue || Array.isArray( data ) ) {
+					queue = dataPriv.access( elem, type, jQuery.makeArray( data ) );
+				} else {
+					queue.push( data );
+				}
+			}
+			return queue || [];
+		}
+	},
+
+	dequeue: function( elem, type ) {
+		type = type || "fx";
+
+		var queue = jQuery.queue( elem, type ),
+			startLength = queue.length,
+			fn = queue.shift(),
+			hooks = jQuery._queueHooks( elem, type ),
+			next = function() {
+				jQuery.dequeue( elem, type );
+			};
+
+		// If the fx queue is dequeued, always remove the progress sentinel
+		if ( fn === "inprogress" ) {
+			fn = queue.shift();
+			startLength--;
+		}
+
+		if ( fn ) {
+
+			// Add a progress sentinel to prevent the fx queue from being
+			// automatically dequeued
+			if ( type === "fx" ) {
+				queue.unshift( "inprogress" );
+			}
+
+			// Clear up the last queue stop function
+			delete hooks.stop;
+			fn.call( elem, next, hooks );
+		}
+
+		if ( !startLength && hooks ) {
+			hooks.empty.fire();
+		}
+	},
+
+	// Not public - generate a queueHooks object, or return the current one
+	_queueHooks: function( elem, type ) {
+		var key = type + "queueHooks";
+		return dataPriv.get( elem, key ) || dataPriv.access( elem, key, {
+			empty: jQuery.Callbacks( "once memory" ).add( function() {
+				dataPriv.remove( elem, [ type + "queue", key ] );
+			} )
+		} );
+	}
+} );
+
+jQuery.fn.extend( {
+	queue: function( type, data ) {
+		var setter = 2;
+
+		if ( typeof type !== "string" ) {
+			data = type;
+			type = "fx";
+			setter--;
+		}
+
+		if ( arguments.length < setter ) {
+			return jQuery.queue( this[ 0 ], type );
+		}
+
+		return data === undefined ?
+			this :
+			this.each( function() {
+				var queue = jQuery.queue( this, type, data );
+
+				// Ensure a hooks for this queue
+				jQuery._queueHooks( this, type );
+
+				if ( type === "fx" && queue[ 0 ] !== "inprogress" ) {
+					jQuery.dequeue( this, type );
+				}
+			} );
+	},
+	dequeue: function( type ) {
+		return this.each( function() {
+			jQuery.dequeue( this, type );
+		} );
+	},
+	clearQueue: function( type ) {
+		return this.queue( type || "fx", [] );
+	},
+
+	// Get a promise resolved when queues of a certain type
+	// are emptied (fx is the type by default)
+	promise: function( type, obj ) {
+		var tmp,
+			count = 1,
+			defer = jQuery.Deferred(),
+			elements = this,
+			i = this.length,
+			resolve = function() {
+				if ( !( --count ) ) {
+					defer.resolveWith( elements, [ elements ] );
+				}
+			};
+
+		if ( typeof type !== "string" ) {
+			obj = type;
+			type = undefined;
+		}
+		type = type || "fx";
+
+		while ( i-- ) {
+			tmp = dataPriv.get( elements[ i ], type + "queueHooks" );
+			if ( tmp && tmp.empty ) {
+				count++;
+				tmp.empty.add( resolve );
+			}
+		}
+		resolve();
+		return defer.promise( obj );
+	}
+} );
+var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
+
+var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
+
+
+var cssExpand = [ "Top", "Right", "Bottom", "Left" ];
+
+var documentElement = document.documentElement;
+
+
+
+	var isAttached = function( elem ) {
+			return jQuery.contains( elem.ownerDocument, elem );
+		},
+		composed = { composed: true };
+
+	// Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only
+	// Check attachment across shadow DOM boundaries when possible (gh-3504)
+	// Support: iOS 10.0-10.2 only
+	// Early iOS 10 versions support `attachShadow` but not `getRootNode`,
+	// leading to errors. We need to check for `getRootNode`.
+	if ( documentElement.getRootNode ) {
+		isAttached = function( elem ) {
+			return jQuery.contains( elem.ownerDocument, elem ) ||
+				elem.getRootNode( composed ) === elem.ownerDocument;
+		};
+	}
+var isHiddenWithinTree = function( elem, el ) {
+
+		// isHiddenWithinTree might be called from jQuery#filter function;
+		// in that case, element will be second argument
+		elem = el || elem;
+
+		// Inline style trumps all
+		return elem.style.display === "none" ||
+			elem.style.display === "" &&
+
+			// Otherwise, check computed style
+			// Support: Firefox <=43 - 45
+			// Disconnected elements can have computed display: none, so first confirm that elem is
+			// in the document.
+			isAttached( elem ) &&
+
+			jQuery.css( elem, "display" ) === "none";
+	};
+
+
+
+function adjustCSS( elem, prop, valueParts, tween ) {
+	var adjusted, scale,
+		maxIterations = 20,
+		currentValue = tween ?
+			function() {
+				return tween.cur();
+			} :
+			function() {
+				return jQuery.css( elem, prop, "" );
+			},
+		initial = currentValue(),
+		unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ),
+
+		// Starting value computation is required for potential unit mismatches
+		initialInUnit = elem.nodeType &&
+			( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) &&
+			rcssNum.exec( jQuery.css( elem, prop ) );
+
+	if ( initialInUnit && initialInUnit[ 3 ] !== unit ) {
+
+		// Support: Firefox <=54
+		// Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)
+		initial = initial / 2;
+
+		// Trust units reported by jQuery.css
+		unit = unit || initialInUnit[ 3 ];
+
+		// Iteratively approximate from a nonzero starting point
+		initialInUnit = +initial || 1;
+
+		while ( maxIterations-- ) {
+
+			// Evaluate and update our best guess (doubling guesses that zero out).
+			// Finish if the scale equals or crosses 1 (making the old*new product non-positive).
+			jQuery.style( elem, prop, initialInUnit + unit );
+			if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) {
+				maxIterations = 0;
+			}
+			initialInUnit = initialInUnit / scale;
+
+		}
+
+		initialInUnit = initialInUnit * 2;
+		jQuery.style( elem, prop, initialInUnit + unit );
+
+		// Make sure we update the tween properties later on
+		valueParts = valueParts || [];
+	}
+
+	if ( valueParts ) {
+		initialInUnit = +initialInUnit || +initial || 0;
+
+		// Apply relative offset (+=/-=) if specified
+		adjusted = valueParts[ 1 ] ?
+			initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :
+			+valueParts[ 2 ];
+		if ( tween ) {
+			tween.unit = unit;
+			tween.start = initialInUnit;
+			tween.end = adjusted;
+		}
+	}
+	return adjusted;
+}
+
+
+var defaultDisplayMap = {};
+
+function getDefaultDisplay( elem ) {
+	var temp,
+		doc = elem.ownerDocument,
+		nodeName = elem.nodeName,
+		display = defaultDisplayMap[ nodeName ];
+
+	if ( display ) {
+		return display;
+	}
+
+	temp = doc.body.appendChild( doc.createElement( nodeName ) );
+	display = jQuery.css( temp, "display" );
+
+	temp.parentNode.removeChild( temp );
+
+	if ( display === "none" ) {
+		display = "block";
+	}
+	defaultDisplayMap[ nodeName ] = display;
+
+	return display;
+}
+
+function showHide( elements, show ) {
+	var display, elem,
+		values = [],
+		index = 0,
+		length = elements.length;
+
+	// Determine new display value for elements that need to change
+	for ( ; index < length; index++ ) {
+		elem = elements[ index ];
+		if ( !elem.style ) {
+			continue;
+		}
+
+		display = elem.style.display;
+		if ( show ) {
+
+			// Since we force visibility upon cascade-hidden elements, an immediate (and slow)
+			// check is required in this first loop unless we have a nonempty display value (either
+			// inline or about-to-be-restored)
+			if ( display === "none" ) {
+				values[ index ] = dataPriv.get( elem, "display" ) || null;
+				if ( !values[ index ] ) {
+					elem.style.display = "";
+				}
+			}
+			if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) {
+				values[ index ] = getDefaultDisplay( elem );
+			}
+		} else {
+			if ( display !== "none" ) {
+				values[ index ] = "none";
+
+				// Remember what we're overwriting
+				dataPriv.set( elem, "display", display );
+			}
+		}
+	}
+
+	// Set the display of the elements in a second loop to avoid constant reflow
+	for ( index = 0; index < length; index++ ) {
+		if ( values[ index ] != null ) {
+			elements[ index ].style.display = values[ index ];
+		}
+	}
+
+	return elements;
+}
+
+jQuery.fn.extend( {
+	show: function() {
+		return showHide( this, true );
+	},
+	hide: function() {
+		return showHide( this );
+	},
+	toggle: function( state ) {
+		if ( typeof state === "boolean" ) {
+			return state ? this.show() : this.hide();
+		}
+
+		return this.each( function() {
+			if ( isHiddenWithinTree( this ) ) {
+				jQuery( this ).show();
+			} else {
+				jQuery( this ).hide();
+			}
+		} );
+	}
+} );
+var rcheckableType = ( /^(?:checkbox|radio)$/i );
+
+var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i );
+
+var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i );
+
+
+
+( function() {
+	var fragment = document.createDocumentFragment(),
+		div = fragment.appendChild( document.createElement( "div" ) ),
+		input = document.createElement( "input" );
+
+	// Support: Android 4.0 - 4.3 only
+	// Check state lost if the name is set (#11217)
+	// Support: Windows Web Apps (WWA)
+	// `name` and `type` must use .setAttribute for WWA (#14901)
+	input.setAttribute( "type", "radio" );
+	input.setAttribute( "checked", "checked" );
+	input.setAttribute( "name", "t" );
+
+	div.appendChild( input );
+
+	// Support: Android <=4.1 only
+	// Older WebKit doesn't clone checked state correctly in fragments
+	support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;
+
+	// Support: IE <=11 only
+	// Make sure textarea (and checkbox) defaultValue is properly cloned
+	div.innerHTML = "<textarea>x</textarea>";
+	support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
+
+	// Support: IE <=9 only
+	// IE <=9 replaces <option> tags with their contents when inserted outside of
+	// the select element.
+	div.innerHTML = "<option></option>";
+	support.option = !!div.lastChild;
+} )();
+
+
+// We have to close these tags to support XHTML (#13200)
+var wrapMap = {
+
+	// XHTML parsers do not magically insert elements in the
+	// same way that tag soup parsers do. So we cannot shorten
+	// this by omitting <tbody> or other required elements.
+	thead: [ 1, "<table>", "</table>" ],
+	col: [ 2, "<table><colgroup>", "</colgroup></table>" ],
+	tr: [ 2, "<table><tbody>", "</tbody></table>" ],
+	td: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ],
+
+	_default: [ 0, "", "" ]
+};
+
+wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;
+wrapMap.th = wrapMap.td;
+
+// Support: IE <=9 only
+if ( !support.option ) {
+	wrapMap.optgroup = wrapMap.option = [ 1, "<select multiple='multiple'>", "</select>" ];
+}
+
+
+function getAll( context, tag ) {
+
+	// Support: IE <=9 - 11 only
+	// Use typeof to avoid zero-argument method invocation on host objects (#15151)
+	var ret;
+
+	if ( typeof context.getElementsByTagName !== "undefined" ) {
+		ret = context.getElementsByTagName( tag || "*" );
+
+	} else if ( typeof context.querySelectorAll !== "undefined" ) {
+		ret = context.querySelectorAll( tag || "*" );
+
+	} else {
+		ret = [];
+	}
+
+	if ( tag === undefined || tag && nodeName( context, tag ) ) {
+		return jQuery.merge( [ context ], ret );
+	}
+
+	return ret;
+}
+
+
+// Mark scripts as having already been evaluated
+function setGlobalEval( elems, refElements ) {
+	var i = 0,
+		l = elems.length;
+
+	for ( ; i < l; i++ ) {
+		dataPriv.set(
+			elems[ i ],
+			"globalEval",
+			!refElements || dataPriv.get( refElements[ i ], "globalEval" )
+		);
+	}
+}
+
+
+var rhtml = /<|&#?\w+;/;
+
+function buildFragment( elems, context, scripts, selection, ignored ) {
+	var elem, tmp, tag, wrap, attached, j,
+		fragment = context.createDocumentFragment(),
+		nodes = [],
+		i = 0,
+		l = elems.length;
+
+	for ( ; i < l; i++ ) {
+		elem = elems[ i ];
+
+		if ( elem || elem === 0 ) {
+
+			// Add nodes directly
+			if ( toType( elem ) === "object" ) {
+
+				// Support: Android <=4.0 only, PhantomJS 1 only
+				// push.apply(_, arraylike) throws on ancient WebKit
+				jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
+
+			// Convert non-html into a text node
+			} else if ( !rhtml.test( elem ) ) {
+				nodes.push( context.createTextNode( elem ) );
+
+			// Convert html into DOM nodes
+			} else {
+				tmp = tmp || fragment.appendChild( context.createElement( "div" ) );
+
+				// Deserialize a standard representation
+				tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase();
+				wrap = wrapMap[ tag ] || wrapMap._default;
+				tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];
+
+				// Descend through wrappers to the right content
+				j = wrap[ 0 ];
+				while ( j-- ) {
+					tmp = tmp.lastChild;
+				}
+
+				// Support: Android <=4.0 only, PhantomJS 1 only
+				// push.apply(_, arraylike) throws on ancient WebKit
+				jQuery.merge( nodes, tmp.childNodes );
+
+				// Remember the top-level container
+				tmp = fragment.firstChild;
+
+				// Ensure the created nodes are orphaned (#12392)
+				tmp.textContent = "";
+			}
+		}
+	}
+
+	// Remove wrapper from fragment
+	fragment.textContent = "";
+
+	i = 0;
+	while ( ( elem = nodes[ i++ ] ) ) {
+
+		// Skip elements already in the context collection (trac-4087)
+		if ( selection && jQuery.inArray( elem, selection ) > -1 ) {
+			if ( ignored ) {
+				ignored.push( elem );
+			}
+			continue;
+		}
+
+		attached = isAttached( elem );
+
+		// Append to fragment
+		tmp = getAll( fragment.appendChild( elem ), "script" );
+
+		// Preserve script evaluation history
+		if ( attached ) {
+			setGlobalEval( tmp );
+		}
+
+		// Capture executables
+		if ( scripts ) {
+			j = 0;
+			while ( ( elem = tmp[ j++ ] ) ) {
+				if ( rscriptType.test( elem.type || "" ) ) {
+					scripts.push( elem );
+				}
+			}
+		}
+	}
+
+	return fragment;
+}
+
+
+var
+	rkeyEvent = /^key/,
+	rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,
+	rtypenamespace = /^([^.]*)(?:\.(.+)|)/;
+
+function returnTrue() {
+	return true;
+}
+
+function returnFalse() {
+	return false;
+}
+
+// Support: IE <=9 - 11+
+// focus() and blur() are asynchronous, except when they are no-op.
+// So expect focus to be synchronous when the element is already active,
+// and blur to be synchronous when the element is not already active.
+// (focus and blur are always synchronous in other supported browsers,
+// this just defines when we can count on it).
+function expectSync( elem, type ) {
+	return ( elem === safeActiveElement() ) === ( type === "focus" );
+}
+
+// Support: IE <=9 only
+// Accessing document.activeElement can throw unexpectedly
+// https://bugs.jquery.com/ticket/13393
+function safeActiveElement() {
+	try {
+		return document.activeElement;
+	} catch ( err ) { }
+}
+
+function on( elem, types, selector, data, fn, one ) {
+	var origFn, type;
+
+	// Types can be a map of types/handlers
+	if ( typeof types === "object" ) {
+
+		// ( types-Object, selector, data )
+		if ( typeof selector !== "string" ) {
+
+			// ( types-Object, data )
+			data = data || selector;
+			selector = undefined;
+		}
+		for ( type in types ) {
+			on( elem, type, selector, data, types[ type ], one );
+		}
+		return elem;
+	}
+
+	if ( data == null && fn == null ) {
+
+		// ( types, fn )
+		fn = selector;
+		data = selector = undefined;
+	} else if ( fn == null ) {
+		if ( typeof selector === "string" ) {
+
+			// ( types, selector, fn )
+			fn = data;
+			data = undefined;
+		} else {
+
+			// ( types, data, fn )
+			fn = data;
+			data = selector;
+			selector = undefined;
+		}
+	}
+	if ( fn === false ) {
+		fn = returnFalse;
+	} else if ( !fn ) {
+		return elem;
+	}
+
+	if ( one === 1 ) {
+		origFn = fn;
+		fn = function( event ) {
+
+			// Can use an empty set, since event contains the info
+			jQuery().off( event );
+			return origFn.apply( this, arguments );
+		};
+
+		// Use same guid so caller can remove using origFn
+		fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );
+	}
+	return elem.each( function() {
+		jQuery.event.add( this, types, fn, data, selector );
+	} );
+}
+
+/*
+ * Helper functions for managing events -- not part of the public interface.
+ * Props to Dean Edwards' addEvent library for many of the ideas.
+ */
+jQuery.event = {
+
+	global: {},
+
+	add: function( elem, types, handler, data, selector ) {
+
+		var handleObjIn, eventHandle, tmp,
+			events, t, handleObj,
+			special, handlers, type, namespaces, origType,
+			elemData = dataPriv.get( elem );
+
+		// Only attach events to objects that accept data
+		if ( !acceptData( elem ) ) {
+			return;
+		}
+
+		// Caller can pass in an object of custom data in lieu of the handler
+		if ( handler.handler ) {
+			handleObjIn = handler;
+			handler = handleObjIn.handler;
+			selector = handleObjIn.selector;
+		}
+
+		// Ensure that invalid selectors throw exceptions at attach time
+		// Evaluate against documentElement in case elem is a non-element node (e.g., document)
+		if ( selector ) {
+			jQuery.find.matchesSelector( documentElement, selector );
+		}
+
+		// Make sure that the handler has a unique ID, used to find/remove it later
+		if ( !handler.guid ) {
+			handler.guid = jQuery.guid++;
+		}
+
+		// Init the element's event structure and main handler, if this is the first
+		if ( !( events = elemData.events ) ) {
+			events = elemData.events = Object.create( null );
+		}
+		if ( !( eventHandle = elemData.handle ) ) {
+			eventHandle = elemData.handle = function( e ) {
+
+				// Discard the second event of a jQuery.event.trigger() and
+				// when an event is called after a page has unloaded
+				return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ?
+					jQuery.event.dispatch.apply( elem, arguments ) : undefined;
+			};
+		}
+
+		// Handle multiple events separated by a space
+		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
+		t = types.length;
+		while ( t-- ) {
+			tmp = rtypenamespace.exec( types[ t ] ) || [];
+			type = origType = tmp[ 1 ];
+			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
+
+			// There *must* be a type, no attaching namespace-only handlers
+			if ( !type ) {
+				continue;
+			}
+
+			// If event changes its type, use the special event handlers for the changed type
+			special = jQuery.event.special[ type ] || {};
+
+			// If selector defined, determine special event api type, otherwise given type
+			type = ( selector ? special.delegateType : special.bindType ) || type;
+
+			// Update special based on newly reset type
+			special = jQuery.event.special[ type ] || {};
+
+			// handleObj is passed to all event handlers
+			handleObj = jQuery.extend( {
+				type: type,
+				origType: origType,
+				data: data,
+				handler: handler,
+				guid: handler.guid,
+				selector: selector,
+				needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
+				namespace: namespaces.join( "." )
+			}, handleObjIn );
+
+			// Init the event handler queue if we're the first
+			if ( !( handlers = events[ type ] ) ) {
+				handlers = events[ type ] = [];
+				handlers.delegateCount = 0;
+
+				// Only use addEventListener if the special events handler returns false
+				if ( !special.setup ||
+					special.setup.call( elem, data, namespaces, eventHandle ) === false ) {
+
+					if ( elem.addEventListener ) {
+						elem.addEventListener( type, eventHandle );
+					}
+				}
+			}
+
+			if ( special.add ) {
+				special.add.call( elem, handleObj );
+
+				if ( !handleObj.handler.guid ) {
+					handleObj.handler.guid = handler.guid;
+				}
+			}
+
+			// Add to the element's handler list, delegates in front
+			if ( selector ) {
+				handlers.splice( handlers.delegateCount++, 0, handleObj );
+			} else {
+				handlers.push( handleObj );
+			}
+
+			// Keep track of which events have ever been used, for event optimization
+			jQuery.event.global[ type ] = true;
+		}
+
+	},
+
+	// Detach an event or set of events from an element
+	remove: function( elem, types, handler, selector, mappedTypes ) {
+
+		var j, origCount, tmp,
+			events, t, handleObj,
+			special, handlers, type, namespaces, origType,
+			elemData = dataPriv.hasData( elem ) && dataPriv.get( elem );
+
+		if ( !elemData || !( events = elemData.events ) ) {
+			return;
+		}
+
+		// Once for each type.namespace in types; type may be omitted
+		types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
+		t = types.length;
+		while ( t-- ) {
+			tmp = rtypenamespace.exec( types[ t ] ) || [];
+			type = origType = tmp[ 1 ];
+			namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort();
+
+			// Unbind all events (on this namespace, if provided) for the element
+			if ( !type ) {
+				for ( type in events ) {
+					jQuery.event.remove( elem, type + types[ t ], handler, selector, true );
+				}
+				continue;
+			}
+
+			special = jQuery.event.special[ type ] || {};
+			type = ( selector ? special.delegateType : special.bindType ) || type;
+			handlers = events[ type ] || [];
+			tmp = tmp[ 2 ] &&
+				new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" );
+
+			// Remove matching events
+			origCount = j = handlers.length;
+			while ( j-- ) {
+				handleObj = handlers[ j ];
+
+				if ( ( mappedTypes || origType === handleObj.origType ) &&
+					( !handler || handler.guid === handleObj.guid ) &&
+					( !tmp || tmp.test( handleObj.namespace ) ) &&
+					( !selector || selector === handleObj.selector ||
+						selector === "**" && handleObj.selector ) ) {
+					handlers.splice( j, 1 );
+
+					if ( handleObj.selector ) {
+						handlers.delegateCount--;
+					}
+					if ( special.remove ) {
+						special.remove.call( elem, handleObj );
+					}
+				}
+			}
+
+			// Remove generic event handler if we removed something and no more handlers exist
+			// (avoids potential for endless recursion during removal of special event handlers)
+			if ( origCount && !handlers.length ) {
+				if ( !special.teardown ||
+					special.teardown.call( elem, namespaces, elemData.handle ) === false ) {
+
+					jQuery.removeEvent( elem, type, elemData.handle );
+				}
+
+				delete events[ type ];
+			}
+		}
+
+		// Remove data and the expando if it's no longer used
+		if ( jQuery.isEmptyObject( events ) ) {
+			dataPriv.remove( elem, "handle events" );
+		}
+	},
+
+	dispatch: function( nativeEvent ) {
+
+		var i, j, ret, matched, handleObj, handlerQueue,
+			args = new Array( arguments.length ),
+
+			// Make a writable jQuery.Event from the native event object
+			event = jQuery.event.fix( nativeEvent ),
+
+			handlers = (
+					dataPriv.get( this, "events" ) || Object.create( null )
+				)[ event.type ] || [],
+			special = jQuery.event.special[ event.type ] || {};
+
+		// Use the fix-ed jQuery.Event rather than the (read-only) native event
+		args[ 0 ] = event;
+
+		for ( i = 1; i < arguments.length; i++ ) {
+			args[ i ] = arguments[ i ];
+		}
+
+		event.delegateTarget = this;
+
+		// Call the preDispatch hook for the mapped type, and let it bail if desired
+		if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {
+			return;
+		}
+
+		// Determine handlers
+		handlerQueue = jQuery.event.handlers.call( this, event, handlers );
+
+		// Run delegates first; they may want to stop propagation beneath us
+		i = 0;
+		while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {
+			event.currentTarget = matched.elem;
+
+			j = 0;
+			while ( ( handleObj = matched.handlers[ j++ ] ) &&
+				!event.isImmediatePropagationStopped() ) {
+
+				// If the event is namespaced, then each handler is only invoked if it is
+				// specially universal or its namespaces are a superset of the event's.
+				if ( !event.rnamespace || handleObj.namespace === false ||
+					event.rnamespace.test( handleObj.namespace ) ) {
+
+					event.handleObj = handleObj;
+					event.data = handleObj.data;
+
+					ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||
+						handleObj.handler ).apply( matched.elem, args );
+
+					if ( ret !== undefined ) {
+						if ( ( event.result = ret ) === false ) {
+							event.preventDefault();
+							event.stopPropagation();
+						}
+					}
+				}
+			}
+		}
+
+		// Call the postDispatch hook for the mapped type
+		if ( special.postDispatch ) {
+			special.postDispatch.call( this, event );
+		}
+
+		return event.result;
+	},
+
+	handlers: function( event, handlers ) {
+		var i, handleObj, sel, matchedHandlers, matchedSelectors,
+			handlerQueue = [],
+			delegateCount = handlers.delegateCount,
+			cur = event.target;
+
+		// Find delegate handlers
+		if ( delegateCount &&
+
+			// Support: IE <=9
+			// Black-hole SVG <use> instance trees (trac-13180)
+			cur.nodeType &&
+
+			// Support: Firefox <=42
+			// Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
+			// https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click
+			// Support: IE 11 only
+			// ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)
+			!( event.type === "click" && event.button >= 1 ) ) {
+
+			for ( ; cur !== this; cur = cur.parentNode || this ) {
+
+				// Don't check non-elements (#13208)
+				// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
+				if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) {
+					matchedHandlers = [];
+					matchedSelectors = {};
+					for ( i = 0; i < delegateCount; i++ ) {
+						handleObj = handlers[ i ];
+
+						// Don't conflict with Object.prototype properties (#13203)
+						sel = handleObj.selector + " ";
+
+						if ( matchedSelectors[ sel ] === undefined ) {
+							matchedSelectors[ sel ] = handleObj.needsContext ?
+								jQuery( sel, this ).index( cur ) > -1 :
+								jQuery.find( sel, this, null, [ cur ] ).length;
+						}
+						if ( matchedSelectors[ sel ] ) {
+							matchedHandlers.push( handleObj );
+						}
+					}
+					if ( matchedHandlers.length ) {
+						handlerQueue.push( { elem: cur, handlers: matchedHandlers } );
+					}
+				}
+			}
+		}
+
+		// Add the remaining (directly-bound) handlers
+		cur = this;
+		if ( delegateCount < handlers.length ) {
+			handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } );
+		}
+
+		return handlerQueue;
+	},
+
+	addProp: function( name, hook ) {
+		Object.defineProperty( jQuery.Event.prototype, name, {
+			enumerable: true,
+			configurable: true,
+
+			get: isFunction( hook ) ?
+				function() {
+					if ( this.originalEvent ) {
+							return hook( this.originalEvent );
+					}
+				} :
+				function() {
+					if ( this.originalEvent ) {
+							return this.originalEvent[ name ];
+					}
+				},
+
+			set: function( value ) {
+				Object.defineProperty( this, name, {
+					enumerable: true,
+					configurable: true,
+					writable: true,
+					value: value
+				} );
+			}
+		} );
+	},
+
+	fix: function( originalEvent ) {
+		return originalEvent[ jQuery.expando ] ?
+			originalEvent :
+			new jQuery.Event( originalEvent );
+	},
+
+	special: {
+		load: {
+
+			// Prevent triggered image.load events from bubbling to window.load
+			noBubble: true
+		},
+		click: {
+
+			// Utilize native event to ensure correct state for checkable inputs
+			setup: function( data ) {
+
+				// For mutual compressibility with _default, replace `this` access with a local var.
+				// `|| data` is dead code meant only to preserve the variable through minification.
+				var el = this || data;
+
+				// Claim the first handler
+				if ( rcheckableType.test( el.type ) &&
+					el.click && nodeName( el, "input" ) ) {
+
+					// dataPriv.set( el, "click", ... )
+					leverageNative( el, "click", returnTrue );
+				}
+
+				// Return false to allow normal processing in the caller
+				return false;
+			},
+			trigger: function( data ) {
+
+				// For mutual compressibility with _default, replace `this` access with a local var.
+				// `|| data` is dead code meant only to preserve the variable through minification.
+				var el = this || data;
+
+				// Force setup before triggering a click
+				if ( rcheckableType.test( el.type ) &&
+					el.click && nodeName( el, "input" ) ) {
+
+					leverageNative( el, "click" );
+				}
+
+				// Return non-false to allow normal event-path propagation
+				return true;
+			},
+
+			// For cross-browser consistency, suppress native .click() on links
+			// Also prevent it if we're currently inside a leveraged native-event stack
+			_default: function( event ) {
+				var target = event.target;
+				return rcheckableType.test( target.type ) &&
+					target.click && nodeName( target, "input" ) &&
+					dataPriv.get( target, "click" ) ||
+					nodeName( target, "a" );
+			}
+		},
+
+		beforeunload: {
+			postDispatch: function( event ) {
+
+				// Support: Firefox 20+
+				// Firefox doesn't alert if the returnValue field is not set.
+				if ( event.result !== undefined && event.originalEvent ) {
+					event.originalEvent.returnValue = event.result;
+				}
+			}
+		}
+	}
+};
+
+// Ensure the presence of an event listener that handles manually-triggered
+// synthetic events by interrupting progress until reinvoked in response to
+// *native* events that it fires directly, ensuring that state changes have
+// already occurred before other listeners are invoked.
+function leverageNative( el, type, expectSync ) {
+
+	// Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add
+	if ( !expectSync ) {
+		if ( dataPriv.get( el, type ) === undefined ) {
+			jQuery.event.add( el, type, returnTrue );
+		}
+		return;
+	}
+
+	// Register the controller as a special universal handler for all event namespaces
+	dataPriv.set( el, type, false );
+	jQuery.event.add( el, type, {
+		namespace: false,
+		handler: function( event ) {
+			var notAsync, result,
+				saved = dataPriv.get( this, type );
+
+			if ( ( event.isTrigger & 1 ) && this[ type ] ) {
+
+				// Interrupt processing of the outer synthetic .trigger()ed event
+				// Saved data should be false in such cases, but might be a leftover capture object
+				// from an async native handler (gh-4350)
+				if ( !saved.length ) {
+
+					// Store arguments for use when handling the inner native event
+					// There will always be at least one argument (an event object), so this array
+					// will not be confused with a leftover capture object.
+					saved = slice.call( arguments );
+					dataPriv.set( this, type, saved );
+
+					// Trigger the native event and capture its result
+					// Support: IE <=9 - 11+
+					// focus() and blur() are asynchronous
+					notAsync = expectSync( this, type );
+					this[ type ]();
+					result = dataPriv.get( this, type );
+					if ( saved !== result || notAsync ) {
+						dataPriv.set( this, type, false );
+					} else {
+						result = {};
+					}
+					if ( saved !== result ) {
+
+						// Cancel the outer synthetic event
+						event.stopImmediatePropagation();
+						event.preventDefault();
+						return result.value;
+					}
+
+				// If this is an inner synthetic event for an event with a bubbling surrogate
+				// (focus or blur), assume that the surrogate already propagated from triggering the
+				// native event and prevent that from happening again here.
+				// This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the
+				// bubbling surrogate propagates *after* the non-bubbling base), but that seems
+				// less bad than duplication.
+				} else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) {
+					event.stopPropagation();
+				}
+
+			// If this is a native event triggered above, everything is now in order
+			// Fire an inner synthetic event with the original arguments
+			} else if ( saved.length ) {
+
+				// ...and capture the result
+				dataPriv.set( this, type, {
+					value: jQuery.event.trigger(
+
+						// Support: IE <=9 - 11+
+						// Extend with the prototype to reset the above stopImmediatePropagation()
+						jQuery.extend( saved[ 0 ], jQuery.Event.prototype ),
+						saved.slice( 1 ),
+						this
+					)
+				} );
+
+				// Abort handling of the native event
+				event.stopImmediatePropagation();
+			}
+		}
+	} );
+}
+
+jQuery.removeEvent = function( elem, type, handle ) {
+
+	// This "if" is needed for plain objects
+	if ( elem.removeEventListener ) {
+		elem.removeEventListener( type, handle );
+	}
+};
+
+jQuery.Event = function( src, props ) {
+
+	// Allow instantiation without the 'new' keyword
+	if ( !( this instanceof jQuery.Event ) ) {
+		return new jQuery.Event( src, props );
+	}
+
+	// Event object
+	if ( src && src.type ) {
+		this.originalEvent = src;
+		this.type = src.type;
+
+		// Events bubbling up the document may have been marked as prevented
+		// by a handler lower down the tree; reflect the correct value.
+		this.isDefaultPrevented = src.defaultPrevented ||
+				src.defaultPrevented === undefined &&
+
+				// Support: Android <=2.3 only
+				src.returnValue === false ?
+			returnTrue :
+			returnFalse;
+
+		// Create target properties
+		// Support: Safari <=6 - 7 only
+		// Target should not be a text node (#504, #13143)
+		this.target = ( src.target && src.target.nodeType === 3 ) ?
+			src.target.parentNode :
+			src.target;
+
+		this.currentTarget = src.currentTarget;
+		this.relatedTarget = src.relatedTarget;
+
+	// Event type
+	} else {
+		this.type = src;
+	}
+
+	// Put explicitly provided properties onto the event object
+	if ( props ) {
+		jQuery.extend( this, props );
+	}
+
+	// Create a timestamp if incoming event doesn't have one
+	this.timeStamp = src && src.timeStamp || Date.now();
+
+	// Mark it as fixed
+	this[ jQuery.expando ] = true;
+};
+
+// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding
+// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html
+jQuery.Event.prototype = {
+	constructor: jQuery.Event,
+	isDefaultPrevented: returnFalse,
+	isPropagationStopped: returnFalse,
+	isImmediatePropagationStopped: returnFalse,
+	isSimulated: false,
+
+	preventDefault: function() {
+		var e = this.originalEvent;
+
+		this.isDefaultPrevented = returnTrue;
+
+		if ( e && !this.isSimulated ) {
+			e.preventDefault();
+		}
+	},
+	stopPropagation: function() {
+		var e = this.originalEvent;
+
+		this.isPropagationStopped = returnTrue;
+
+		if ( e && !this.isSimulated ) {
+			e.stopPropagation();
+		}
+	},
+	stopImmediatePropagation: function() {
+		var e = this.originalEvent;
+
+		this.isImmediatePropagationStopped = returnTrue;
+
+		if ( e && !this.isSimulated ) {
+			e.stopImmediatePropagation();
+		}
+
+		this.stopPropagation();
+	}
+};
+
+// Includes all common event props including KeyEvent and MouseEvent specific props
+jQuery.each( {
+	altKey: true,
+	bubbles: true,
+	cancelable: true,
+	changedTouches: true,
+	ctrlKey: true,
+	detail: true,
+	eventPhase: true,
+	metaKey: true,
+	pageX: true,
+	pageY: true,
+	shiftKey: true,
+	view: true,
+	"char": true,
+	code: true,
+	charCode: true,
+	key: true,
+	keyCode: true,
+	button: true,
+	buttons: true,
+	clientX: true,
+	clientY: true,
+	offsetX: true,
+	offsetY: true,
+	pointerId: true,
+	pointerType: true,
+	screenX: true,
+	screenY: true,
+	targetTouches: true,
+	toElement: true,
+	touches: true,
+
+	which: function( event ) {
+		var button = event.button;
+
+		// Add which for key events
+		if ( event.which == null && rkeyEvent.test( event.type ) ) {
+			return event.charCode != null ? event.charCode : event.keyCode;
+		}
+
+		// Add which for click: 1 === left; 2 === middle; 3 === right
+		if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) {
+			if ( button & 1 ) {
+				return 1;
+			}
+
+			if ( button & 2 ) {
+				return 3;
+			}
+
+			if ( button & 4 ) {
+				return 2;
+			}
+
+			return 0;
+		}
+
+		return event.which;
+	}
+}, jQuery.event.addProp );
+
+jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) {
+	jQuery.event.special[ type ] = {
+
+		// Utilize native event if possible so blur/focus sequence is correct
+		setup: function() {
+
+			// Claim the first handler
+			// dataPriv.set( this, "focus", ... )
+			// dataPriv.set( this, "blur", ... )
+			leverageNative( this, type, expectSync );
+
+			// Return false to allow normal processing in the caller
+			return false;
+		},
+		trigger: function() {
+
+			// Force setup before trigger
+			leverageNative( this, type );
+
+			// Return non-false to allow normal event-path propagation
+			return true;
+		},
+
+		delegateType: delegateType
+	};
+} );
+
+// Create mouseenter/leave events using mouseover/out and event-time checks
+// so that event delegation works in jQuery.
+// Do the same for pointerenter/pointerleave and pointerover/pointerout
+//
+// Support: Safari 7 only
+// Safari sends mouseenter too often; see:
+// https://bugs.chromium.org/p/chromium/issues/detail?id=470258
+// for the description of the bug (it existed in older Chrome versions as well).
+jQuery.each( {
+	mouseenter: "mouseover",
+	mouseleave: "mouseout",
+	pointerenter: "pointerover",
+	pointerleave: "pointerout"
+}, function( orig, fix ) {
+	jQuery.event.special[ orig ] = {
+		delegateType: fix,
+		bindType: fix,
+
+		handle: function( event ) {
+			var ret,
+				target = this,
+				related = event.relatedTarget,
+				handleObj = event.handleObj;
+
+			// For mouseenter/leave call the handler if related is outside the target.
+			// NB: No relatedTarget if the mouse left/entered the browser window
+			if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {
+				event.type = handleObj.origType;
+				ret = handleObj.handler.apply( this, arguments );
+				event.type = fix;
+			}
+			return ret;
+		}
+	};
+} );
+
+jQuery.fn.extend( {
+
+	on: function( types, selector, data, fn ) {
+		return on( this, types, selector, data, fn );
+	},
+	one: function( types, selector, data, fn ) {
+		return on( this, types, selector, data, fn, 1 );
+	},
+	off: function( types, selector, fn ) {
+		var handleObj, type;
+		if ( types && types.preventDefault && types.handleObj ) {
+
+			// ( event )  dispatched jQuery.Event
+			handleObj = types.handleObj;
+			jQuery( types.delegateTarget ).off(
+				handleObj.namespace ?
+					handleObj.origType + "." + handleObj.namespace :
+					handleObj.origType,
+				handleObj.selector,
+				handleObj.handler
+			);
+			return this;
+		}
+		if ( typeof types === "object" ) {
+
+			// ( types-object [, selector] )
+			for ( type in types ) {
+				this.off( type, selector, types[ type ] );
+			}
+			return this;
+		}
+		if ( selector === false || typeof selector === "function" ) {
+
+			// ( types [, fn] )
+			fn = selector;
+			selector = undefined;
+		}
+		if ( fn === false ) {
+			fn = returnFalse;
+		}
+		return this.each( function() {
+			jQuery.event.remove( this, types, fn, selector );
+		} );
+	}
+} );
+
+
+var
+
+	// Support: IE <=10 - 11, Edge 12 - 13 only
+	// In IE/Edge using regex groups here causes severe slowdowns.
+	// See https://connect.microsoft.com/IE/feedback/details/1736512/
+	rnoInnerhtml = /<script|<style|<link/i,
+
+	// checked="checked" or checked
+	rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i,
+	rcleanScript = /^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;
+
+// Prefer a tbody over its parent table for containing new rows
+function manipulationTarget( elem, content ) {
+	if ( nodeName( elem, "table" ) &&
+		nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) {
+
+		return jQuery( elem ).children( "tbody" )[ 0 ] || elem;
+	}
+
+	return elem;
+}
+
+// Replace/restore the type attribute of script elements for safe DOM manipulation
+function disableScript( elem ) {
+	elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type;
+	return elem;
+}
+function restoreScript( elem ) {
+	if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) {
+		elem.type = elem.type.slice( 5 );
+	} else {
+		elem.removeAttribute( "type" );
+	}
+
+	return elem;
+}
+
+function cloneCopyEvent( src, dest ) {
+	var i, l, type, pdataOld, udataOld, udataCur, events;
+
+	if ( dest.nodeType !== 1 ) {
+		return;
+	}
+
+	// 1. Copy private data: events, handlers, etc.
+	if ( dataPriv.hasData( src ) ) {
+		pdataOld = dataPriv.get( src );
+		events = pdataOld.events;
+
+		if ( events ) {
+			dataPriv.remove( dest, "handle events" );
+
+			for ( type in events ) {
+				for ( i = 0, l = events[ type ].length; i < l; i++ ) {
+					jQuery.event.add( dest, type, events[ type ][ i ] );
+				}
+			}
+		}
+	}
+
+	// 2. Copy user data
+	if ( dataUser.hasData( src ) ) {
+		udataOld = dataUser.access( src );
+		udataCur = jQuery.extend( {}, udataOld );
+
+		dataUser.set( dest, udataCur );
+	}
+}
+
+// Fix IE bugs, see support tests
+function fixInput( src, dest ) {
+	var nodeName = dest.nodeName.toLowerCase();
+
+	// Fails to persist the checked state of a cloned checkbox or radio button.
+	if ( nodeName === "input" && rcheckableType.test( src.type ) ) {
+		dest.checked = src.checked;
+
+	// Fails to return the selected option to the default selected state when cloning options
+	} else if ( nodeName === "input" || nodeName === "textarea" ) {
+		dest.defaultValue = src.defaultValue;
+	}
+}
+
+function domManip( collection, args, callback, ignored ) {
+
+	// Flatten any nested arrays
+	args = flat( args );
+
+	var fragment, first, scripts, hasScripts, node, doc,
+		i = 0,
+		l = collection.length,
+		iNoClone = l - 1,
+		value = args[ 0 ],
+		valueIsFunction = isFunction( value );
+
+	// We can't cloneNode fragments that contain checked, in WebKit
+	if ( valueIsFunction ||
+			( l > 1 && typeof value === "string" &&
+				!support.checkClone && rchecked.test( value ) ) ) {
+		return collection.each( function( index ) {
+			var self = collection.eq( index );
+			if ( valueIsFunction ) {
+				args[ 0 ] = value.call( this, index, self.html() );
+			}
+			domManip( self, args, callback, ignored );
+		} );
+	}
+
+	if ( l ) {
+		fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );
+		first = fragment.firstChild;
+
+		if ( fragment.childNodes.length === 1 ) {
+			fragment = first;
+		}
+
+		// Require either new content or an interest in ignored elements to invoke the callback
+		if ( first || ignored ) {
+			scripts = jQuery.map( getAll( fragment, "script" ), disableScript );
+			hasScripts = scripts.length;
+
+			// Use the original fragment for the last item
+			// instead of the first because it can end up
+			// being emptied incorrectly in certain situations (#8070).
+			for ( ; i < l; i++ ) {
+				node = fragment;
+
+				if ( i !== iNoClone ) {
+					node = jQuery.clone( node, true, true );
+
+					// Keep references to cloned scripts for later restoration
+					if ( hasScripts ) {
+
+						// Support: Android <=4.0 only, PhantomJS 1 only
+						// push.apply(_, arraylike) throws on ancient WebKit
+						jQuery.merge( scripts, getAll( node, "script" ) );
+					}
+				}
+
+				callback.call( collection[ i ], node, i );
+			}
+
+			if ( hasScripts ) {
+				doc = scripts[ scripts.length - 1 ].ownerDocument;
+
+				// Reenable scripts
+				jQuery.map( scripts, restoreScript );
+
+				// Evaluate executable scripts on first document insertion
+				for ( i = 0; i < hasScripts; i++ ) {
+					node = scripts[ i ];
+					if ( rscriptType.test( node.type || "" ) &&
+						!dataPriv.access( node, "globalEval" ) &&
+						jQuery.contains( doc, node ) ) {
+
+						if ( node.src && ( node.type || "" ).toLowerCase()  !== "module" ) {
+
+							// Optional AJAX dependency, but won't run scripts if not present
+							if ( jQuery._evalUrl && !node.noModule ) {
+								jQuery._evalUrl( node.src, {
+									nonce: node.nonce || node.getAttribute( "nonce" )
+								}, doc );
+							}
+						} else {
+							DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc );
+						}
+					}
+				}
+			}
+		}
+	}
+
+	return collection;
+}
+
+function remove( elem, selector, keepData ) {
+	var node,
+		nodes = selector ? jQuery.filter( selector, elem ) : elem,
+		i = 0;
+
+	for ( ; ( node = nodes[ i ] ) != null; i++ ) {
+		if ( !keepData && node.nodeType === 1 ) {
+			jQuery.cleanData( getAll( node ) );
+		}
+
+		if ( node.parentNode ) {
+			if ( keepData && isAttached( node ) ) {
+				setGlobalEval( getAll( node, "script" ) );
+			}
+			node.parentNode.removeChild( node );
+		}
+	}
+
+	return elem;
+}
+
+jQuery.extend( {
+	htmlPrefilter: function( html ) {
+		return html;
+	},
+
+	clone: function( elem, dataAndEvents, deepDataAndEvents ) {
+		var i, l, srcElements, destElements,
+			clone = elem.cloneNode( true ),
+			inPage = isAttached( elem );
+
+		// Fix IE cloning issues
+		if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
+				!jQuery.isXMLDoc( elem ) ) {
+
+			// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
+			destElements = getAll( clone );
+			srcElements = getAll( elem );
+
+			for ( i = 0, l = srcElements.length; i < l; i++ ) {
+				fixInput( srcElements[ i ], destElements[ i ] );
+			}
+		}
+
+		// Copy the events from the original to the clone
+		if ( dataAndEvents ) {
+			if ( deepDataAndEvents ) {
+				srcElements = srcElements || getAll( elem );
+				destElements = destElements || getAll( clone );
+
+				for ( i = 0, l = srcElements.length; i < l; i++ ) {
+					cloneCopyEvent( srcElements[ i ], destElements[ i ] );
+				}
+			} else {
+				cloneCopyEvent( elem, clone );
+			}
+		}
+
+		// Preserve script evaluation history
+		destElements = getAll( clone, "script" );
+		if ( destElements.length > 0 ) {
+			setGlobalEval( destElements, !inPage && getAll( elem, "script" ) );
+		}
+
+		// Return the cloned set
+		return clone;
+	},
+
+	cleanData: function( elems ) {
+		var data, elem, type,
+			special = jQuery.event.special,
+			i = 0;
+
+		for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {
+			if ( acceptData( elem ) ) {
+				if ( ( data = elem[ dataPriv.expando ] ) ) {
+					if ( data.events ) {
+						for ( type in data.events ) {
+							if ( special[ type ] ) {
+								jQuery.event.remove( elem, type );
+
+							// This is a shortcut to avoid jQuery.event.remove's overhead
+							} else {
+								jQuery.removeEvent( elem, type, data.handle );
+							}
+						}
+					}
+
+					// Support: Chrome <=35 - 45+
+					// Assign undefined instead of using delete, see Data#remove
+					elem[ dataPriv.expando ] = undefined;
+				}
+				if ( elem[ dataUser.expando ] ) {
+
+					// Support: Chrome <=35 - 45+
+					// Assign undefined instead of using delete, see Data#remove
+					elem[ dataUser.expando ] = undefined;
+				}
+			}
+		}
+	}
+} );
+
+jQuery.fn.extend( {
+	detach: function( selector ) {
+		return remove( this, selector, true );
+	},
+
+	remove: function( selector ) {
+		return remove( this, selector );
+	},
+
+	text: function( value ) {
+		return access( this, function( value ) {
+			return value === undefined ?
+				jQuery.text( this ) :
+				this.empty().each( function() {
+					if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
+						this.textContent = value;
+					}
+				} );
+		}, null, value, arguments.length );
+	},
+
+	append: function() {
+		return domManip( this, arguments, function( elem ) {
+			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
+				var target = manipulationTarget( this, elem );
+				target.appendChild( elem );
+			}
+		} );
+	},
+
+	prepend: function() {
+		return domManip( this, arguments, function( elem ) {
+			if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {
+				var target = manipulationTarget( this, elem );
+				target.insertBefore( elem, target.firstChild );
+			}
+		} );
+	},
+
+	before: function() {
+		return domManip( this, arguments, function( elem ) {
+			if ( this.parentNode ) {
+				this.parentNode.insertBefore( elem, this );
+			}
+		} );
+	},
+
+	after: function() {
+		return domManip( this, arguments, function( elem ) {
+			if ( this.parentNode ) {
+				this.parentNode.insertBefore( elem, this.nextSibling );
+			}
+		} );
+	},
+
+	empty: function() {
+		var elem,
+			i = 0;
+
+		for ( ; ( elem = this[ i ] ) != null; i++ ) {
+			if ( elem.nodeType === 1 ) {
+
+				// Prevent memory leaks
+				jQuery.cleanData( getAll( elem, false ) );
+
+				// Remove any remaining nodes
+				elem.textContent = "";
+			}
+		}
+
+		return this;
+	},
+
+	clone: function( dataAndEvents, deepDataAndEvents ) {
+		dataAndEvents = dataAndEvents == null ? false : dataAndEvents;
+		deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;
+
+		return this.map( function() {
+			return jQuery.clone( this, dataAndEvents, deepDataAndEvents );
+		} );
+	},
+
+	html: function( value ) {
+		return access( this, function( value ) {
+			var elem = this[ 0 ] || {},
+				i = 0,
+				l = this.length;
+
+			if ( value === undefined && elem.nodeType === 1 ) {
+				return elem.innerHTML;
+			}
+
+			// See if we can take a shortcut and just use innerHTML
+			if ( typeof value === "string" && !rnoInnerhtml.test( value ) &&
+				!wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) {
+
+				value = jQuery.htmlPrefilter( value );
+
+				try {
+					for ( ; i < l; i++ ) {
+						elem = this[ i ] || {};
+
+						// Remove element nodes and prevent memory leaks
+						if ( elem.nodeType === 1 ) {
+							jQuery.cleanData( getAll( elem, false ) );
+							elem.innerHTML = value;
+						}
+					}
+
+					elem = 0;
+
+				// If using innerHTML throws an exception, use the fallback method
+				} catch ( e ) {}
+			}
+
+			if ( elem ) {
+				this.empty().append( value );
+			}
+		}, null, value, arguments.length );
+	},
+
+	replaceWith: function() {
+		var ignored = [];
+
+		// Make the changes, replacing each non-ignored context element with the new content
+		return domManip( this, arguments, function( elem ) {
+			var parent = this.parentNode;
+
+			if ( jQuery.inArray( this, ignored ) < 0 ) {
+				jQuery.cleanData( getAll( this ) );
+				if ( parent ) {
+					parent.replaceChild( elem, this );
+				}
+			}
+
+		// Force callback invocation
+		}, ignored );
+	}
+} );
+
+jQuery.each( {
+	appendTo: "append",
+	prependTo: "prepend",
+	insertBefore: "before",
+	insertAfter: "after",
+	replaceAll: "replaceWith"
+}, function( name, original ) {
+	jQuery.fn[ name ] = function( selector ) {
+		var elems,
+			ret = [],
+			insert = jQuery( selector ),
+			last = insert.length - 1,
+			i = 0;
+
+		for ( ; i <= last; i++ ) {
+			elems = i === last ? this : this.clone( true );
+			jQuery( insert[ i ] )[ original ]( elems );
+
+			// Support: Android <=4.0 only, PhantomJS 1 only
+			// .get() because push.apply(_, arraylike) throws on ancient WebKit
+			push.apply( ret, elems.get() );
+		}
+
+		return this.pushStack( ret );
+	};
+} );
+var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" );
+
+var getStyles = function( elem ) {
+
+		// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
+		// IE throws on elements created in popups
+		// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
+		var view = elem.ownerDocument.defaultView;
+
+		if ( !view || !view.opener ) {
+			view = window;
+		}
+
+		return view.getComputedStyle( elem );
+	};
+
+var swap = function( elem, options, callback ) {
+	var ret, name,
+		old = {};
+
+	// Remember the old values, and insert the new ones
+	for ( name in options ) {
+		old[ name ] = elem.style[ name ];
+		elem.style[ name ] = options[ name ];
+	}
+
+	ret = callback.call( elem );
+
+	// Revert the old values
+	for ( name in options ) {
+		elem.style[ name ] = old[ name ];
+	}
+
+	return ret;
+};
+
+
+var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" );
+
+
+
+( function() {
+
+	// Executing both pixelPosition & boxSizingReliable tests require only one layout
+	// so they're executed at the same time to save the second computation.
+	function computeStyleTests() {
+
+		// This is a singleton, we need to execute it only once
+		if ( !div ) {
+			return;
+		}
+
+		container.style.cssText = "position:absolute;left:-11111px;width:60px;" +
+			"margin-top:1px;padding:0;border:0";
+		div.style.cssText =
+			"position:relative;display:block;box-sizing:border-box;overflow:scroll;" +
+			"margin:auto;border:1px;padding:1px;" +
+			"width:60%;top:1%";
+		documentElement.appendChild( container ).appendChild( div );
+
+		var divStyle = window.getComputedStyle( div );
+		pixelPositionVal = divStyle.top !== "1%";
+
+		// Support: Android 4.0 - 4.3 only, Firefox <=3 - 44
+		reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12;
+
+		// Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3
+		// Some styles come back with percentage values, even though they shouldn't
+		div.style.right = "60%";
+		pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36;
+
+		// Support: IE 9 - 11 only
+		// Detect misreporting of content dimensions for box-sizing:border-box elements
+		boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36;
+
+		// Support: IE 9 only
+		// Detect overflow:scroll screwiness (gh-3699)
+		// Support: Chrome <=64
+		// Don't get tricked when zoom affects offsetWidth (gh-4029)
+		div.style.position = "absolute";
+		scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12;
+
+		documentElement.removeChild( container );
+
+		// Nullify the div so it wouldn't be stored in the memory and
+		// it will also be a sign that checks already performed
+		div = null;
+	}
+
+	function roundPixelMeasures( measure ) {
+		return Math.round( parseFloat( measure ) );
+	}
+
+	var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal,
+		reliableTrDimensionsVal, reliableMarginLeftVal,
+		container = document.createElement( "div" ),
+		div = document.createElement( "div" );
+
+	// Finish early in limited (non-browser) environments
+	if ( !div.style ) {
+		return;
+	}
+
+	// Support: IE <=9 - 11 only
+	// Style of cloned element affects source element cloned (#8908)
+	div.style.backgroundClip = "content-box";
+	div.cloneNode( true ).style.backgroundClip = "";
+	support.clearCloneStyle = div.style.backgroundClip === "content-box";
+
+	jQuery.extend( support, {
+		boxSizingReliable: function() {
+			computeStyleTests();
+			return boxSizingReliableVal;
+		},
+		pixelBoxStyles: function() {
+			computeStyleTests();
+			return pixelBoxStylesVal;
+		},
+		pixelPosition: function() {
+			computeStyleTests();
+			return pixelPositionVal;
+		},
+		reliableMarginLeft: function() {
+			computeStyleTests();
+			return reliableMarginLeftVal;
+		},
+		scrollboxSize: function() {
+			computeStyleTests();
+			return scrollboxSizeVal;
+		},
+
+		// Support: IE 9 - 11+, Edge 15 - 18+
+		// IE/Edge misreport `getComputedStyle` of table rows with width/height
+		// set in CSS while `offset*` properties report correct values.
+		// Behavior in IE 9 is more subtle than in newer versions & it passes
+		// some versions of this test; make sure not to make it pass there!
+		reliableTrDimensions: function() {
+			var table, tr, trChild, trStyle;
+			if ( reliableTrDimensionsVal == null ) {
+				table = document.createElement( "table" );
+				tr = document.createElement( "tr" );
+				trChild = document.createElement( "div" );
+
+				table.style.cssText = "position:absolute;left:-11111px";
+				tr.style.height = "1px";
+				trChild.style.height = "9px";
+
+				documentElement
+					.appendChild( table )
+					.appendChild( tr )
+					.appendChild( trChild );
+
+				trStyle = window.getComputedStyle( tr );
+				reliableTrDimensionsVal = parseInt( trStyle.height ) > 3;
+
+				documentElement.removeChild( table );
+			}
+			return reliableTrDimensionsVal;
+		}
+	} );
+} )();
+
+
+function curCSS( elem, name, computed ) {
+	var width, minWidth, maxWidth, ret,
+
+		// Support: Firefox 51+
+		// Retrieving style before computed somehow
+		// fixes an issue with getting wrong values
+		// on detached elements
+		style = elem.style;
+
+	computed = computed || getStyles( elem );
+
+	// getPropertyValue is needed for:
+	//   .css('filter') (IE 9 only, #12537)
+	//   .css('--customProperty) (#3144)
+	if ( computed ) {
+		ret = computed.getPropertyValue( name ) || computed[ name ];
+
+		if ( ret === "" && !isAttached( elem ) ) {
+			ret = jQuery.style( elem, name );
+		}
+
+		// A tribute to the "awesome hack by Dean Edwards"
+		// Android Browser returns percentage for some values,
+		// but width seems to be reliably pixels.
+		// This is against the CSSOM draft spec:
+		// https://drafts.csswg.org/cssom/#resolved-values
+		if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) {
+
+			// Remember the original values
+			width = style.width;
+			minWidth = style.minWidth;
+			maxWidth = style.maxWidth;
+
+			// Put in the new values to get a computed value out
+			style.minWidth = style.maxWidth = style.width = ret;
+			ret = computed.width;
+
+			// Revert the changed values
+			style.width = width;
+			style.minWidth = minWidth;
+			style.maxWidth = maxWidth;
+		}
+	}
+
+	return ret !== undefined ?
+
+		// Support: IE <=9 - 11 only
+		// IE returns zIndex value as an integer.
+		ret + "" :
+		ret;
+}
+
+
+function addGetHookIf( conditionFn, hookFn ) {
+
+	// Define the hook, we'll check on the first run if it's really needed.
+	return {
+		get: function() {
+			if ( conditionFn() ) {
+
+				// Hook not needed (or it's not possible to use it due
+				// to missing dependency), remove it.
+				delete this.get;
+				return;
+			}
+
+			// Hook needed; redefine it so that the support test is not executed again.
+			return ( this.get = hookFn ).apply( this, arguments );
+		}
+	};
+}
+
+
+var cssPrefixes = [ "Webkit", "Moz", "ms" ],
+	emptyStyle = document.createElement( "div" ).style,
+	vendorProps = {};
+
+// Return a vendor-prefixed property or undefined
+function vendorPropName( name ) {
+
+	// Check for vendor prefixed names
+	var capName = name[ 0 ].toUpperCase() + name.slice( 1 ),
+		i = cssPrefixes.length;
+
+	while ( i-- ) {
+		name = cssPrefixes[ i ] + capName;
+		if ( name in emptyStyle ) {
+			return name;
+		}
+	}
+}
+
+// Return a potentially-mapped jQuery.cssProps or vendor prefixed property
+function finalPropName( name ) {
+	var final = jQuery.cssProps[ name ] || vendorProps[ name ];
+
+	if ( final ) {
+		return final;
+	}
+	if ( name in emptyStyle ) {
+		return name;
+	}
+	return vendorProps[ name ] = vendorPropName( name ) || name;
+}
+
+
+var
+
+	// Swappable if display is none or starts with table
+	// except "table", "table-cell", or "table-caption"
+	// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display
+	rdisplayswap = /^(none|table(?!-c[ea]).+)/,
+	rcustomProp = /^--/,
+	cssShow = { position: "absolute", visibility: "hidden", display: "block" },
+	cssNormalTransform = {
+		letterSpacing: "0",
+		fontWeight: "400"
+	};
+
+function setPositiveNumber( _elem, value, subtract ) {
+
+	// Any relative (+/-) values have already been
+	// normalized at this point
+	var matches = rcssNum.exec( value );
+	return matches ?
+
+		// Guard against undefined "subtract", e.g., when used as in cssHooks
+		Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) :
+		value;
+}
+
+function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) {
+	var i = dimension === "width" ? 1 : 0,
+		extra = 0,
+		delta = 0;
+
+	// Adjustment may not be necessary
+	if ( box === ( isBorderBox ? "border" : "content" ) ) {
+		return 0;
+	}
+
+	for ( ; i < 4; i += 2 ) {
+
+		// Both box models exclude margin
+		if ( box === "margin" ) {
+			delta += jQuery.css( elem, box + cssExpand[ i ], true, styles );
+		}
+
+		// If we get here with a content-box, we're seeking "padding" or "border" or "margin"
+		if ( !isBorderBox ) {
+
+			// Add padding
+			delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
+
+			// For "border" or "margin", add border
+			if ( box !== "padding" ) {
+				delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
+
+			// But still keep track of it otherwise
+			} else {
+				extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
+			}
+
+		// If we get here with a border-box (content + padding + border), we're seeking "content" or
+		// "padding" or "margin"
+		} else {
+
+			// For "content", subtract padding
+			if ( box === "content" ) {
+				delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles );
+			}
+
+			// For "content" or "padding", subtract border
+			if ( box !== "margin" ) {
+				delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles );
+			}
+		}
+	}
+
+	// Account for positive content-box scroll gutter when requested by providing computedVal
+	if ( !isBorderBox && computedVal >= 0 ) {
+
+		// offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border
+		// Assuming integer scroll gutter, subtract the rest and round down
+		delta += Math.max( 0, Math.ceil(
+			elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
+			computedVal -
+			delta -
+			extra -
+			0.5
+
+		// If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
+		// Use an explicit zero to avoid NaN (gh-3964)
+		) ) || 0;
+	}
+
+	return delta;
+}
+
+function getWidthOrHeight( elem, dimension, extra ) {
+
+	// Start with computed style
+	var styles = getStyles( elem ),
+
+		// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).
+		// Fake content-box until we know it's needed to know the true value.
+		boxSizingNeeded = !support.boxSizingReliable() || extra,
+		isBorderBox = boxSizingNeeded &&
+			jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
+		valueIsBorderBox = isBorderBox,
+
+		val = curCSS( elem, dimension, styles ),
+		offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 );
+
+	// Support: Firefox <=54
+	// Return a confounding non-pixel value or feign ignorance, as appropriate.
+	if ( rnumnonpx.test( val ) ) {
+		if ( !extra ) {
+			return val;
+		}
+		val = "auto";
+	}
+
+
+	// Support: IE 9 - 11 only
+	// Use offsetWidth/offsetHeight for when box sizing is unreliable.
+	// In those cases, the computed value can be trusted to be border-box.
+	if ( ( !support.boxSizingReliable() && isBorderBox ||
+
+		// Support: IE 10 - 11+, Edge 15 - 18+
+		// IE/Edge misreport `getComputedStyle` of table rows with width/height
+		// set in CSS while `offset*` properties report correct values.
+		// Interestingly, in some cases IE 9 doesn't suffer from this issue.
+		!support.reliableTrDimensions() && nodeName( elem, "tr" ) ||
+
+		// Fall back to offsetWidth/offsetHeight when value is "auto"
+		// This happens for inline elements with no explicit setting (gh-3571)
+		val === "auto" ||
+
+		// Support: Android <=4.1 - 4.3 only
+		// Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
+		!parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) &&
+
+		// Make sure the element is visible & connected
+		elem.getClientRects().length ) {
+
+		isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box";
+
+		// Where available, offsetWidth/offsetHeight approximate border box dimensions.
+		// Where not available (e.g., SVG), assume unreliable box-sizing and interpret the
+		// retrieved value as a content box dimension.
+		valueIsBorderBox = offsetProp in elem;
+		if ( valueIsBorderBox ) {
+			val = elem[ offsetProp ];
+		}
+	}
+
+	// Normalize "" and auto
+	val = parseFloat( val ) || 0;
+
+	// Adjust for the element's box model
+	return ( val +
+		boxModelAdjustment(
+			elem,
+			dimension,
+			extra || ( isBorderBox ? "border" : "content" ),
+			valueIsBorderBox,
+			styles,
+
+			// Provide the current computed size to request scroll gutter calculation (gh-3589)
+			val
+		)
+	) + "px";
+}
+
+jQuery.extend( {
+
+	// Add in style property hooks for overriding the default
+	// behavior of getting and setting a style property
+	cssHooks: {
+		opacity: {
+			get: function( elem, computed ) {
+				if ( computed ) {
+
+					// We should always get a number back from opacity
+					var ret = curCSS( elem, "opacity" );
+					return ret === "" ? "1" : ret;
+				}
+			}
+		}
+	},
+
+	// Don't automatically add "px" to these possibly-unitless properties
+	cssNumber: {
+		"animationIterationCount": true,
+		"columnCount": true,
+		"fillOpacity": true,
+		"flexGrow": true,
+		"flexShrink": true,
+		"fontWeight": true,
+		"gridArea": true,
+		"gridColumn": true,
+		"gridColumnEnd": true,
+		"gridColumnStart": true,
+		"gridRow": true,
+		"gridRowEnd": true,
+		"gridRowStart": true,
+		"lineHeight": true,
+		"opacity": true,
+		"order": true,
+		"orphans": true,
+		"widows": true,
+		"zIndex": true,
+		"zoom": true
+	},
+
+	// Add in properties whose names you wish to fix before
+	// setting or getting the value
+	cssProps: {},
+
+	// Get and set the style property on a DOM Node
+	style: function( elem, name, value, extra ) {
+
+		// Don't set styles on text and comment nodes
+		if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {
+			return;
+		}
+
+		// Make sure that we're working with the right name
+		var ret, type, hooks,
+			origName = camelCase( name ),
+			isCustomProp = rcustomProp.test( name ),
+			style = elem.style;
+
+		// Make sure that we're working with the right name. We don't
+		// want to query the value if it is a CSS custom property
+		// since they are user-defined.
+		if ( !isCustomProp ) {
+			name = finalPropName( origName );
+		}
+
+		// Gets hook for the prefixed version, then unprefixed version
+		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
+
+		// Check if we're setting a value
+		if ( value !== undefined ) {
+			type = typeof value;
+
+			// Convert "+=" or "-=" to relative numbers (#7345)
+			if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {
+				value = adjustCSS( elem, name, ret );
+
+				// Fixes bug #9237
+				type = "number";
+			}
+
+			// Make sure that null and NaN values aren't set (#7116)
+			if ( value == null || value !== value ) {
+				return;
+			}
+
+			// If a number was passed in, add the unit (except for certain CSS properties)
+			// The isCustomProp check can be removed in jQuery 4.0 when we only auto-append
+			// "px" to a few hardcoded values.
+			if ( type === "number" && !isCustomProp ) {
+				value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" );
+			}
+
+			// background-* props affect original clone's values
+			if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) {
+				style[ name ] = "inherit";
+			}
+
+			// If a hook was provided, use that value, otherwise just set the specified value
+			if ( !hooks || !( "set" in hooks ) ||
+				( value = hooks.set( elem, value, extra ) ) !== undefined ) {
+
+				if ( isCustomProp ) {
+					style.setProperty( name, value );
+				} else {
+					style[ name ] = value;
+				}
+			}
+
+		} else {
+
+			// If a hook was provided get the non-computed value from there
+			if ( hooks && "get" in hooks &&
+				( ret = hooks.get( elem, false, extra ) ) !== undefined ) {
+
+				return ret;
+			}
+
+			// Otherwise just get the value from the style object
+			return style[ name ];
+		}
+	},
+
+	css: function( elem, name, extra, styles ) {
+		var val, num, hooks,
+			origName = camelCase( name ),
+			isCustomProp = rcustomProp.test( name );
+
+		// Make sure that we're working with the right name. We don't
+		// want to modify the value if it is a CSS custom property
+		// since they are user-defined.
+		if ( !isCustomProp ) {
+			name = finalPropName( origName );
+		}
+
+		// Try prefixed name followed by the unprefixed name
+		hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];
+
+		// If a hook was provided get the computed value from there
+		if ( hooks && "get" in hooks ) {
+			val = hooks.get( elem, true, extra );
+		}
+
+		// Otherwise, if a way to get the computed value exists, use that
+		if ( val === undefined ) {
+			val = curCSS( elem, name, styles );
+		}
+
+		// Convert "normal" to computed value
+		if ( val === "normal" && name in cssNormalTransform ) {
+			val = cssNormalTransform[ name ];
+		}
+
+		// Make numeric if forced or a qualifier was provided and val looks numeric
+		if ( extra === "" || extra ) {
+			num = parseFloat( val );
+			return extra === true || isFinite( num ) ? num || 0 : val;
+		}
+
+		return val;
+	}
+} );
+
+jQuery.each( [ "height", "width" ], function( _i, dimension ) {
+	jQuery.cssHooks[ dimension ] = {
+		get: function( elem, computed, extra ) {
+			if ( computed ) {
+
+				// Certain elements can have dimension info if we invisibly show them
+				// but it must have a current display style that would benefit
+				return rdisplayswap.test( jQuery.css( elem, "display" ) ) &&
+
+					// Support: Safari 8+
+					// Table columns in Safari have non-zero offsetWidth & zero
+					// getBoundingClientRect().width unless display is changed.
+					// Support: IE <=11 only
+					// Running getBoundingClientRect on a disconnected node
+					// in IE throws an error.
+					( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ?
+						swap( elem, cssShow, function() {
+							return getWidthOrHeight( elem, dimension, extra );
+						} ) :
+						getWidthOrHeight( elem, dimension, extra );
+			}
+		},
+
+		set: function( elem, value, extra ) {
+			var matches,
+				styles = getStyles( elem ),
+
+				// Only read styles.position if the test has a chance to fail
+				// to avoid forcing a reflow.
+				scrollboxSizeBuggy = !support.scrollboxSize() &&
+					styles.position === "absolute",
+
+				// To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)
+				boxSizingNeeded = scrollboxSizeBuggy || extra,
+				isBorderBox = boxSizingNeeded &&
+					jQuery.css( elem, "boxSizing", false, styles ) === "border-box",
+				subtract = extra ?
+					boxModelAdjustment(
+						elem,
+						dimension,
+						extra,
+						isBorderBox,
+						styles
+					) :
+					0;
+
+			// Account for unreliable border-box dimensions by comparing offset* to computed and
+			// faking a content-box to get border and padding (gh-3699)
+			if ( isBorderBox && scrollboxSizeBuggy ) {
+				subtract -= Math.ceil(
+					elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] -
+					parseFloat( styles[ dimension ] ) -
+					boxModelAdjustment( elem, dimension, "border", false, styles ) -
+					0.5
+				);
+			}
+
+			// Convert to pixels if value adjustment is needed
+			if ( subtract && ( matches = rcssNum.exec( value ) ) &&
+				( matches[ 3 ] || "px" ) !== "px" ) {
+
+				elem.style[ dimension ] = value;
+				value = jQuery.css( elem, dimension );
+			}
+
+			return setPositiveNumber( elem, value, subtract );
+		}
+	};
+} );
+
+jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,
+	function( elem, computed ) {
+		if ( computed ) {
+			return ( parseFloat( curCSS( elem, "marginLeft" ) ) ||
+				elem.getBoundingClientRect().left -
+					swap( elem, { marginLeft: 0 }, function() {
+						return elem.getBoundingClientRect().left;
+					} )
+				) + "px";
+		}
+	}
+);
+
+// These hooks are used by animate to expand properties
+jQuery.each( {
+	margin: "",
+	padding: "",
+	border: "Width"
+}, function( prefix, suffix ) {
+	jQuery.cssHooks[ prefix + suffix ] = {
+		expand: function( value ) {
+			var i = 0,
+				expanded = {},
+
+				// Assumes a single number if not a string
+				parts = typeof value === "string" ? value.split( " " ) : [ value ];
+
+			for ( ; i < 4; i++ ) {
+				expanded[ prefix + cssExpand[ i ] + suffix ] =
+					parts[ i ] || parts[ i - 2 ] || parts[ 0 ];
+			}
+
+			return expanded;
+		}
+	};
+
+	if ( prefix !== "margin" ) {
+		jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;
+	}
+} );
+
+jQuery.fn.extend( {
+	css: function( name, value ) {
+		return access( this, function( elem, name, value ) {
+			var styles, len,
+				map = {},
+				i = 0;
+
+			if ( Array.isArray( name ) ) {
+				styles = getStyles( elem );
+				len = name.length;
+
+				for ( ; i < len; i++ ) {
+					map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );
+				}
+
+				return map;
+			}
+
+			return value !== undefined ?
+				jQuery.style( elem, name, value ) :
+				jQuery.css( elem, name );
+		}, name, value, arguments.length > 1 );
+	}
+} );
+
+
+function Tween( elem, options, prop, end, easing ) {
+	return new Tween.prototype.init( elem, options, prop, end, easing );
+}
+jQuery.Tween = Tween;
+
+Tween.prototype = {
+	constructor: Tween,
+	init: function( elem, options, prop, end, easing, unit ) {
+		this.elem = elem;
+		this.prop = prop;
+		this.easing = easing || jQuery.easing._default;
+		this.options = options;
+		this.start = this.now = this.cur();
+		this.end = end;
+		this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" );
+	},
+	cur: function() {
+		var hooks = Tween.propHooks[ this.prop ];
+
+		return hooks && hooks.get ?
+			hooks.get( this ) :
+			Tween.propHooks._default.get( this );
+	},
+	run: function( percent ) {
+		var eased,
+			hooks = Tween.propHooks[ this.prop ];
+
+		if ( this.options.duration ) {
+			this.pos = eased = jQuery.easing[ this.easing ](
+				percent, this.options.duration * percent, 0, 1, this.options.duration
+			);
+		} else {
+			this.pos = eased = percent;
+		}
+		this.now = ( this.end - this.start ) * eased + this.start;
+
+		if ( this.options.step ) {
+			this.options.step.call( this.elem, this.now, this );
+		}
+
+		if ( hooks && hooks.set ) {
+			hooks.set( this );
+		} else {
+			Tween.propHooks._default.set( this );
+		}
+		return this;
+	}
+};
+
+Tween.prototype.init.prototype = Tween.prototype;
+
+Tween.propHooks = {
+	_default: {
+		get: function( tween ) {
+			var result;
+
+			// Use a property on the element directly when it is not a DOM element,
+			// or when there is no matching style property that exists.
+			if ( tween.elem.nodeType !== 1 ||
+				tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {
+				return tween.elem[ tween.prop ];
+			}
+
+			// Passing an empty string as a 3rd parameter to .css will automatically
+			// attempt a parseFloat and fallback to a string if the parse fails.
+			// Simple values such as "10px" are parsed to Float;
+			// complex values such as "rotate(1rad)" are returned as-is.
+			result = jQuery.css( tween.elem, tween.prop, "" );
+
+			// Empty strings, null, undefined and "auto" are converted to 0.
+			return !result || result === "auto" ? 0 : result;
+		},
+		set: function( tween ) {
+
+			// Use step hook for back compat.
+			// Use cssHook if its there.
+			// Use .style if available and use plain properties where available.
+			if ( jQuery.fx.step[ tween.prop ] ) {
+				jQuery.fx.step[ tween.prop ]( tween );
+			} else if ( tween.elem.nodeType === 1 && (
+					jQuery.cssHooks[ tween.prop ] ||
+					tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) {
+				jQuery.style( tween.elem, tween.prop, tween.now + tween.unit );
+			} else {
+				tween.elem[ tween.prop ] = tween.now;
+			}
+		}
+	}
+};
+
+// Support: IE <=9 only
+// Panic based approach to setting things on disconnected nodes
+Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {
+	set: function( tween ) {
+		if ( tween.elem.nodeType && tween.elem.parentNode ) {
+			tween.elem[ tween.prop ] = tween.now;
+		}
+	}
+};
+
+jQuery.easing = {
+	linear: function( p ) {
+		return p;
+	},
+	swing: function( p ) {
+		return 0.5 - Math.cos( p * Math.PI ) / 2;
+	},
+	_default: "swing"
+};
+
+jQuery.fx = Tween.prototype.init;
+
+// Back compat <1.8 extension point
+jQuery.fx.step = {};
+
+
+
+
+var
+	fxNow, inProgress,
+	rfxtypes = /^(?:toggle|show|hide)$/,
+	rrun = /queueHooks$/;
+
+function schedule() {
+	if ( inProgress ) {
+		if ( document.hidden === false && window.requestAnimationFrame ) {
+			window.requestAnimationFrame( schedule );
+		} else {
+			window.setTimeout( schedule, jQuery.fx.interval );
+		}
+
+		jQuery.fx.tick();
+	}
+}
+
+// Animations created synchronously will run synchronously
+function createFxNow() {
+	window.setTimeout( function() {
+		fxNow = undefined;
+	} );
+	return ( fxNow = Date.now() );
+}
+
+// Generate parameters to create a standard animation
+function genFx( type, includeWidth ) {
+	var which,
+		i = 0,
+		attrs = { height: type };
+
+	// If we include width, step value is 1 to do all cssExpand values,
+	// otherwise step value is 2 to skip over Left and Right
+	includeWidth = includeWidth ? 1 : 0;
+	for ( ; i < 4; i += 2 - includeWidth ) {
+		which = cssExpand[ i ];
+		attrs[ "margin" + which ] = attrs[ "padding" + which ] = type;
+	}
+
+	if ( includeWidth ) {
+		attrs.opacity = attrs.width = type;
+	}
+
+	return attrs;
+}
+
+function createTween( value, prop, animation ) {
+	var tween,
+		collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ),
+		index = 0,
+		length = collection.length;
+	for ( ; index < length; index++ ) {
+		if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {
+
+			// We're done with this property
+			return tween;
+		}
+	}
+}
+
+function defaultPrefilter( elem, props, opts ) {
+	var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display,
+		isBox = "width" in props || "height" in props,
+		anim = this,
+		orig = {},
+		style = elem.style,
+		hidden = elem.nodeType && isHiddenWithinTree( elem ),
+		dataShow = dataPriv.get( elem, "fxshow" );
+
+	// Queue-skipping animations hijack the fx hooks
+	if ( !opts.queue ) {
+		hooks = jQuery._queueHooks( elem, "fx" );
+		if ( hooks.unqueued == null ) {
+			hooks.unqueued = 0;
+			oldfire = hooks.empty.fire;
+			hooks.empty.fire = function() {
+				if ( !hooks.unqueued ) {
+					oldfire();
+				}
+			};
+		}
+		hooks.unqueued++;
+
+		anim.always( function() {
+
+			// Ensure the complete handler is called before this completes
+			anim.always( function() {
+				hooks.unqueued--;
+				if ( !jQuery.queue( elem, "fx" ).length ) {
+					hooks.empty.fire();
+				}
+			} );
+		} );
+	}
+
+	// Detect show/hide animations
+	for ( prop in props ) {
+		value = props[ prop ];
+		if ( rfxtypes.test( value ) ) {
+			delete props[ prop ];
+			toggle = toggle || value === "toggle";
+			if ( value === ( hidden ? "hide" : "show" ) ) {
+
+				// Pretend to be hidden if this is a "show" and
+				// there is still data from a stopped show/hide
+				if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) {
+					hidden = true;
+
+				// Ignore all other no-op show/hide data
+				} else {
+					continue;
+				}
+			}
+			orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );
+		}
+	}
+
+	// Bail out if this is a no-op like .hide().hide()
+	propTween = !jQuery.isEmptyObject( props );
+	if ( !propTween && jQuery.isEmptyObject( orig ) ) {
+		return;
+	}
+
+	// Restrict "overflow" and "display" styles during box animations
+	if ( isBox && elem.nodeType === 1 ) {
+
+		// Support: IE <=9 - 11, Edge 12 - 15
+		// Record all 3 overflow attributes because IE does not infer the shorthand
+		// from identically-valued overflowX and overflowY and Edge just mirrors
+		// the overflowX value there.
+		opts.overflow = [ style.overflow, style.overflowX, style.overflowY ];
+
+		// Identify a display type, preferring old show/hide data over the CSS cascade
+		restoreDisplay = dataShow && dataShow.display;
+		if ( restoreDisplay == null ) {
+			restoreDisplay = dataPriv.get( elem, "display" );
+		}
+		display = jQuery.css( elem, "display" );
+		if ( display === "none" ) {
+			if ( restoreDisplay ) {
+				display = restoreDisplay;
+			} else {
+
+				// Get nonempty value(s) by temporarily forcing visibility
+				showHide( [ elem ], true );
+				restoreDisplay = elem.style.display || restoreDisplay;
+				display = jQuery.css( elem, "display" );
+				showHide( [ elem ] );
+			}
+		}
+
+		// Animate inline elements as inline-block
+		if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) {
+			if ( jQuery.css( elem, "float" ) === "none" ) {
+
+				// Restore the original display value at the end of pure show/hide animations
+				if ( !propTween ) {
+					anim.done( function() {
+						style.display = restoreDisplay;
+					} );
+					if ( restoreDisplay == null ) {
+						display = style.display;
+						restoreDisplay = display === "none" ? "" : display;
+					}
+				}
+				style.display = "inline-block";
+			}
+		}
+	}
+
+	if ( opts.overflow ) {
+		style.overflow = "hidden";
+		anim.always( function() {
+			style.overflow = opts.overflow[ 0 ];
+			style.overflowX = opts.overflow[ 1 ];
+			style.overflowY = opts.overflow[ 2 ];
+		} );
+	}
+
+	// Implement show/hide animations
+	propTween = false;
+	for ( prop in orig ) {
+
+		// General show/hide setup for this element animation
+		if ( !propTween ) {
+			if ( dataShow ) {
+				if ( "hidden" in dataShow ) {
+					hidden = dataShow.hidden;
+				}
+			} else {
+				dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } );
+			}
+
+			// Store hidden/visible for toggle so `.stop().toggle()` "reverses"
+			if ( toggle ) {
+				dataShow.hidden = !hidden;
+			}
+
+			// Show elements before animating them
+			if ( hidden ) {
+				showHide( [ elem ], true );
+			}
+
+			/* eslint-disable no-loop-func */
+
+			anim.done( function() {
+
+			/* eslint-enable no-loop-func */
+
+				// The final step of a "hide" animation is actually hiding the element
+				if ( !hidden ) {
+					showHide( [ elem ] );
+				}
+				dataPriv.remove( elem, "fxshow" );
+				for ( prop in orig ) {
+					jQuery.style( elem, prop, orig[ prop ] );
+				}
+			} );
+		}
+
+		// Per-property setup
+		propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );
+		if ( !( prop in dataShow ) ) {
+			dataShow[ prop ] = propTween.start;
+			if ( hidden ) {
+				propTween.end = propTween.start;
+				propTween.start = 0;
+			}
+		}
+	}
+}
+
+function propFilter( props, specialEasing ) {
+	var index, name, easing, value, hooks;
+
+	// camelCase, specialEasing and expand cssHook pass
+	for ( index in props ) {
+		name = camelCase( index );
+		easing = specialEasing[ name ];
+		value = props[ index ];
+		if ( Array.isArray( value ) ) {
+			easing = value[ 1 ];
+			value = props[ index ] = value[ 0 ];
+		}
+
+		if ( index !== name ) {
+			props[ name ] = value;
+			delete props[ index ];
+		}
+
+		hooks = jQuery.cssHooks[ name ];
+		if ( hooks && "expand" in hooks ) {
+			value = hooks.expand( value );
+			delete props[ name ];
+
+			// Not quite $.extend, this won't overwrite existing keys.
+			// Reusing 'index' because we have the correct "name"
+			for ( index in value ) {
+				if ( !( index in props ) ) {
+					props[ index ] = value[ index ];
+					specialEasing[ index ] = easing;
+				}
+			}
+		} else {
+			specialEasing[ name ] = easing;
+		}
+	}
+}
+
+function Animation( elem, properties, options ) {
+	var result,
+		stopped,
+		index = 0,
+		length = Animation.prefilters.length,
+		deferred = jQuery.Deferred().always( function() {
+
+			// Don't match elem in the :animated selector
+			delete tick.elem;
+		} ),
+		tick = function() {
+			if ( stopped ) {
+				return false;
+			}
+			var currentTime = fxNow || createFxNow(),
+				remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),
+
+				// Support: Android 2.3 only
+				// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)
+				temp = remaining / animation.duration || 0,
+				percent = 1 - temp,
+				index = 0,
+				length = animation.tweens.length;
+
+			for ( ; index < length; index++ ) {
+				animation.tweens[ index ].run( percent );
+			}
+
+			deferred.notifyWith( elem, [ animation, percent, remaining ] );
+
+			// If there's more to do, yield
+			if ( percent < 1 && length ) {
+				return remaining;
+			}
+
+			// If this was an empty animation, synthesize a final progress notification
+			if ( !length ) {
+				deferred.notifyWith( elem, [ animation, 1, 0 ] );
+			}
+
+			// Resolve the animation and report its conclusion
+			deferred.resolveWith( elem, [ animation ] );
+			return false;
+		},
+		animation = deferred.promise( {
+			elem: elem,
+			props: jQuery.extend( {}, properties ),
+			opts: jQuery.extend( true, {
+				specialEasing: {},
+				easing: jQuery.easing._default
+			}, options ),
+			originalProperties: properties,
+			originalOptions: options,
+			startTime: fxNow || createFxNow(),
+			duration: options.duration,
+			tweens: [],
+			createTween: function( prop, end ) {
+				var tween = jQuery.Tween( elem, animation.opts, prop, end,
+						animation.opts.specialEasing[ prop ] || animation.opts.easing );
+				animation.tweens.push( tween );
+				return tween;
+			},
+			stop: function( gotoEnd ) {
+				var index = 0,
+
+					// If we are going to the end, we want to run all the tweens
+					// otherwise we skip this part
+					length = gotoEnd ? animation.tweens.length : 0;
+				if ( stopped ) {
+					return this;
+				}
+				stopped = true;
+				for ( ; index < length; index++ ) {
+					animation.tweens[ index ].run( 1 );
+				}
+
+				// Resolve when we played the last frame; otherwise, reject
+				if ( gotoEnd ) {
+					deferred.notifyWith( elem, [ animation, 1, 0 ] );
+					deferred.resolveWith( elem, [ animation, gotoEnd ] );
+				} else {
+					deferred.rejectWith( elem, [ animation, gotoEnd ] );
+				}
+				return this;
+			}
+		} ),
+		props = animation.props;
+
+	propFilter( props, animation.opts.specialEasing );
+
+	for ( ; index < length; index++ ) {
+		result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );
+		if ( result ) {
+			if ( isFunction( result.stop ) ) {
+				jQuery._queueHooks( animation.elem, animation.opts.queue ).stop =
+					result.stop.bind( result );
+			}
+			return result;
+		}
+	}
+
+	jQuery.map( props, createTween, animation );
+
+	if ( isFunction( animation.opts.start ) ) {
+		animation.opts.start.call( elem, animation );
+	}
+
+	// Attach callbacks from options
+	animation
+		.progress( animation.opts.progress )
+		.done( animation.opts.done, animation.opts.complete )
+		.fail( animation.opts.fail )
+		.always( animation.opts.always );
+
+	jQuery.fx.timer(
+		jQuery.extend( tick, {
+			elem: elem,
+			anim: animation,
+			queue: animation.opts.queue
+		} )
+	);
+
+	return animation;
+}
+
+jQuery.Animation = jQuery.extend( Animation, {
+
+	tweeners: {
+		"*": [ function( prop, value ) {
+			var tween = this.createTween( prop, value );
+			adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );
+			return tween;
+		} ]
+	},
+
+	tweener: function( props, callback ) {
+		if ( isFunction( props ) ) {
+			callback = props;
+			props = [ "*" ];
+		} else {
+			props = props.match( rnothtmlwhite );
+		}
+
+		var prop,
+			index = 0,
+			length = props.length;
+
+		for ( ; index < length; index++ ) {
+			prop = props[ index ];
+			Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];
+			Animation.tweeners[ prop ].unshift( callback );
+		}
+	},
+
+	prefilters: [ defaultPrefilter ],
+
+	prefilter: function( callback, prepend ) {
+		if ( prepend ) {
+			Animation.prefilters.unshift( callback );
+		} else {
+			Animation.prefilters.push( callback );
+		}
+	}
+} );
+
+jQuery.speed = function( speed, easing, fn ) {
+	var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : {
+		complete: fn || !fn && easing ||
+			isFunction( speed ) && speed,
+		duration: speed,
+		easing: fn && easing || easing && !isFunction( easing ) && easing
+	};
+
+	// Go to the end state if fx are off
+	if ( jQuery.fx.off ) {
+		opt.duration = 0;
+
+	} else {
+		if ( typeof opt.duration !== "number" ) {
+			if ( opt.duration in jQuery.fx.speeds ) {
+				opt.duration = jQuery.fx.speeds[ opt.duration ];
+
+			} else {
+				opt.duration = jQuery.fx.speeds._default;
+			}
+		}
+	}
+
+	// Normalize opt.queue - true/undefined/null -> "fx"
+	if ( opt.queue == null || opt.queue === true ) {
+		opt.queue = "fx";
+	}
+
+	// Queueing
+	opt.old = opt.complete;
+
+	opt.complete = function() {
+		if ( isFunction( opt.old ) ) {
+			opt.old.call( this );
+		}
+
+		if ( opt.queue ) {
+			jQuery.dequeue( this, opt.queue );
+		}
+	};
+
+	return opt;
+};
+
+jQuery.fn.extend( {
+	fadeTo: function( speed, to, easing, callback ) {
+
+		// Show any hidden elements after setting opacity to 0
+		return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show()
+
+			// Animate to the value specified
+			.end().animate( { opacity: to }, speed, easing, callback );
+	},
+	animate: function( prop, speed, easing, callback ) {
+		var empty = jQuery.isEmptyObject( prop ),
+			optall = jQuery.speed( speed, easing, callback ),
+			doAnimation = function() {
+
+				// Operate on a copy of prop so per-property easing won't be lost
+				var anim = Animation( this, jQuery.extend( {}, prop ), optall );
+
+				// Empty animations, or finishing resolves immediately
+				if ( empty || dataPriv.get( this, "finish" ) ) {
+					anim.stop( true );
+				}
+			};
+			doAnimation.finish = doAnimation;
+
+		return empty || optall.queue === false ?
+			this.each( doAnimation ) :
+			this.queue( optall.queue, doAnimation );
+	},
+	stop: function( type, clearQueue, gotoEnd ) {
+		var stopQueue = function( hooks ) {
+			var stop = hooks.stop;
+			delete hooks.stop;
+			stop( gotoEnd );
+		};
+
+		if ( typeof type !== "string" ) {
+			gotoEnd = clearQueue;
+			clearQueue = type;
+			type = undefined;
+		}
+		if ( clearQueue ) {
+			this.queue( type || "fx", [] );
+		}
+
+		return this.each( function() {
+			var dequeue = true,
+				index = type != null && type + "queueHooks",
+				timers = jQuery.timers,
+				data = dataPriv.get( this );
+
+			if ( index ) {
+				if ( data[ index ] && data[ index ].stop ) {
+					stopQueue( data[ index ] );
+				}
+			} else {
+				for ( index in data ) {
+					if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {
+						stopQueue( data[ index ] );
+					}
+				}
+			}
+
+			for ( index = timers.length; index--; ) {
+				if ( timers[ index ].elem === this &&
+					( type == null || timers[ index ].queue === type ) ) {
+
+					timers[ index ].anim.stop( gotoEnd );
+					dequeue = false;
+					timers.splice( index, 1 );
+				}
+			}
+
+			// Start the next in the queue if the last step wasn't forced.
+			// Timers currently will call their complete callbacks, which
+			// will dequeue but only if they were gotoEnd.
+			if ( dequeue || !gotoEnd ) {
+				jQuery.dequeue( this, type );
+			}
+		} );
+	},
+	finish: function( type ) {
+		if ( type !== false ) {
+			type = type || "fx";
+		}
+		return this.each( function() {
+			var index,
+				data = dataPriv.get( this ),
+				queue = data[ type + "queue" ],
+				hooks = data[ type + "queueHooks" ],
+				timers = jQuery.timers,
+				length = queue ? queue.length : 0;
+
+			// Enable finishing flag on private data
+			data.finish = true;
+
+			// Empty the queue first
+			jQuery.queue( this, type, [] );
+
+			if ( hooks && hooks.stop ) {
+				hooks.stop.call( this, true );
+			}
+
+			// Look for any active animations, and finish them
+			for ( index = timers.length; index--; ) {
+				if ( timers[ index ].elem === this && timers[ index ].queue === type ) {
+					timers[ index ].anim.stop( true );
+					timers.splice( index, 1 );
+				}
+			}
+
+			// Look for any animations in the old queue and finish them
+			for ( index = 0; index < length; index++ ) {
+				if ( queue[ index ] && queue[ index ].finish ) {
+					queue[ index ].finish.call( this );
+				}
+			}
+
+			// Turn off finishing flag
+			delete data.finish;
+		} );
+	}
+} );
+
+jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) {
+	var cssFn = jQuery.fn[ name ];
+	jQuery.fn[ name ] = function( speed, easing, callback ) {
+		return speed == null || typeof speed === "boolean" ?
+			cssFn.apply( this, arguments ) :
+			this.animate( genFx( name, true ), speed, easing, callback );
+	};
+} );
+
+// Generate shortcuts for custom animations
+jQuery.each( {
+	slideDown: genFx( "show" ),
+	slideUp: genFx( "hide" ),
+	slideToggle: genFx( "toggle" ),
+	fadeIn: { opacity: "show" },
+	fadeOut: { opacity: "hide" },
+	fadeToggle: { opacity: "toggle" }
+}, function( name, props ) {
+	jQuery.fn[ name ] = function( speed, easing, callback ) {
+		return this.animate( props, speed, easing, callback );
+	};
+} );
+
+jQuery.timers = [];
+jQuery.fx.tick = function() {
+	var timer,
+		i = 0,
+		timers = jQuery.timers;
+
+	fxNow = Date.now();
+
+	for ( ; i < timers.length; i++ ) {
+		timer = timers[ i ];
+
+		// Run the timer and safely remove it when done (allowing for external removal)
+		if ( !timer() && timers[ i ] === timer ) {
+			timers.splice( i--, 1 );
+		}
+	}
+
+	if ( !timers.length ) {
+		jQuery.fx.stop();
+	}
+	fxNow = undefined;
+};
+
+jQuery.fx.timer = function( timer ) {
+	jQuery.timers.push( timer );
+	jQuery.fx.start();
+};
+
+jQuery.fx.interval = 13;
+jQuery.fx.start = function() {
+	if ( inProgress ) {
+		return;
+	}
+
+	inProgress = true;
+	schedule();
+};
+
+jQuery.fx.stop = function() {
+	inProgress = null;
+};
+
+jQuery.fx.speeds = {
+	slow: 600,
+	fast: 200,
+
+	// Default speed
+	_default: 400
+};
+
+
+// Based off of the plugin by Clint Helfers, with permission.
+// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
+jQuery.fn.delay = function( time, type ) {
+	time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
+	type = type || "fx";
+
+	return this.queue( type, function( next, hooks ) {
+		var timeout = window.setTimeout( next, time );
+		hooks.stop = function() {
+			window.clearTimeout( timeout );
+		};
+	} );
+};
+
+
+( function() {
+	var input = document.createElement( "input" ),
+		select = document.createElement( "select" ),
+		opt = select.appendChild( document.createElement( "option" ) );
+
+	input.type = "checkbox";
+
+	// Support: Android <=4.3 only
+	// Default value for a checkbox should be "on"
+	support.checkOn = input.value !== "";
+
+	// Support: IE <=11 only
+	// Must access selectedIndex to make default options select
+	support.optSelected = opt.selected;
+
+	// Support: IE <=11 only
+	// An input loses its value after becoming a radio
+	input = document.createElement( "input" );
+	input.value = "t";
+	input.type = "radio";
+	support.radioValue = input.value === "t";
+} )();
+
+
+var boolHook,
+	attrHandle = jQuery.expr.attrHandle;
+
+jQuery.fn.extend( {
+	attr: function( name, value ) {
+		return access( this, jQuery.attr, name, value, arguments.length > 1 );
+	},
+
+	removeAttr: function( name ) {
+		return this.each( function() {
+			jQuery.removeAttr( this, name );
+		} );
+	}
+} );
+
+jQuery.extend( {
+	attr: function( elem, name, value ) {
+		var ret, hooks,
+			nType = elem.nodeType;
+
+		// Don't get/set attributes on text, comment and attribute nodes
+		if ( nType === 3 || nType === 8 || nType === 2 ) {
+			return;
+		}
+
+		// Fallback to prop when attributes are not supported
+		if ( typeof elem.getAttribute === "undefined" ) {
+			return jQuery.prop( elem, name, value );
+		}
+
+		// Attribute hooks are determined by the lowercase version
+		// Grab necessary hook if one is defined
+		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
+			hooks = jQuery.attrHooks[ name.toLowerCase() ] ||
+				( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
+		}
+
+		if ( value !== undefined ) {
+			if ( value === null ) {
+				jQuery.removeAttr( elem, name );
+				return;
+			}
+
+			if ( hooks && "set" in hooks &&
+				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
+				return ret;
+			}
+
+			elem.setAttribute( name, value + "" );
+			return value;
+		}
+
+		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
+			return ret;
+		}
+
+		ret = jQuery.find.attr( elem, name );
+
+		// Non-existent attributes return null, we normalize to undefined
+		return ret == null ? undefined : ret;
+	},
+
+	attrHooks: {
+		type: {
+			set: function( elem, value ) {
+				if ( !support.radioValue && value === "radio" &&
+					nodeName( elem, "input" ) ) {
+					var val = elem.value;
+					elem.setAttribute( "type", value );
+					if ( val ) {
+						elem.value = val;
+					}
+					return value;
+				}
+			}
+		}
+	},
+
+	removeAttr: function( elem, value ) {
+		var name,
+			i = 0,
+
+			// Attribute names can contain non-HTML whitespace characters
+			// https://html.spec.whatwg.org/multipage/syntax.html#attributes-2
+			attrNames = value && value.match( rnothtmlwhite );
+
+		if ( attrNames && elem.nodeType === 1 ) {
+			while ( ( name = attrNames[ i++ ] ) ) {
+				elem.removeAttribute( name );
+			}
+		}
+	}
+} );
+
+// Hooks for boolean attributes
+boolHook = {
+	set: function( elem, value, name ) {
+		if ( value === false ) {
+
+			// Remove boolean attributes when set to false
+			jQuery.removeAttr( elem, name );
+		} else {
+			elem.setAttribute( name, name );
+		}
+		return name;
+	}
+};
+
+jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) {
+	var getter = attrHandle[ name ] || jQuery.find.attr;
+
+	attrHandle[ name ] = function( elem, name, isXML ) {
+		var ret, handle,
+			lowercaseName = name.toLowerCase();
+
+		if ( !isXML ) {
+
+			// Avoid an infinite loop by temporarily removing this function from the getter
+			handle = attrHandle[ lowercaseName ];
+			attrHandle[ lowercaseName ] = ret;
+			ret = getter( elem, name, isXML ) != null ?
+				lowercaseName :
+				null;
+			attrHandle[ lowercaseName ] = handle;
+		}
+		return ret;
+	};
+} );
+
+
+
+
+var rfocusable = /^(?:input|select|textarea|button)$/i,
+	rclickable = /^(?:a|area)$/i;
+
+jQuery.fn.extend( {
+	prop: function( name, value ) {
+		return access( this, jQuery.prop, name, value, arguments.length > 1 );
+	},
+
+	removeProp: function( name ) {
+		return this.each( function() {
+			delete this[ jQuery.propFix[ name ] || name ];
+		} );
+	}
+} );
+
+jQuery.extend( {
+	prop: function( elem, name, value ) {
+		var ret, hooks,
+			nType = elem.nodeType;
+
+		// Don't get/set properties on text, comment and attribute nodes
+		if ( nType === 3 || nType === 8 || nType === 2 ) {
+			return;
+		}
+
+		if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {
+
+			// Fix name and attach hooks
+			name = jQuery.propFix[ name ] || name;
+			hooks = jQuery.propHooks[ name ];
+		}
+
+		if ( value !== undefined ) {
+			if ( hooks && "set" in hooks &&
+				( ret = hooks.set( elem, value, name ) ) !== undefined ) {
+				return ret;
+			}
+
+			return ( elem[ name ] = value );
+		}
+
+		if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {
+			return ret;
+		}
+
+		return elem[ name ];
+	},
+
+	propHooks: {
+		tabIndex: {
+			get: function( elem ) {
+
+				// Support: IE <=9 - 11 only
+				// elem.tabIndex doesn't always return the
+				// correct value when it hasn't been explicitly set
+				// https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/
+				// Use proper attribute retrieval(#12072)
+				var tabindex = jQuery.find.attr( elem, "tabindex" );
+
+				if ( tabindex ) {
+					return parseInt( tabindex, 10 );
+				}
+
+				if (
+					rfocusable.test( elem.nodeName ) ||
+					rclickable.test( elem.nodeName ) &&
+					elem.href
+				) {
+					return 0;
+				}
+
+				return -1;
+			}
+		}
+	},
+
+	propFix: {
+		"for": "htmlFor",
+		"class": "className"
+	}
+} );
+
+// Support: IE <=11 only
+// Accessing the selectedIndex property
+// forces the browser to respect setting selected
+// on the option
+// The getter ensures a default option is selected
+// when in an optgroup
+// eslint rule "no-unused-expressions" is disabled for this code
+// since it considers such accessions noop
+if ( !support.optSelected ) {
+	jQuery.propHooks.selected = {
+		get: function( elem ) {
+
+			/* eslint no-unused-expressions: "off" */
+
+			var parent = elem.parentNode;
+			if ( parent && parent.parentNode ) {
+				parent.parentNode.selectedIndex;
+			}
+			return null;
+		},
+		set: function( elem ) {
+
+			/* eslint no-unused-expressions: "off" */
+
+			var parent = elem.parentNode;
+			if ( parent ) {
+				parent.selectedIndex;
+
+				if ( parent.parentNode ) {
+					parent.parentNode.selectedIndex;
+				}
+			}
+		}
+	};
+}
+
+jQuery.each( [
+	"tabIndex",
+	"readOnly",
+	"maxLength",
+	"cellSpacing",
+	"cellPadding",
+	"rowSpan",
+	"colSpan",
+	"useMap",
+	"frameBorder",
+	"contentEditable"
+], function() {
+	jQuery.propFix[ this.toLowerCase() ] = this;
+} );
+
+
+
+
+	// Strip and collapse whitespace according to HTML spec
+	// https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
+	function stripAndCollapse( value ) {
+		var tokens = value.match( rnothtmlwhite ) || [];
+		return tokens.join( " " );
+	}
+
+
+function getClass( elem ) {
+	return elem.getAttribute && elem.getAttribute( "class" ) || "";
+}
+
+function classesToArray( value ) {
+	if ( Array.isArray( value ) ) {
+		return value;
+	}
+	if ( typeof value === "string" ) {
+		return value.match( rnothtmlwhite ) || [];
+	}
+	return [];
+}
+
+jQuery.fn.extend( {
+	addClass: function( value ) {
+		var classes, elem, cur, curValue, clazz, j, finalValue,
+			i = 0;
+
+		if ( isFunction( value ) ) {
+			return this.each( function( j ) {
+				jQuery( this ).addClass( value.call( this, j, getClass( this ) ) );
+			} );
+		}
+
+		classes = classesToArray( value );
+
+		if ( classes.length ) {
+			while ( ( elem = this[ i++ ] ) ) {
+				curValue = getClass( elem );
+				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
+
+				if ( cur ) {
+					j = 0;
+					while ( ( clazz = classes[ j++ ] ) ) {
+						if ( cur.indexOf( " " + clazz + " " ) < 0 ) {
+							cur += clazz + " ";
+						}
+					}
+
+					// Only assign if different to avoid unneeded rendering.
+					finalValue = stripAndCollapse( cur );
+					if ( curValue !== finalValue ) {
+						elem.setAttribute( "class", finalValue );
+					}
+				}
+			}
+		}
+
+		return this;
+	},
+
+	removeClass: function( value ) {
+		var classes, elem, cur, curValue, clazz, j, finalValue,
+			i = 0;
+
+		if ( isFunction( value ) ) {
+			return this.each( function( j ) {
+				jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );
+			} );
+		}
+
+		if ( !arguments.length ) {
+			return this.attr( "class", "" );
+		}
+
+		classes = classesToArray( value );
+
+		if ( classes.length ) {
+			while ( ( elem = this[ i++ ] ) ) {
+				curValue = getClass( elem );
+
+				// This expression is here for better compressibility (see addClass)
+				cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " );
+
+				if ( cur ) {
+					j = 0;
+					while ( ( clazz = classes[ j++ ] ) ) {
+
+						// Remove *all* instances
+						while ( cur.indexOf( " " + clazz + " " ) > -1 ) {
+							cur = cur.replace( " " + clazz + " ", " " );
+						}
+					}
+
+					// Only assign if different to avoid unneeded rendering.
+					finalValue = stripAndCollapse( cur );
+					if ( curValue !== finalValue ) {
+						elem.setAttribute( "class", finalValue );
+					}
+				}
+			}
+		}
+
+		return this;
+	},
+
+	toggleClass: function( value, stateVal ) {
+		var type = typeof value,
+			isValidValue = type === "string" || Array.isArray( value );
+
+		if ( typeof stateVal === "boolean" && isValidValue ) {
+			return stateVal ? this.addClass( value ) : this.removeClass( value );
+		}
+
+		if ( isFunction( value ) ) {
+			return this.each( function( i ) {
+				jQuery( this ).toggleClass(
+					value.call( this, i, getClass( this ), stateVal ),
+					stateVal
+				);
+			} );
+		}
+
+		return this.each( function() {
+			var className, i, self, classNames;
+
+			if ( isValidValue ) {
+
+				// Toggle individual class names
+				i = 0;
+				self = jQuery( this );
+				classNames = classesToArray( value );
+
+				while ( ( className = classNames[ i++ ] ) ) {
+
+					// Check each className given, space separated list
+					if ( self.hasClass( className ) ) {
+						self.removeClass( className );
+					} else {
+						self.addClass( className );
+					}
+				}
+
+			// Toggle whole class name
+			} else if ( value === undefined || type === "boolean" ) {
+				className = getClass( this );
+				if ( className ) {
+
+					// Store className if set
+					dataPriv.set( this, "__className__", className );
+				}
+
+				// If the element has a class name or if we're passed `false`,
+				// then remove the whole classname (if there was one, the above saved it).
+				// Otherwise bring back whatever was previously saved (if anything),
+				// falling back to the empty string if nothing was stored.
+				if ( this.setAttribute ) {
+					this.setAttribute( "class",
+						className || value === false ?
+						"" :
+						dataPriv.get( this, "__className__" ) || ""
+					);
+				}
+			}
+		} );
+	},
+
+	hasClass: function( selector ) {
+		var className, elem,
+			i = 0;
+
+		className = " " + selector + " ";
+		while ( ( elem = this[ i++ ] ) ) {
+			if ( elem.nodeType === 1 &&
+				( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) {
+					return true;
+			}
+		}
+
+		return false;
+	}
+} );
+
+
+
+
+var rreturn = /\r/g;
+
+jQuery.fn.extend( {
+	val: function( value ) {
+		var hooks, ret, valueIsFunction,
+			elem = this[ 0 ];
+
+		if ( !arguments.length ) {
+			if ( elem ) {
+				hooks = jQuery.valHooks[ elem.type ] ||
+					jQuery.valHooks[ elem.nodeName.toLowerCase() ];
+
+				if ( hooks &&
+					"get" in hooks &&
+					( ret = hooks.get( elem, "value" ) ) !== undefined
+				) {
+					return ret;
+				}
+
+				ret = elem.value;
+
+				// Handle most common string cases
+				if ( typeof ret === "string" ) {
+					return ret.replace( rreturn, "" );
+				}
+
+				// Handle cases where value is null/undef or number
+				return ret == null ? "" : ret;
+			}
+
+			return;
+		}
+
+		valueIsFunction = isFunction( value );
+
+		return this.each( function( i ) {
+			var val;
+
+			if ( this.nodeType !== 1 ) {
+				return;
+			}
+
+			if ( valueIsFunction ) {
+				val = value.call( this, i, jQuery( this ).val() );
+			} else {
+				val = value;
+			}
+
+			// Treat null/undefined as ""; convert numbers to string
+			if ( val == null ) {
+				val = "";
+
+			} else if ( typeof val === "number" ) {
+				val += "";
+
+			} else if ( Array.isArray( val ) ) {
+				val = jQuery.map( val, function( value ) {
+					return value == null ? "" : value + "";
+				} );
+			}
+
+			hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];
+
+			// If set returns undefined, fall back to normal setting
+			if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) {
+				this.value = val;
+			}
+		} );
+	}
+} );
+
+jQuery.extend( {
+	valHooks: {
+		option: {
+			get: function( elem ) {
+
+				var val = jQuery.find.attr( elem, "value" );
+				return val != null ?
+					val :
+
+					// Support: IE <=10 - 11 only
+					// option.text throws exceptions (#14686, #14858)
+					// Strip and collapse whitespace
+					// https://html.spec.whatwg.org/#strip-and-collapse-whitespace
+					stripAndCollapse( jQuery.text( elem ) );
+			}
+		},
+		select: {
+			get: function( elem ) {
+				var value, option, i,
+					options = elem.options,
+					index = elem.selectedIndex,
+					one = elem.type === "select-one",
+					values = one ? null : [],
+					max = one ? index + 1 : options.length;
+
+				if ( index < 0 ) {
+					i = max;
+
+				} else {
+					i = one ? index : 0;
+				}
+
+				// Loop through all the selected options
+				for ( ; i < max; i++ ) {
+					option = options[ i ];
+
+					// Support: IE <=9 only
+					// IE8-9 doesn't update selected after form reset (#2551)
+					if ( ( option.selected || i === index ) &&
+
+							// Don't return options that are disabled or in a disabled optgroup
+							!option.disabled &&
+							( !option.parentNode.disabled ||
+								!nodeName( option.parentNode, "optgroup" ) ) ) {
+
+						// Get the specific value for the option
+						value = jQuery( option ).val();
+
+						// We don't need an array for one selects
+						if ( one ) {
+							return value;
+						}
+
+						// Multi-Selects return an array
+						values.push( value );
+					}
+				}
+
+				return values;
+			},
+
+			set: function( elem, value ) {
+				var optionSet, option,
+					options = elem.options,
+					values = jQuery.makeArray( value ),
+					i = options.length;
+
+				while ( i-- ) {
+					option = options[ i ];
+
+					/* eslint-disable no-cond-assign */
+
+					if ( option.selected =
+						jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1
+					) {
+						optionSet = true;
+					}
+
+					/* eslint-enable no-cond-assign */
+				}
+
+				// Force browsers to behave consistently when non-matching value is set
+				if ( !optionSet ) {
+					elem.selectedIndex = -1;
+				}
+				return values;
+			}
+		}
+	}
+} );
+
+// Radios and checkboxes getter/setter
+jQuery.each( [ "radio", "checkbox" ], function() {
+	jQuery.valHooks[ this ] = {
+		set: function( elem, value ) {
+			if ( Array.isArray( value ) ) {
+				return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );
+			}
+		}
+	};
+	if ( !support.checkOn ) {
+		jQuery.valHooks[ this ].get = function( elem ) {
+			return elem.getAttribute( "value" ) === null ? "on" : elem.value;
+		};
+	}
+} );
+
+
+
+
+// Return jQuery for attributes-only inclusion
+
+
+support.focusin = "onfocusin" in window;
+
+
+var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,
+	stopPropagationCallback = function( e ) {
+		e.stopPropagation();
+	};
+
+jQuery.extend( jQuery.event, {
+
+	trigger: function( event, data, elem, onlyHandlers ) {
+
+		var i, cur, tmp, bubbleType, ontype, handle, special, lastElement,
+			eventPath = [ elem || document ],
+			type = hasOwn.call( event, "type" ) ? event.type : event,
+			namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : [];
+
+		cur = lastElement = tmp = elem = elem || document;
+
+		// Don't do events on text and comment nodes
+		if ( elem.nodeType === 3 || elem.nodeType === 8 ) {
+			return;
+		}
+
+		// focus/blur morphs to focusin/out; ensure we're not firing them right now
+		if ( rfocusMorph.test( type + jQuery.event.triggered ) ) {
+			return;
+		}
+
+		if ( type.indexOf( "." ) > -1 ) {
+
+			// Namespaced trigger; create a regexp to match event type in handle()
+			namespaces = type.split( "." );
+			type = namespaces.shift();
+			namespaces.sort();
+		}
+		ontype = type.indexOf( ":" ) < 0 && "on" + type;
+
+		// Caller can pass in a jQuery.Event object, Object, or just an event type string
+		event = event[ jQuery.expando ] ?
+			event :
+			new jQuery.Event( type, typeof event === "object" && event );
+
+		// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)
+		event.isTrigger = onlyHandlers ? 2 : 3;
+		event.namespace = namespaces.join( "." );
+		event.rnamespace = event.namespace ?
+			new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) :
+			null;
+
+		// Clean up the event in case it is being reused
+		event.result = undefined;
+		if ( !event.target ) {
+			event.target = elem;
+		}
+
+		// Clone any incoming data and prepend the event, creating the handler arg list
+		data = data == null ?
+			[ event ] :
+			jQuery.makeArray( data, [ event ] );
+
+		// Allow special events to draw outside the lines
+		special = jQuery.event.special[ type ] || {};
+		if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {
+			return;
+		}
+
+		// Determine event propagation path in advance, per W3C events spec (#9951)
+		// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)
+		if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) {
+
+			bubbleType = special.delegateType || type;
+			if ( !rfocusMorph.test( bubbleType + type ) ) {
+				cur = cur.parentNode;
+			}
+			for ( ; cur; cur = cur.parentNode ) {
+				eventPath.push( cur );
+				tmp = cur;
+			}
+
+			// Only add window if we got to document (e.g., not plain obj or detached DOM)
+			if ( tmp === ( elem.ownerDocument || document ) ) {
+				eventPath.push( tmp.defaultView || tmp.parentWindow || window );
+			}
+		}
+
+		// Fire handlers on the event path
+		i = 0;
+		while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {
+			lastElement = cur;
+			event.type = i > 1 ?
+				bubbleType :
+				special.bindType || type;
+
+			// jQuery handler
+			handle = (
+					dataPriv.get( cur, "events" ) || Object.create( null )
+				)[ event.type ] &&
+				dataPriv.get( cur, "handle" );
+			if ( handle ) {
+				handle.apply( cur, data );
+			}
+
+			// Native handler
+			handle = ontype && cur[ ontype ];
+			if ( handle && handle.apply && acceptData( cur ) ) {
+				event.result = handle.apply( cur, data );
+				if ( event.result === false ) {
+					event.preventDefault();
+				}
+			}
+		}
+		event.type = type;
+
+		// If nobody prevented the default action, do it now
+		if ( !onlyHandlers && !event.isDefaultPrevented() ) {
+
+			if ( ( !special._default ||
+				special._default.apply( eventPath.pop(), data ) === false ) &&
+				acceptData( elem ) ) {
+
+				// Call a native DOM method on the target with the same name as the event.
+				// Don't do default actions on window, that's where global variables be (#6170)
+				if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) {
+
+					// Don't re-trigger an onFOO event when we call its FOO() method
+					tmp = elem[ ontype ];
+
+					if ( tmp ) {
+						elem[ ontype ] = null;
+					}
+
+					// Prevent re-triggering of the same event, since we already bubbled it above
+					jQuery.event.triggered = type;
+
+					if ( event.isPropagationStopped() ) {
+						lastElement.addEventListener( type, stopPropagationCallback );
+					}
+
+					elem[ type ]();
+
+					if ( event.isPropagationStopped() ) {
+						lastElement.removeEventListener( type, stopPropagationCallback );
+					}
+
+					jQuery.event.triggered = undefined;
+
+					if ( tmp ) {
+						elem[ ontype ] = tmp;
+					}
+				}
+			}
+		}
+
+		return event.result;
+	},
+
+	// Piggyback on a donor event to simulate a different one
+	// Used only for `focus(in | out)` events
+	simulate: function( type, elem, event ) {
+		var e = jQuery.extend(
+			new jQuery.Event(),
+			event,
+			{
+				type: type,
+				isSimulated: true
+			}
+		);
+
+		jQuery.event.trigger( e, null, elem );
+	}
+
+} );
+
+jQuery.fn.extend( {
+
+	trigger: function( type, data ) {
+		return this.each( function() {
+			jQuery.event.trigger( type, data, this );
+		} );
+	},
+	triggerHandler: function( type, data ) {
+		var elem = this[ 0 ];
+		if ( elem ) {
+			return jQuery.event.trigger( type, data, elem, true );
+		}
+	}
+} );
+
+
+// Support: Firefox <=44
+// Firefox doesn't have focus(in | out) events
+// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787
+//
+// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1
+// focus(in | out) events fire after focus & blur events,
+// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order
+// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857
+if ( !support.focusin ) {
+	jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) {
+
+		// Attach a single capturing handler on the document while someone wants focusin/focusout
+		var handler = function( event ) {
+			jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );
+		};
+
+		jQuery.event.special[ fix ] = {
+			setup: function() {
+
+				// Handle: regular nodes (via `this.ownerDocument`), window
+				// (via `this.document`) & document (via `this`).
+				var doc = this.ownerDocument || this.document || this,
+					attaches = dataPriv.access( doc, fix );
+
+				if ( !attaches ) {
+					doc.addEventListener( orig, handler, true );
+				}
+				dataPriv.access( doc, fix, ( attaches || 0 ) + 1 );
+			},
+			teardown: function() {
+				var doc = this.ownerDocument || this.document || this,
+					attaches = dataPriv.access( doc, fix ) - 1;
+
+				if ( !attaches ) {
+					doc.removeEventListener( orig, handler, true );
+					dataPriv.remove( doc, fix );
+
+				} else {
+					dataPriv.access( doc, fix, attaches );
+				}
+			}
+		};
+	} );
+}
+var location = window.location;
+
+var nonce = { guid: Date.now() };
+
+var rquery = ( /\?/ );
+
+
+
+// Cross-browser xml parsing
+jQuery.parseXML = function( data ) {
+	var xml;
+	if ( !data || typeof data !== "string" ) {
+		return null;
+	}
+
+	// Support: IE 9 - 11 only
+	// IE throws on parseFromString with invalid input.
+	try {
+		xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" );
+	} catch ( e ) {
+		xml = undefined;
+	}
+
+	if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) {
+		jQuery.error( "Invalid XML: " + data );
+	}
+	return xml;
+};
+
+
+var
+	rbracket = /\[\]$/,
+	rCRLF = /\r?\n/g,
+	rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,
+	rsubmittable = /^(?:input|select|textarea|keygen)/i;
+
+function buildParams( prefix, obj, traditional, add ) {
+	var name;
+
+	if ( Array.isArray( obj ) ) {
+
+		// Serialize array item.
+		jQuery.each( obj, function( i, v ) {
+			if ( traditional || rbracket.test( prefix ) ) {
+
+				// Treat each array item as a scalar.
+				add( prefix, v );
+
+			} else {
+
+				// Item is non-scalar (array or object), encode its numeric index.
+				buildParams(
+					prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]",
+					v,
+					traditional,
+					add
+				);
+			}
+		} );
+
+	} else if ( !traditional && toType( obj ) === "object" ) {
+
+		// Serialize object item.
+		for ( name in obj ) {
+			buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add );
+		}
+
+	} else {
+
+		// Serialize scalar item.
+		add( prefix, obj );
+	}
+}
+
+// Serialize an array of form elements or a set of
+// key/values into a query string
+jQuery.param = function( a, traditional ) {
+	var prefix,
+		s = [],
+		add = function( key, valueOrFunction ) {
+
+			// If value is a function, invoke it and use its return value
+			var value = isFunction( valueOrFunction ) ?
+				valueOrFunction() :
+				valueOrFunction;
+
+			s[ s.length ] = encodeURIComponent( key ) + "=" +
+				encodeURIComponent( value == null ? "" : value );
+		};
+
+	if ( a == null ) {
+		return "";
+	}
+
+	// If an array was passed in, assume that it is an array of form elements.
+	if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {
+
+		// Serialize the form elements
+		jQuery.each( a, function() {
+			add( this.name, this.value );
+		} );
+
+	} else {
+
+		// If traditional, encode the "old" way (the way 1.3.2 or older
+		// did it), otherwise encode params recursively.
+		for ( prefix in a ) {
+			buildParams( prefix, a[ prefix ], traditional, add );
+		}
+	}
+
+	// Return the resulting serialization
+	return s.join( "&" );
+};
+
+jQuery.fn.extend( {
+	serialize: function() {
+		return jQuery.param( this.serializeArray() );
+	},
+	serializeArray: function() {
+		return this.map( function() {
+
+			// Can add propHook for "elements" to filter or add form elements
+			var elements = jQuery.prop( this, "elements" );
+			return elements ? jQuery.makeArray( elements ) : this;
+		} )
+		.filter( function() {
+			var type = this.type;
+
+			// Use .is( ":disabled" ) so that fieldset[disabled] works
+			return this.name && !jQuery( this ).is( ":disabled" ) &&
+				rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&
+				( this.checked || !rcheckableType.test( type ) );
+		} )
+		.map( function( _i, elem ) {
+			var val = jQuery( this ).val();
+
+			if ( val == null ) {
+				return null;
+			}
+
+			if ( Array.isArray( val ) ) {
+				return jQuery.map( val, function( val ) {
+					return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
+				} );
+			}
+
+			return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
+		} ).get();
+	}
+} );
+
+
+var
+	r20 = /%20/g,
+	rhash = /#.*$/,
+	rantiCache = /([?&])_=[^&]*/,
+	rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
+
+	// #7653, #8125, #8152: local protocol detection
+	rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
+	rnoContent = /^(?:GET|HEAD)$/,
+	rprotocol = /^\/\//,
+
+	/* Prefilters
+	 * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
+	 * 2) These are called:
+	 *    - BEFORE asking for a transport
+	 *    - AFTER param serialization (s.data is a string if s.processData is true)
+	 * 3) key is the dataType
+	 * 4) the catchall symbol "*" can be used
+	 * 5) execution will start with transport dataType and THEN continue down to "*" if needed
+	 */
+	prefilters = {},
+
+	/* Transports bindings
+	 * 1) key is the dataType
+	 * 2) the catchall symbol "*" can be used
+	 * 3) selection will start with transport dataType and THEN go to "*" if needed
+	 */
+	transports = {},
+
+	// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
+	allTypes = "*/".concat( "*" ),
+
+	// Anchor tag for parsing the document origin
+	originAnchor = document.createElement( "a" );
+	originAnchor.href = location.href;
+
+// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
+function addToPrefiltersOrTransports( structure ) {
+
+	// dataTypeExpression is optional and defaults to "*"
+	return function( dataTypeExpression, func ) {
+
+		if ( typeof dataTypeExpression !== "string" ) {
+			func = dataTypeExpression;
+			dataTypeExpression = "*";
+		}
+
+		var dataType,
+			i = 0,
+			dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
+
+		if ( isFunction( func ) ) {
+
+			// For each dataType in the dataTypeExpression
+			while ( ( dataType = dataTypes[ i++ ] ) ) {
+
+				// Prepend if requested
+				if ( dataType[ 0 ] === "+" ) {
+					dataType = dataType.slice( 1 ) || "*";
+					( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );
+
+				// Otherwise append
+				} else {
+					( structure[ dataType ] = structure[ dataType ] || [] ).push( func );
+				}
+			}
+		}
+	};
+}
+
+// Base inspection function for prefilters and transports
+function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
+
+	var inspected = {},
+		seekingTransport = ( structure === transports );
+
+	function inspect( dataType ) {
+		var selected;
+		inspected[ dataType ] = true;
+		jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
+			var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
+			if ( typeof dataTypeOrTransport === "string" &&
+				!seekingTransport && !inspected[ dataTypeOrTransport ] ) {
+
+				options.dataTypes.unshift( dataTypeOrTransport );
+				inspect( dataTypeOrTransport );
+				return false;
+			} else if ( seekingTransport ) {
+				return !( selected = dataTypeOrTransport );
+			}
+		} );
+		return selected;
+	}
+
+	return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
+}
+
+// A special extend for ajax options
+// that takes "flat" options (not to be deep extended)
+// Fixes #9887
+function ajaxExtend( target, src ) {
+	var key, deep,
+		flatOptions = jQuery.ajaxSettings.flatOptions || {};
+
+	for ( key in src ) {
+		if ( src[ key ] !== undefined ) {
+			( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
+		}
+	}
+	if ( deep ) {
+		jQuery.extend( true, target, deep );
+	}
+
+	return target;
+}
+
+/* Handles responses to an ajax request:
+ * - finds the right dataType (mediates between content-type and expected dataType)
+ * - returns the corresponding response
+ */
+function ajaxHandleResponses( s, jqXHR, responses ) {
+
+	var ct, type, finalDataType, firstDataType,
+		contents = s.contents,
+		dataTypes = s.dataTypes;
+
+	// Remove auto dataType and get content-type in the process
+	while ( dataTypes[ 0 ] === "*" ) {
+		dataTypes.shift();
+		if ( ct === undefined ) {
+			ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" );
+		}
+	}
+
+	// Check if we're dealing with a known content-type
+	if ( ct ) {
+		for ( type in contents ) {
+			if ( contents[ type ] && contents[ type ].test( ct ) ) {
+				dataTypes.unshift( type );
+				break;
+			}
+		}
+	}
+
+	// Check to see if we have a response for the expected dataType
+	if ( dataTypes[ 0 ] in responses ) {
+		finalDataType = dataTypes[ 0 ];
+	} else {
+
+		// Try convertible dataTypes
+		for ( type in responses ) {
+			if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) {
+				finalDataType = type;
+				break;
+			}
+			if ( !firstDataType ) {
+				firstDataType = type;
+			}
+		}
+
+		// Or just use first one
+		finalDataType = finalDataType || firstDataType;
+	}
+
+	// If we found a dataType
+	// We add the dataType to the list if needed
+	// and return the corresponding response
+	if ( finalDataType ) {
+		if ( finalDataType !== dataTypes[ 0 ] ) {
+			dataTypes.unshift( finalDataType );
+		}
+		return responses[ finalDataType ];
+	}
+}
+
+/* Chain conversions given the request and the original response
+ * Also sets the responseXXX fields on the jqXHR instance
+ */
+function ajaxConvert( s, response, jqXHR, isSuccess ) {
+	var conv2, current, conv, tmp, prev,
+		converters = {},
+
+		// Work with a copy of dataTypes in case we need to modify it for conversion
+		dataTypes = s.dataTypes.slice();
+
+	// Create converters map with lowercased keys
+	if ( dataTypes[ 1 ] ) {
+		for ( conv in s.converters ) {
+			converters[ conv.toLowerCase() ] = s.converters[ conv ];
+		}
+	}
+
+	current = dataTypes.shift();
+
+	// Convert to each sequential dataType
+	while ( current ) {
+
+		if ( s.responseFields[ current ] ) {
+			jqXHR[ s.responseFields[ current ] ] = response;
+		}
+
+		// Apply the dataFilter if provided
+		if ( !prev && isSuccess && s.dataFilter ) {
+			response = s.dataFilter( response, s.dataType );
+		}
+
+		prev = current;
+		current = dataTypes.shift();
+
+		if ( current ) {
+
+			// There's only work to do if current dataType is non-auto
+			if ( current === "*" ) {
+
+				current = prev;
+
+			// Convert response if prev dataType is non-auto and differs from current
+			} else if ( prev !== "*" && prev !== current ) {
+
+				// Seek a direct converter
+				conv = converters[ prev + " " + current ] || converters[ "* " + current ];
+
+				// If none found, seek a pair
+				if ( !conv ) {
+					for ( conv2 in converters ) {
+
+						// If conv2 outputs current
+						tmp = conv2.split( " " );
+						if ( tmp[ 1 ] === current ) {
+
+							// If prev can be converted to accepted input
+							conv = converters[ prev + " " + tmp[ 0 ] ] ||
+								converters[ "* " + tmp[ 0 ] ];
+							if ( conv ) {
+
+								// Condense equivalence converters
+								if ( conv === true ) {
+									conv = converters[ conv2 ];
+
+								// Otherwise, insert the intermediate dataType
+								} else if ( converters[ conv2 ] !== true ) {
+									current = tmp[ 0 ];
+									dataTypes.unshift( tmp[ 1 ] );
+								}
+								break;
+							}
+						}
+					}
+				}
+
+				// Apply converter (if not an equivalence)
+				if ( conv !== true ) {
+
+					// Unless errors are allowed to bubble, catch and return them
+					if ( conv && s.throws ) {
+						response = conv( response );
+					} else {
+						try {
+							response = conv( response );
+						} catch ( e ) {
+							return {
+								state: "parsererror",
+								error: conv ? e : "No conversion from " + prev + " to " + current
+							};
+						}
+					}
+				}
+			}
+		}
+	}
+
+	return { state: "success", data: response };
+}
+
+jQuery.extend( {
+
+	// Counter for holding the number of active queries
+	active: 0,
+
+	// Last-Modified header cache for next request
+	lastModified: {},
+	etag: {},
+
+	ajaxSettings: {
+		url: location.href,
+		type: "GET",
+		isLocal: rlocalProtocol.test( location.protocol ),
+		global: true,
+		processData: true,
+		async: true,
+		contentType: "application/x-www-form-urlencoded; charset=UTF-8",
+
+		/*
+		timeout: 0,
+		data: null,
+		dataType: null,
+		username: null,
+		password: null,
+		cache: null,
+		throws: false,
+		traditional: false,
+		headers: {},
+		*/
+
+		accepts: {
+			"*": allTypes,
+			text: "text/plain",
+			html: "text/html",
+			xml: "application/xml, text/xml",
+			json: "application/json, text/javascript"
+		},
+
+		contents: {
+			xml: /\bxml\b/,
+			html: /\bhtml/,
+			json: /\bjson\b/
+		},
+
+		responseFields: {
+			xml: "responseXML",
+			text: "responseText",
+			json: "responseJSON"
+		},
+
+		// Data converters
+		// Keys separate source (or catchall "*") and destination types with a single space
+		converters: {
+
+			// Convert anything to text
+			"* text": String,
+
+			// Text to html (true = no transformation)
+			"text html": true,
+
+			// Evaluate text as a json expression
+			"text json": JSON.parse,
+
+			// Parse text as xml
+			"text xml": jQuery.parseXML
+		},
+
+		// For options that shouldn't be deep extended:
+		// you can add your own custom options here if
+		// and when you create one that shouldn't be
+		// deep extended (see ajaxExtend)
+		flatOptions: {
+			url: true,
+			context: true
+		}
+	},
+
+	// Creates a full fledged settings object into target
+	// with both ajaxSettings and settings fields.
+	// If target is omitted, writes into ajaxSettings.
+	ajaxSetup: function( target, settings ) {
+		return settings ?
+
+			// Building a settings object
+			ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
+
+			// Extending ajaxSettings
+			ajaxExtend( jQuery.ajaxSettings, target );
+	},
+
+	ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
+	ajaxTransport: addToPrefiltersOrTransports( transports ),
+
+	// Main method
+	ajax: function( url, options ) {
+
+		// If url is an object, simulate pre-1.5 signature
+		if ( typeof url === "object" ) {
+			options = url;
+			url = undefined;
+		}
+
+		// Force options to be an object
+		options = options || {};
+
+		var transport,
+
+			// URL without anti-cache param
+			cacheURL,
+
+			// Response headers
+			responseHeadersString,
+			responseHeaders,
+
+			// timeout handle
+			timeoutTimer,
+
+			// Url cleanup var
+			urlAnchor,
+
+			// Request state (becomes false upon send and true upon completion)
+			completed,
+
+			// To know if global events are to be dispatched
+			fireGlobals,
+
+			// Loop variable
+			i,
+
+			// uncached part of the url
+			uncached,
+
+			// Create the final options object
+			s = jQuery.ajaxSetup( {}, options ),
+
+			// Callbacks context
+			callbackContext = s.context || s,
+
+			// Context for global events is callbackContext if it is a DOM node or jQuery collection
+			globalEventContext = s.context &&
+				( callbackContext.nodeType || callbackContext.jquery ) ?
+					jQuery( callbackContext ) :
+					jQuery.event,
+
+			// Deferreds
+			deferred = jQuery.Deferred(),
+			completeDeferred = jQuery.Callbacks( "once memory" ),
+
+			// Status-dependent callbacks
+			statusCode = s.statusCode || {},
+
+			// Headers (they are sent all at once)
+			requestHeaders = {},
+			requestHeadersNames = {},
+
+			// Default abort message
+			strAbort = "canceled",
+
+			// Fake xhr
+			jqXHR = {
+				readyState: 0,
+
+				// Builds headers hashtable if needed
+				getResponseHeader: function( key ) {
+					var match;
+					if ( completed ) {
+						if ( !responseHeaders ) {
+							responseHeaders = {};
+							while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
+								responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
+									( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
+										.concat( match[ 2 ] );
+							}
+						}
+						match = responseHeaders[ key.toLowerCase() + " " ];
+					}
+					return match == null ? null : match.join( ", " );
+				},
+
+				// Raw string
+				getAllResponseHeaders: function() {
+					return completed ? responseHeadersString : null;
+				},
+
+				// Caches the header
+				setRequestHeader: function( name, value ) {
+					if ( completed == null ) {
+						name = requestHeadersNames[ name.toLowerCase() ] =
+							requestHeadersNames[ name.toLowerCase() ] || name;
+						requestHeaders[ name ] = value;
+					}
+					return this;
+				},
+
+				// Overrides response content-type header
+				overrideMimeType: function( type ) {
+					if ( completed == null ) {
+						s.mimeType = type;
+					}
+					return this;
+				},
+
+				// Status-dependent callbacks
+				statusCode: function( map ) {
+					var code;
+					if ( map ) {
+						if ( completed ) {
+
+							// Execute the appropriate callbacks
+							jqXHR.always( map[ jqXHR.status ] );
+						} else {
+
+							// Lazy-add the new callbacks in a way that preserves old ones
+							for ( code in map ) {
+								statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
+							}
+						}
+					}
+					return this;
+				},
+
+				// Cancel the request
+				abort: function( statusText ) {
+					var finalText = statusText || strAbort;
+					if ( transport ) {
+						transport.abort( finalText );
+					}
+					done( 0, finalText );
+					return this;
+				}
+			};
+
+		// Attach deferreds
+		deferred.promise( jqXHR );
+
+		// Add protocol if not provided (prefilters might expect it)
+		// Handle falsy url in the settings object (#10093: consistency with old signature)
+		// We also use the url parameter if available
+		s.url = ( ( url || s.url || location.href ) + "" )
+			.replace( rprotocol, location.protocol + "//" );
+
+		// Alias method option to type as per ticket #12004
+		s.type = options.method || options.type || s.method || s.type;
+
+		// Extract dataTypes list
+		s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];
+
+		// A cross-domain request is in order when the origin doesn't match the current origin.
+		if ( s.crossDomain == null ) {
+			urlAnchor = document.createElement( "a" );
+
+			// Support: IE <=8 - 11, Edge 12 - 15
+			// IE throws exception on accessing the href property if url is malformed,
+			// e.g. http://example.com:80x/
+			try {
+				urlAnchor.href = s.url;
+
+				// Support: IE <=8 - 11 only
+				// Anchor's host property isn't correctly set when s.url is relative
+				urlAnchor.href = urlAnchor.href;
+				s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !==
+					urlAnchor.protocol + "//" + urlAnchor.host;
+			} catch ( e ) {
+
+				// If there is an error parsing the URL, assume it is crossDomain,
+				// it can be rejected by the transport if it is invalid
+				s.crossDomain = true;
+			}
+		}
+
+		// Convert data if not already a string
+		if ( s.data && s.processData && typeof s.data !== "string" ) {
+			s.data = jQuery.param( s.data, s.traditional );
+		}
+
+		// Apply prefilters
+		inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
+
+		// If request was aborted inside a prefilter, stop there
+		if ( completed ) {
+			return jqXHR;
+		}
+
+		// We can fire global events as of now if asked to
+		// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
+		fireGlobals = jQuery.event && s.global;
+
+		// Watch for a new set of requests
+		if ( fireGlobals && jQuery.active++ === 0 ) {
+			jQuery.event.trigger( "ajaxStart" );
+		}
+
+		// Uppercase the type
+		s.type = s.type.toUpperCase();
+
+		// Determine if request has content
+		s.hasContent = !rnoContent.test( s.type );
+
+		// Save the URL in case we're toying with the If-Modified-Since
+		// and/or If-None-Match header later on
+		// Remove hash to simplify url manipulation
+		cacheURL = s.url.replace( rhash, "" );
+
+		// More options handling for requests with no content
+		if ( !s.hasContent ) {
+
+			// Remember the hash so we can put it back
+			uncached = s.url.slice( cacheURL.length );
+
+			// If data is available and should be processed, append data to url
+			if ( s.data && ( s.processData || typeof s.data === "string" ) ) {
+				cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data;
+
+				// #9682: remove data so that it's not used in an eventual retry
+				delete s.data;
+			}
+
+			// Add or update anti-cache param if needed
+			if ( s.cache === false ) {
+				cacheURL = cacheURL.replace( rantiCache, "$1" );
+				uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) +
+					uncached;
+			}
+
+			// Put hash and anti-cache on the URL that will be requested (gh-1732)
+			s.url = cacheURL + uncached;
+
+		// Change '%20' to '+' if this is encoded form body content (gh-2658)
+		} else if ( s.data && s.processData &&
+			( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) {
+			s.data = s.data.replace( r20, "+" );
+		}
+
+		// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
+		if ( s.ifModified ) {
+			if ( jQuery.lastModified[ cacheURL ] ) {
+				jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
+			}
+			if ( jQuery.etag[ cacheURL ] ) {
+				jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
+			}
+		}
+
+		// Set the correct header, if data is being sent
+		if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
+			jqXHR.setRequestHeader( "Content-Type", s.contentType );
+		}
+
+		// Set the Accepts header for the server, depending on the dataType
+		jqXHR.setRequestHeader(
+			"Accept",
+			s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
+				s.accepts[ s.dataTypes[ 0 ] ] +
+					( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
+				s.accepts[ "*" ]
+		);
+
+		// Check for headers option
+		for ( i in s.headers ) {
+			jqXHR.setRequestHeader( i, s.headers[ i ] );
+		}
+
+		// Allow custom headers/mimetypes and early abort
+		if ( s.beforeSend &&
+			( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) {
+
+			// Abort if not done already and return
+			return jqXHR.abort();
+		}
+
+		// Aborting is no longer a cancellation
+		strAbort = "abort";
+
+		// Install callbacks on deferreds
+		completeDeferred.add( s.complete );
+		jqXHR.done( s.success );
+		jqXHR.fail( s.error );
+
+		// Get transport
+		transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
+
+		// If no transport, we auto-abort
+		if ( !transport ) {
+			done( -1, "No Transport" );
+		} else {
+			jqXHR.readyState = 1;
+
+			// Send global event
+			if ( fireGlobals ) {
+				globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
+			}
+
+			// If request was aborted inside ajaxSend, stop there
+			if ( completed ) {
+				return jqXHR;
+			}
+
+			// Timeout
+			if ( s.async && s.timeout > 0 ) {
+				timeoutTimer = window.setTimeout( function() {
+					jqXHR.abort( "timeout" );
+				}, s.timeout );
+			}
+
+			try {
+				completed = false;
+				transport.send( requestHeaders, done );
+			} catch ( e ) {
+
+				// Rethrow post-completion exceptions
+				if ( completed ) {
+					throw e;
+				}
+
+				// Propagate others as results
+				done( -1, e );
+			}
+		}
+
+		// Callback for when everything is done
+		function done( status, nativeStatusText, responses, headers ) {
+			var isSuccess, success, error, response, modified,
+				statusText = nativeStatusText;
+
+			// Ignore repeat invocations
+			if ( completed ) {
+				return;
+			}
+
+			completed = true;
+
+			// Clear timeout if it exists
+			if ( timeoutTimer ) {
+				window.clearTimeout( timeoutTimer );
+			}
+
+			// Dereference transport for early garbage collection
+			// (no matter how long the jqXHR object will be used)
+			transport = undefined;
+
+			// Cache response headers
+			responseHeadersString = headers || "";
+
+			// Set readyState
+			jqXHR.readyState = status > 0 ? 4 : 0;
+
+			// Determine if successful
+			isSuccess = status >= 200 && status < 300 || status === 304;
+
+			// Get response data
+			if ( responses ) {
+				response = ajaxHandleResponses( s, jqXHR, responses );
+			}
+
+			// Use a noop converter for missing script
+			if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) {
+				s.converters[ "text script" ] = function() {};
+			}
+
+			// Convert no matter what (that way responseXXX fields are always set)
+			response = ajaxConvert( s, response, jqXHR, isSuccess );
+
+			// If successful, handle type chaining
+			if ( isSuccess ) {
+
+				// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
+				if ( s.ifModified ) {
+					modified = jqXHR.getResponseHeader( "Last-Modified" );
+					if ( modified ) {
+						jQuery.lastModified[ cacheURL ] = modified;
+					}
+					modified = jqXHR.getResponseHeader( "etag" );
+					if ( modified ) {
+						jQuery.etag[ cacheURL ] = modified;
+					}
+				}
+
+				// if no content
+				if ( status === 204 || s.type === "HEAD" ) {
+					statusText = "nocontent";
+
+				// if not modified
+				} else if ( status === 304 ) {
+					statusText = "notmodified";
+
+				// If we have data, let's convert it
+				} else {
+					statusText = response.state;
+					success = response.data;
+					error = response.error;
+					isSuccess = !error;
+				}
+			} else {
+
+				// Extract error from statusText and normalize for non-aborts
+				error = statusText;
+				if ( status || !statusText ) {
+					statusText = "error";
+					if ( status < 0 ) {
+						status = 0;
+					}
+				}
+			}
+
+			// Set data for the fake xhr object
+			jqXHR.status = status;
+			jqXHR.statusText = ( nativeStatusText || statusText ) + "";
+
+			// Success/Error
+			if ( isSuccess ) {
+				deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
+			} else {
+				deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
+			}
+
+			// Status-dependent callbacks
+			jqXHR.statusCode( statusCode );
+			statusCode = undefined;
+
+			if ( fireGlobals ) {
+				globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
+					[ jqXHR, s, isSuccess ? success : error ] );
+			}
+
+			// Complete
+			completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
+
+			if ( fireGlobals ) {
+				globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
+
+				// Handle the global AJAX counter
+				if ( !( --jQuery.active ) ) {
+					jQuery.event.trigger( "ajaxStop" );
+				}
+			}
+		}
+
+		return jqXHR;
+	},
+
+	getJSON: function( url, data, callback ) {
+		return jQuery.get( url, data, callback, "json" );
+	},
+
+	getScript: function( url, callback ) {
+		return jQuery.get( url, undefined, callback, "script" );
+	}
+} );
+
+jQuery.each( [ "get", "post" ], function( _i, method ) {
+	jQuery[ method ] = function( url, data, callback, type ) {
+
+		// Shift arguments if data argument was omitted
+		if ( isFunction( data ) ) {
+			type = type || callback;
+			callback = data;
+			data = undefined;
+		}
+
+		// The url can be an options object (which then must have .url)
+		return jQuery.ajax( jQuery.extend( {
+			url: url,
+			type: method,
+			dataType: type,
+			data: data,
+			success: callback
+		}, jQuery.isPlainObject( url ) && url ) );
+	};
+} );
+
+jQuery.ajaxPrefilter( function( s ) {
+	var i;
+	for ( i in s.headers ) {
+		if ( i.toLowerCase() === "content-type" ) {
+			s.contentType = s.headers[ i ] || "";
+		}
+	}
+} );
+
+
+jQuery._evalUrl = function( url, options, doc ) {
+	return jQuery.ajax( {
+		url: url,
+
+		// Make this explicit, since user can override this through ajaxSetup (#11264)
+		type: "GET",
+		dataType: "script",
+		cache: true,
+		async: false,
+		global: false,
+
+		// Only evaluate the response if it is successful (gh-4126)
+		// dataFilter is not invoked for failure responses, so using it instead
+		// of the default converter is kludgy but it works.
+		converters: {
+			"text script": function() {}
+		},
+		dataFilter: function( response ) {
+			jQuery.globalEval( response, options, doc );
+		}
+	} );
+};
+
+
+jQuery.fn.extend( {
+	wrapAll: function( html ) {
+		var wrap;
+
+		if ( this[ 0 ] ) {
+			if ( isFunction( html ) ) {
+				html = html.call( this[ 0 ] );
+			}
+
+			// The elements to wrap the target around
+			wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );
+
+			if ( this[ 0 ].parentNode ) {
+				wrap.insertBefore( this[ 0 ] );
+			}
+
+			wrap.map( function() {
+				var elem = this;
+
+				while ( elem.firstElementChild ) {
+					elem = elem.firstElementChild;
+				}
+
+				return elem;
+			} ).append( this );
+		}
+
+		return this;
+	},
+
+	wrapInner: function( html ) {
+		if ( isFunction( html ) ) {
+			return this.each( function( i ) {
+				jQuery( this ).wrapInner( html.call( this, i ) );
+			} );
+		}
+
+		return this.each( function() {
+			var self = jQuery( this ),
+				contents = self.contents();
+
+			if ( contents.length ) {
+				contents.wrapAll( html );
+
+			} else {
+				self.append( html );
+			}
+		} );
+	},
+
+	wrap: function( html ) {
+		var htmlIsFunction = isFunction( html );
+
+		return this.each( function( i ) {
+			jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );
+		} );
+	},
+
+	unwrap: function( selector ) {
+		this.parent( selector ).not( "body" ).each( function() {
+			jQuery( this ).replaceWith( this.childNodes );
+		} );
+		return this;
+	}
+} );
+
+
+jQuery.expr.pseudos.hidden = function( elem ) {
+	return !jQuery.expr.pseudos.visible( elem );
+};
+jQuery.expr.pseudos.visible = function( elem ) {
+	return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length );
+};
+
+
+
+
+jQuery.ajaxSettings.xhr = function() {
+	try {
+		return new window.XMLHttpRequest();
+	} catch ( e ) {}
+};
+
+var xhrSuccessStatus = {
+
+		// File protocol always yields status code 0, assume 200
+		0: 200,
+
+		// Support: IE <=9 only
+		// #1450: sometimes IE returns 1223 when it should be 204
+		1223: 204
+	},
+	xhrSupported = jQuery.ajaxSettings.xhr();
+
+support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
+support.ajax = xhrSupported = !!xhrSupported;
+
+jQuery.ajaxTransport( function( options ) {
+	var callback, errorCallback;
+
+	// Cross domain only allowed if supported through XMLHttpRequest
+	if ( support.cors || xhrSupported && !options.crossDomain ) {
+		return {
+			send: function( headers, complete ) {
+				var i,
+					xhr = options.xhr();
+
+				xhr.open(
+					options.type,
+					options.url,
+					options.async,
+					options.username,
+					options.password
+				);
+
+				// Apply custom fields if provided
+				if ( options.xhrFields ) {
+					for ( i in options.xhrFields ) {
+						xhr[ i ] = options.xhrFields[ i ];
+					}
+				}
+
+				// Override mime type if needed
+				if ( options.mimeType && xhr.overrideMimeType ) {
+					xhr.overrideMimeType( options.mimeType );
+				}
+
+				// X-Requested-With header
+				// For cross-domain requests, seeing as conditions for a preflight are
+				// akin to a jigsaw puzzle, we simply never set it to be sure.
+				// (it can always be set on a per-request basis or even using ajaxSetup)
+				// For same-domain requests, won't change header if already provided.
+				if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) {
+					headers[ "X-Requested-With" ] = "XMLHttpRequest";
+				}
+
+				// Set headers
+				for ( i in headers ) {
+					xhr.setRequestHeader( i, headers[ i ] );
+				}
+
+				// Callback
+				callback = function( type ) {
+					return function() {
+						if ( callback ) {
+							callback = errorCallback = xhr.onload =
+								xhr.onerror = xhr.onabort = xhr.ontimeout =
+									xhr.onreadystatechange = null;
+
+							if ( type === "abort" ) {
+								xhr.abort();
+							} else if ( type === "error" ) {
+
+								// Support: IE <=9 only
+								// On a manual native abort, IE9 throws
+								// errors on any property access that is not readyState
+								if ( typeof xhr.status !== "number" ) {
+									complete( 0, "error" );
+								} else {
+									complete(
+
+										// File: protocol always yields status 0; see #8605, #14207
+										xhr.status,
+										xhr.statusText
+									);
+								}
+							} else {
+								complete(
+									xhrSuccessStatus[ xhr.status ] || xhr.status,
+									xhr.statusText,
+
+									// Support: IE <=9 only
+									// IE9 has no XHR2 but throws on binary (trac-11426)
+									// For XHR2 non-text, let the caller handle it (gh-2498)
+									( xhr.responseType || "text" ) !== "text"  ||
+									typeof xhr.responseText !== "string" ?
+										{ binary: xhr.response } :
+										{ text: xhr.responseText },
+									xhr.getAllResponseHeaders()
+								);
+							}
+						}
+					};
+				};
+
+				// Listen to events
+				xhr.onload = callback();
+				errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" );
+
+				// Support: IE 9 only
+				// Use onreadystatechange to replace onabort
+				// to handle uncaught aborts
+				if ( xhr.onabort !== undefined ) {
+					xhr.onabort = errorCallback;
+				} else {
+					xhr.onreadystatechange = function() {
+
+						// Check readyState before timeout as it changes
+						if ( xhr.readyState === 4 ) {
+
+							// Allow onerror to be called first,
+							// but that will not handle a native abort
+							// Also, save errorCallback to a variable
+							// as xhr.onerror cannot be accessed
+							window.setTimeout( function() {
+								if ( callback ) {
+									errorCallback();
+								}
+							} );
+						}
+					};
+				}
+
+				// Create the abort callback
+				callback = callback( "abort" );
+
+				try {
+
+					// Do send the request (this may raise an exception)
+					xhr.send( options.hasContent && options.data || null );
+				} catch ( e ) {
+
+					// #14683: Only rethrow if this hasn't been notified as an error yet
+					if ( callback ) {
+						throw e;
+					}
+				}
+			},
+
+			abort: function() {
+				if ( callback ) {
+					callback();
+				}
+			}
+		};
+	}
+} );
+
+
+
+
+// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)
+jQuery.ajaxPrefilter( function( s ) {
+	if ( s.crossDomain ) {
+		s.contents.script = false;
+	}
+} );
+
+// Install script dataType
+jQuery.ajaxSetup( {
+	accepts: {
+		script: "text/javascript, application/javascript, " +
+			"application/ecmascript, application/x-ecmascript"
+	},
+	contents: {
+		script: /\b(?:java|ecma)script\b/
+	},
+	converters: {
+		"text script": function( text ) {
+			jQuery.globalEval( text );
+			return text;
+		}
+	}
+} );
+
+// Handle cache's special case and crossDomain
+jQuery.ajaxPrefilter( "script", function( s ) {
+	if ( s.cache === undefined ) {
+		s.cache = false;
+	}
+	if ( s.crossDomain ) {
+		s.type = "GET";
+	}
+} );
+
+// Bind script tag hack transport
+jQuery.ajaxTransport( "script", function( s ) {
+
+	// This transport only deals with cross domain or forced-by-attrs requests
+	if ( s.crossDomain || s.scriptAttrs ) {
+		var script, callback;
+		return {
+			send: function( _, complete ) {
+				script = jQuery( "<script>" )
+					.attr( s.scriptAttrs || {} )
+					.prop( { charset: s.scriptCharset, src: s.url } )
+					.on( "load error", callback = function( evt ) {
+						script.remove();
+						callback = null;
+						if ( evt ) {
+							complete( evt.type === "error" ? 404 : 200, evt.type );
+						}
+					} );
+
+				// Use native DOM manipulation to avoid our domManip AJAX trickery
+				document.head.appendChild( script[ 0 ] );
+			},
+			abort: function() {
+				if ( callback ) {
+					callback();
+				}
+			}
+		};
+	}
+} );
+
+
+
+
+var oldCallbacks = [],
+	rjsonp = /(=)\?(?=&|$)|\?\?/;
+
+// Default jsonp settings
+jQuery.ajaxSetup( {
+	jsonp: "callback",
+	jsonpCallback: function() {
+		var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce.guid++ ) );
+		this[ callback ] = true;
+		return callback;
+	}
+} );
+
+// Detect, normalize options and install callbacks for jsonp requests
+jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) {
+
+	var callbackName, overwritten, responseContainer,
+		jsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?
+			"url" :
+			typeof s.data === "string" &&
+				( s.contentType || "" )
+					.indexOf( "application/x-www-form-urlencoded" ) === 0 &&
+				rjsonp.test( s.data ) && "data"
+		);
+
+	// Handle iff the expected data type is "jsonp" or we have a parameter to set
+	if ( jsonProp || s.dataTypes[ 0 ] === "jsonp" ) {
+
+		// Get callback name, remembering preexisting value associated with it
+		callbackName = s.jsonpCallback = isFunction( s.jsonpCallback ) ?
+			s.jsonpCallback() :
+			s.jsonpCallback;
+
+		// Insert callback into url or form data
+		if ( jsonProp ) {
+			s[ jsonProp ] = s[ jsonProp ].replace( rjsonp, "$1" + callbackName );
+		} else if ( s.jsonp !== false ) {
+			s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName;
+		}
+
+		// Use data converter to retrieve json after script execution
+		s.converters[ "script json" ] = function() {
+			if ( !responseContainer ) {
+				jQuery.error( callbackName + " was not called" );
+			}
+			return responseContainer[ 0 ];
+		};
+
+		// Force json dataType
+		s.dataTypes[ 0 ] = "json";
+
+		// Install callback
+		overwritten = window[ callbackName ];
+		window[ callbackName ] = function() {
+			responseContainer = arguments;
+		};
+
+		// Clean-up function (fires after converters)
+		jqXHR.always( function() {
+
+			// If previous value didn't exist - remove it
+			if ( overwritten === undefined ) {
+				jQuery( window ).removeProp( callbackName );
+
+			// Otherwise restore preexisting value
+			} else {
+				window[ callbackName ] = overwritten;
+			}
+
+			// Save back as free
+			if ( s[ callbackName ] ) {
+
+				// Make sure that re-using the options doesn't screw things around
+				s.jsonpCallback = originalSettings.jsonpCallback;
+
+				// Save the callback name for future use
+				oldCallbacks.push( callbackName );
+			}
+
+			// Call if it was a function and we have a response
+			if ( responseContainer && isFunction( overwritten ) ) {
+				overwritten( responseContainer[ 0 ] );
+			}
+
+			responseContainer = overwritten = undefined;
+		} );
+
+		// Delegate to script
+		return "script";
+	}
+} );
+
+
+
+
+// Support: Safari 8 only
+// In Safari 8 documents created via document.implementation.createHTMLDocument
+// collapse sibling forms: the second one becomes a child of the first one.
+// Because of that, this security measure has to be disabled in Safari 8.
+// https://bugs.webkit.org/show_bug.cgi?id=137337
+support.createHTMLDocument = ( function() {
+	var body = document.implementation.createHTMLDocument( "" ).body;
+	body.innerHTML = "<form></form><form></form>";
+	return body.childNodes.length === 2;
+} )();
+
+
+// Argument "data" should be string of html
+// context (optional): If specified, the fragment will be created in this context,
+// defaults to document
+// keepScripts (optional): If true, will include scripts passed in the html string
+jQuery.parseHTML = function( data, context, keepScripts ) {
+	if ( typeof data !== "string" ) {
+		return [];
+	}
+	if ( typeof context === "boolean" ) {
+		keepScripts = context;
+		context = false;
+	}
+
+	var base, parsed, scripts;
+
+	if ( !context ) {
+
+		// Stop scripts or inline event handlers from being executed immediately
+		// by using document.implementation
+		if ( support.createHTMLDocument ) {
+			context = document.implementation.createHTMLDocument( "" );
+
+			// Set the base href for the created document
+			// so any parsed elements with URLs
+			// are based on the document's URL (gh-2965)
+			base = context.createElement( "base" );
+			base.href = document.location.href;
+			context.head.appendChild( base );
+		} else {
+			context = document;
+		}
+	}
+
+	parsed = rsingleTag.exec( data );
+	scripts = !keepScripts && [];
+
+	// Single tag
+	if ( parsed ) {
+		return [ context.createElement( parsed[ 1 ] ) ];
+	}
+
+	parsed = buildFragment( [ data ], context, scripts );
+
+	if ( scripts && scripts.length ) {
+		jQuery( scripts ).remove();
+	}
+
+	return jQuery.merge( [], parsed.childNodes );
+};
+
+
+/**
+ * Load a url into a page
+ */
+jQuery.fn.load = function( url, params, callback ) {
+	var selector, type, response,
+		self = this,
+		off = url.indexOf( " " );
+
+	if ( off > -1 ) {
+		selector = stripAndCollapse( url.slice( off ) );
+		url = url.slice( 0, off );
+	}
+
+	// If it's a function
+	if ( isFunction( params ) ) {
+
+		// We assume that it's the callback
+		callback = params;
+		params = undefined;
+
+	// Otherwise, build a param string
+	} else if ( params && typeof params === "object" ) {
+		type = "POST";
+	}
+
+	// If we have elements to modify, make the request
+	if ( self.length > 0 ) {
+		jQuery.ajax( {
+			url: url,
+
+			// If "type" variable is undefined, then "GET" method will be used.
+			// Make value of this field explicit since
+			// user can override it through ajaxSetup method
+			type: type || "GET",
+			dataType: "html",
+			data: params
+		} ).done( function( responseText ) {
+
+			// Save response for use in complete callback
+			response = arguments;
+
+			self.html( selector ?
+
+				// If a selector was specified, locate the right elements in a dummy div
+				// Exclude scripts to avoid IE 'Permission Denied' errors
+				jQuery( "<div>" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :
+
+				// Otherwise use the full result
+				responseText );
+
+		// If the request succeeds, this function gets "data", "status", "jqXHR"
+		// but they are ignored because response was set above.
+		// If it fails, this function gets "jqXHR", "status", "error"
+		} ).always( callback && function( jqXHR, status ) {
+			self.each( function() {
+				callback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );
+			} );
+		} );
+	}
+
+	return this;
+};
+
+
+
+
+jQuery.expr.pseudos.animated = function( elem ) {
+	return jQuery.grep( jQuery.timers, function( fn ) {
+		return elem === fn.elem;
+	} ).length;
+};
+
+
+
+
+jQuery.offset = {
+	setOffset: function( elem, options, i ) {
+		var curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,
+			position = jQuery.css( elem, "position" ),
+			curElem = jQuery( elem ),
+			props = {};
+
+		// Set position first, in-case top/left are set even on static elem
+		if ( position === "static" ) {
+			elem.style.position = "relative";
+		}
+
+		curOffset = curElem.offset();
+		curCSSTop = jQuery.css( elem, "top" );
+		curCSSLeft = jQuery.css( elem, "left" );
+		calculatePosition = ( position === "absolute" || position === "fixed" ) &&
+			( curCSSTop + curCSSLeft ).indexOf( "auto" ) > -1;
+
+		// Need to be able to calculate position if either
+		// top or left is auto and position is either absolute or fixed
+		if ( calculatePosition ) {
+			curPosition = curElem.position();
+			curTop = curPosition.top;
+			curLeft = curPosition.left;
+
+		} else {
+			curTop = parseFloat( curCSSTop ) || 0;
+			curLeft = parseFloat( curCSSLeft ) || 0;
+		}
+
+		if ( isFunction( options ) ) {
+
+			// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)
+			options = options.call( elem, i, jQuery.extend( {}, curOffset ) );
+		}
+
+		if ( options.top != null ) {
+			props.top = ( options.top - curOffset.top ) + curTop;
+		}
+		if ( options.left != null ) {
+			props.left = ( options.left - curOffset.left ) + curLeft;
+		}
+
+		if ( "using" in options ) {
+			options.using.call( elem, props );
+
+		} else {
+			if ( typeof props.top === "number" ) {
+				props.top += "px";
+			}
+			if ( typeof props.left === "number" ) {
+				props.left += "px";
+			}
+			curElem.css( props );
+		}
+	}
+};
+
+jQuery.fn.extend( {
+
+	// offset() relates an element's border box to the document origin
+	offset: function( options ) {
+
+		// Preserve chaining for setter
+		if ( arguments.length ) {
+			return options === undefined ?
+				this :
+				this.each( function( i ) {
+					jQuery.offset.setOffset( this, options, i );
+				} );
+		}
+
+		var rect, win,
+			elem = this[ 0 ];
+
+		if ( !elem ) {
+			return;
+		}
+
+		// Return zeros for disconnected and hidden (display: none) elements (gh-2310)
+		// Support: IE <=11 only
+		// Running getBoundingClientRect on a
+		// disconnected node in IE throws an error
+		if ( !elem.getClientRects().length ) {
+			return { top: 0, left: 0 };
+		}
+
+		// Get document-relative position by adding viewport scroll to viewport-relative gBCR
+		rect = elem.getBoundingClientRect();
+		win = elem.ownerDocument.defaultView;
+		return {
+			top: rect.top + win.pageYOffset,
+			left: rect.left + win.pageXOffset
+		};
+	},
+
+	// position() relates an element's margin box to its offset parent's padding box
+	// This corresponds to the behavior of CSS absolute positioning
+	position: function() {
+		if ( !this[ 0 ] ) {
+			return;
+		}
+
+		var offsetParent, offset, doc,
+			elem = this[ 0 ],
+			parentOffset = { top: 0, left: 0 };
+
+		// position:fixed elements are offset from the viewport, which itself always has zero offset
+		if ( jQuery.css( elem, "position" ) === "fixed" ) {
+
+			// Assume position:fixed implies availability of getBoundingClientRect
+			offset = elem.getBoundingClientRect();
+
+		} else {
+			offset = this.offset();
+
+			// Account for the *real* offset parent, which can be the document or its root element
+			// when a statically positioned element is identified
+			doc = elem.ownerDocument;
+			offsetParent = elem.offsetParent || doc.documentElement;
+			while ( offsetParent &&
+				( offsetParent === doc.body || offsetParent === doc.documentElement ) &&
+				jQuery.css( offsetParent, "position" ) === "static" ) {
+
+				offsetParent = offsetParent.parentNode;
+			}
+			if ( offsetParent && offsetParent !== elem && offsetParent.nodeType === 1 ) {
+
+				// Incorporate borders into its offset, since they are outside its content origin
+				parentOffset = jQuery( offsetParent ).offset();
+				parentOffset.top += jQuery.css( offsetParent, "borderTopWidth", true );
+				parentOffset.left += jQuery.css( offsetParent, "borderLeftWidth", true );
+			}
+		}
+
+		// Subtract parent offsets and element margins
+		return {
+			top: offset.top - parentOffset.top - jQuery.css( elem, "marginTop", true ),
+			left: offset.left - parentOffset.left - jQuery.css( elem, "marginLeft", true )
+		};
+	},
+
+	// This method will return documentElement in the following cases:
+	// 1) For the element inside the iframe without offsetParent, this method will return
+	//    documentElement of the parent window
+	// 2) For the hidden or detached element
+	// 3) For body or html element, i.e. in case of the html node - it will return itself
+	//
+	// but those exceptions were never presented as a real life use-cases
+	// and might be considered as more preferable results.
+	//
+	// This logic, however, is not guaranteed and can change at any point in the future
+	offsetParent: function() {
+		return this.map( function() {
+			var offsetParent = this.offsetParent;
+
+			while ( offsetParent && jQuery.css( offsetParent, "position" ) === "static" ) {
+				offsetParent = offsetParent.offsetParent;
+			}
+
+			return offsetParent || documentElement;
+		} );
+	}
+} );
+
+// Create scrollLeft and scrollTop methods
+jQuery.each( { scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function( method, prop ) {
+	var top = "pageYOffset" === prop;
+
+	jQuery.fn[ method ] = function( val ) {
+		return access( this, function( elem, method, val ) {
+
+			// Coalesce documents and windows
+			var win;
+			if ( isWindow( elem ) ) {
+				win = elem;
+			} else if ( elem.nodeType === 9 ) {
+				win = elem.defaultView;
+			}
+
+			if ( val === undefined ) {
+				return win ? win[ prop ] : elem[ method ];
+			}
+
+			if ( win ) {
+				win.scrollTo(
+					!top ? val : win.pageXOffset,
+					top ? val : win.pageYOffset
+				);
+
+			} else {
+				elem[ method ] = val;
+			}
+		}, method, val, arguments.length );
+	};
+} );
+
+// Support: Safari <=7 - 9.1, Chrome <=37 - 49
+// Add the top/left cssHooks using jQuery.fn.position
+// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084
+// Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347
+// getComputedStyle returns percent when specified for top/left/bottom/right;
+// rather than make the css module depend on the offset module, just check for it here
+jQuery.each( [ "top", "left" ], function( _i, prop ) {
+	jQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,
+		function( elem, computed ) {
+			if ( computed ) {
+				computed = curCSS( elem, prop );
+
+				// If curCSS returns percentage, fallback to offset
+				return rnumnonpx.test( computed ) ?
+					jQuery( elem ).position()[ prop ] + "px" :
+					computed;
+			}
+		}
+	);
+} );
+
+
+// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods
+jQuery.each( { Height: "height", Width: "width" }, function( name, type ) {
+	jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name },
+		function( defaultExtra, funcName ) {
+
+		// Margin is only for outerHeight, outerWidth
+		jQuery.fn[ funcName ] = function( margin, value ) {
+			var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ),
+				extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" );
+
+			return access( this, function( elem, type, value ) {
+				var doc;
+
+				if ( isWindow( elem ) ) {
+
+					// $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)
+					return funcName.indexOf( "outer" ) === 0 ?
+						elem[ "inner" + name ] :
+						elem.document.documentElement[ "client" + name ];
+				}
+
+				// Get document width or height
+				if ( elem.nodeType === 9 ) {
+					doc = elem.documentElement;
+
+					// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],
+					// whichever is greatest
+					return Math.max(
+						elem.body[ "scroll" + name ], doc[ "scroll" + name ],
+						elem.body[ "offset" + name ], doc[ "offset" + name ],
+						doc[ "client" + name ]
+					);
+				}
+
+				return value === undefined ?
+
+					// Get width or height on the element, requesting but not forcing parseFloat
+					jQuery.css( elem, type, extra ) :
+
+					// Set width or height on the element
+					jQuery.style( elem, type, value, extra );
+			}, type, chainable ? margin : undefined, chainable );
+		};
+	} );
+} );
+
+
+jQuery.each( [
+	"ajaxStart",
+	"ajaxStop",
+	"ajaxComplete",
+	"ajaxError",
+	"ajaxSuccess",
+	"ajaxSend"
+], function( _i, type ) {
+	jQuery.fn[ type ] = function( fn ) {
+		return this.on( type, fn );
+	};
+} );
+
+
+
+
+jQuery.fn.extend( {
+
+	bind: function( types, data, fn ) {
+		return this.on( types, null, data, fn );
+	},
+	unbind: function( types, fn ) {
+		return this.off( types, null, fn );
+	},
+
+	delegate: function( selector, types, data, fn ) {
+		return this.on( types, selector, data, fn );
+	},
+	undelegate: function( selector, types, fn ) {
+
+		// ( namespace ) or ( selector, types [, fn] )
+		return arguments.length === 1 ?
+			this.off( selector, "**" ) :
+			this.off( types, selector || "**", fn );
+	},
+
+	hover: function( fnOver, fnOut ) {
+		return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );
+	}
+} );
+
+jQuery.each( ( "blur focus focusin focusout resize scroll click dblclick " +
+	"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
+	"change select submit keydown keypress keyup contextmenu" ).split( " " ),
+	function( _i, name ) {
+
+		// Handle event binding
+		jQuery.fn[ name ] = function( data, fn ) {
+			return arguments.length > 0 ?
+				this.on( name, null, data, fn ) :
+				this.trigger( name );
+		};
+	} );
+
+
+
+
+// Support: Android <=4.0 only
+// Make sure we trim BOM and NBSP
+var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
+
+// Bind a function to a context, optionally partially applying any
+// arguments.
+// jQuery.proxy is deprecated to promote standards (specifically Function#bind)
+// However, it is not slated for removal any time soon
+jQuery.proxy = function( fn, context ) {
+	var tmp, args, proxy;
+
+	if ( typeof context === "string" ) {
+		tmp = fn[ context ];
+		context = fn;
+		fn = tmp;
+	}
+
+	// Quick check to determine if target is callable, in the spec
+	// this throws a TypeError, but we will just return undefined.
+	if ( !isFunction( fn ) ) {
+		return undefined;
+	}
+
+	// Simulated bind
+	args = slice.call( arguments, 2 );
+	proxy = function() {
+		return fn.apply( context || this, args.concat( slice.call( arguments ) ) );
+	};
+
+	// Set the guid of unique handler to the same of original handler, so it can be removed
+	proxy.guid = fn.guid = fn.guid || jQuery.guid++;
+
+	return proxy;
+};
+
+jQuery.holdReady = function( hold ) {
+	if ( hold ) {
+		jQuery.readyWait++;
+	} else {
+		jQuery.ready( true );
+	}
+};
+jQuery.isArray = Array.isArray;
+jQuery.parseJSON = JSON.parse;
+jQuery.nodeName = nodeName;
+jQuery.isFunction = isFunction;
+jQuery.isWindow = isWindow;
+jQuery.camelCase = camelCase;
+jQuery.type = toType;
+
+jQuery.now = Date.now;
+
+jQuery.isNumeric = function( obj ) {
+
+	// As of jQuery 3.0, isNumeric is limited to
+	// strings and numbers (primitives or objects)
+	// that can be coerced to finite numbers (gh-2662)
+	var type = jQuery.type( obj );
+	return ( type === "number" || type === "string" ) &&
+
+		// parseFloat NaNs numeric-cast false positives ("")
+		// ...but misinterprets leading-number strings, particularly hex literals ("0x...")
+		// subtraction forces infinities to NaN
+		!isNaN( obj - parseFloat( obj ) );
+};
+
+jQuery.trim = function( text ) {
+	return text == null ?
+		"" :
+		( text + "" ).replace( rtrim, "" );
+};
+
+
+
+// Register as a named AMD module, since jQuery can be concatenated with other
+// files that may use define, but not via a proper concatenation script that
+// understands anonymous AMD modules. A named AMD is safest and most robust
+// way to register. Lowercase jquery is used because AMD module names are
+// derived from file names, and jQuery is normally delivered in a lowercase
+// file name. Do this after creating the global so that if an AMD module wants
+// to call noConflict to hide this version of jQuery, it will work.
+
+// Note that for maximum portability, libraries that are not jQuery should
+// declare themselves as anonymous modules, and avoid setting a global if an
+// AMD loader is present. jQuery is a special case. For more information, see
+// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon
+
+if ( typeof define === "function" && define.amd ) {
+	define( "jquery", [], function() {
+		return jQuery;
+	} );
+}
+
+
+
+
+var
+
+	// Map over jQuery in case of overwrite
+	_jQuery = window.jQuery,
+
+	// Map over the $ in case of overwrite
+	_$ = window.$;
+
+jQuery.noConflict = function( deep ) {
+	if ( window.$ === jQuery ) {
+		window.$ = _$;
+	}
+
+	if ( deep && window.jQuery === jQuery ) {
+		window.jQuery = _jQuery;
+	}
+
+	return jQuery;
+};
+
+// Expose jQuery and $ identifiers, even in AMD
+// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)
+// and CommonJS for browser emulators (#13566)
+if ( typeof noGlobal === "undefined" ) {
+	window.jQuery = window.$ = jQuery;
+}
+
+
+
+
+return jQuery;
+} );
diff --git a/api/jquery/jquery-3.6.1.min.js b/api/jquery/jquery-3.6.1.min.js
new file mode 100644
index 0000000000..2c69bc908b
--- /dev/null
+++ b/api/jquery/jquery-3.6.1.min.js
@@ -0,0 +1,2 @@
+/*! jQuery v3.6.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,y=n.hasOwnProperty,a=y.toString,l=a.call(Object),v={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=y.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:v}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,y,s,c,v,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",$=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&v(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!y||!y.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ve(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ye(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ve(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],y=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&y.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||y.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||y.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||y.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||y.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||y.push(".#.+[+~]"),e.querySelectorAll("\\\f"),y.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&y.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&y.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&y.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),y.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),y=y.length&&new RegExp(y.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),v=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&v(p,e)?-1:t==C||t.ownerDocument==p&&v(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!y||!y.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),v(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace($," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,y){var v="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===y?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=v!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(v){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=y)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ye(function(){return[0]}),last:ye(function(e,t){return[t-1]}),eq:ye(function(e,t,n){return[n<0?n+t:n]}),even:ye(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ye(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ye(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ye(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,y,v,e){return y&&!y[S]&&(y=Ce(y)),v&&!v[S]&&(v=Ce(v,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?v||(e?d:l||y)?[]:t:f;if(g&&g(f,p,n,r),y){i=Te(p,u),y(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(v||d){if(v){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);v(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=v?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),v?v(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,y,v,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(y=o,m=0<(v=i).length,x=0<y.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=y[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=v[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+v.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ve(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ve(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function $(){E.removeEventListener("DOMContentLoaded",$),C.removeEventListener("load",$),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",$),C.addEventListener("load",$));var B=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)B(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):B(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),v.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",v.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",v.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ye(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ve(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,v.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ye(f.appendChild(o),"script"),l&&ve(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=y.events)||(u=y.events=Object.create(null)),(a=y.handle)||(a=y.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,y=Y.hasData(e)&&Y.get(e);if(y&&(u=y.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,y.handle)||S.removeEvent(e,d,y.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(t,e){S.event.special[t]={setup:function(){return Se(this,t,Ce),!1},trigger:function(){return Se(this,t),!0},_default:function(e){return Y.get(e.target,t)},delegateType:e}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!\[CDATA\[|\]\]>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!v.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ye(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ye(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ye(r)),r.parentNode&&(n&&ie(r)&&ve(ye(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(v.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ye(c),r=0,i=(o=ye(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ye(e),a=a||ye(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ye(c,"script")).length&&ve(a,!f&&ye(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return B(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ye(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return B(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ye(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ye(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=/^--/,Me=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Ie=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},We=new RegExp(ne.join("|"),"i"),Fe="[\\x20\\t\\r\\n\\f]",$e=new RegExp("^"+Fe+"+|((?:^|[^\\\\])(?:\\\\.)*)"+Fe+"+$","g");function Be(e,t,n){var r,i,o,a,s=Re.test(t),u=e.style;return(n=n||Me(e))&&(a=n.getPropertyValue(t)||n[t],s&&(a=a.replace($e,"$1")),""!==a||ie(e)||(a=S.style(e,t)),!v.pixelBoxStyles()&&Pe.test(a)&&We.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=n.width,u.width=r,u.minWidth=i,u.maxWidth=o)),void 0!==a?a+"":a}function _e(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",v.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(v,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var ze=["Webkit","Moz","ms"],Ue=E.createElement("div").style,Xe={};function Ve(e){var t=S.cssProps[e]||Xe[e];return t||(e in Ue?e:Xe[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=ze.length;while(n--)if((e=ze[n]+t)in Ue)return e}(e)||e)}var Ge=/^(none|table(?!-c[ea]).+)/,Ye={position:"absolute",visibility:"hidden",display:"block"},Qe={letterSpacing:"0",fontWeight:"400"};function Je(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Ke(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Ze(e,t,n){var r=Me(e),i=(!v.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=Be(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!v.boxSizingReliable()&&i||!v.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Ke(e,t,n||(i?"border":"content"),o,r,a)+"px"}function et(e,t,n,r,i){return new et.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Be(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Re.test(t),l=e.style;if(u||(t=Ve(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),v.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Re.test(t)||(t=Ve(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Be(e,t,r)),"normal"===i&&t in Qe&&(i=Qe[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ge.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Ze(e,u,n):Ie(e,Ye,function(){return Ze(e,u,n)})},set:function(e,t,n){var r,i=Me(e),o=!v.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Ke(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Ke(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Je(0,t,s)}}}),S.cssHooks.marginLeft=_e(v.reliableMarginLeft,function(e,t){if(t)return(parseFloat(Be(e,"marginLeft"))||e.getBoundingClientRect().left-Ie(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Je)}),S.fn.extend({css:function(e,t){return B(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Me(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=et).prototype={constructor:et,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=et.propHooks[this.prop];return e&&e.get?e.get(this):et.propHooks._default.get(this)},run:function(e){var t,n=et.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):et.propHooks._default.set(this),this}}).init.prototype=et.prototype,(et.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[Ve(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=et.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=et.prototype.init,S.fx.step={};var tt,nt,rt,it,ot=/^(?:toggle|show|hide)$/,at=/queueHooks$/;function st(){nt&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(st):C.setTimeout(st,S.fx.interval),S.fx.tick())}function ut(){return C.setTimeout(function(){tt=void 0}),tt=Date.now()}function lt(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ct(e,t,n){for(var r,i=(ft.tweeners[t]||[]).concat(ft.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function ft(o,e,t){var n,a,r=0,i=ft.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=tt||ut(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:tt||ut(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=ft.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ct,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(ft,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],ft.tweeners[n]=ft.tweeners[n]||[],ft.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),y=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],ot.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!y||void 0===y[r])continue;g=!0}d[r]=y&&y[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=y&&y.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(y?"hidden"in y&&(g=y.hidden):y=Y.access(e,"fxshow",{display:l}),o&&(y.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ct(g?y[r]:0,r,p),r in y||(y[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?ft.prefilters.unshift(e):ft.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=ft(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&at.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(lt(r,!0),e,t,n)}}),S.each({slideDown:lt("show"),slideUp:lt("hide"),slideToggle:lt("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(tt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),tt=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){nt||(nt=!0,st())},S.fx.stop=function(){nt=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},rt=E.createElement("input"),it=E.createElement("select").appendChild(E.createElement("option")),rt.type="checkbox",v.checkOn=""!==rt.value,v.optSelected=it.selected,(rt=E.createElement("input")).value="t",rt.type="radio",v.radioValue="t"===rt.value;var pt,dt=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return B(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?pt:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!v.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),pt={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=dt[t]||S.find.attr;dt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=dt[o],dt[o]=r,r=null!=a(e,t,n)?o:null,dt[o]=i),r}});var ht=/^(?:input|select|textarea|button)$/i,gt=/^(?:a|area)$/i;function yt(e){return(e.match(P)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function mt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return B(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):ht.test(e.nodeName)||gt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),v.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a;return m(t)?this.each(function(e){S(this).addClass(t.call(this,e,vt(this)))}):(e=mt(t)).length?this.each(function(){if(r=vt(this),n=1===this.nodeType&&" "+yt(r)+" "){for(o=0;o<e.length;o++)i=e[o],n.indexOf(" "+i+" ")<0&&(n+=i+" ");a=yt(n),r!==a&&this.setAttribute("class",a)}}):this},removeClass:function(t){var e,n,r,i,o,a;return m(t)?this.each(function(e){S(this).removeClass(t.call(this,e,vt(this)))}):arguments.length?(e=mt(t)).length?this.each(function(){if(r=vt(this),n=1===this.nodeType&&" "+yt(r)+" "){for(o=0;o<e.length;o++){i=e[o];while(-1<n.indexOf(" "+i+" "))n=n.replace(" "+i+" "," ")}a=yt(n),r!==a&&this.setAttribute("class",a)}}):this:this.attr("class","")},toggleClass:function(t,n){var e,r,i,o,a=typeof t,s="string"===a||Array.isArray(t);return m(t)?this.each(function(e){S(this).toggleClass(t.call(this,e,vt(this),n),n)}):"boolean"==typeof n&&s?n?this.addClass(t):this.removeClass(t):(e=mt(t),this.each(function(){if(s)for(o=S(this),i=0;i<e.length;i++)r=e[i],o.hasClass(r)?o.removeClass(r):o.addClass(r);else void 0!==t&&"boolean"!==a||((r=vt(this))&&Y.set(this,"__className__",r),this.setAttribute&&this.setAttribute("class",r||!1===t?"":Y.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+yt(vt(n))+" ").indexOf(t))return!0;return!1}});var xt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(xt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:yt(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},v.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),v.focusin="onfocusin"in C;var bt=/^(?:focusinfocus|focusoutblur)$/,wt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=y.call(e,"type")?e.type:e,h=y.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!bt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,bt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,wt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,wt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),v.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var Tt=C.location,Ct={guid:Date.now()},Et=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var St=/\[\]$/,kt=/\r?\n/g,At=/^(?:submit|button|image|reset|file)$/i,Nt=/^(?:input|select|textarea|keygen)/i;function jt(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||St.test(n)?i(n,t):jt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)jt(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)jt(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&Nt.test(this.nodeName)&&!At.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(kt,"\r\n")}}):{name:t.name,value:n.replace(kt,"\r\n")}}).get()}});var Dt=/%20/g,qt=/#.*$/,Lt=/([?&])_=[^&]*/,Ht=/^(.*?):[ \t]*([^\r\n]*)$/gm,Ot=/^(?:GET|HEAD)$/,Pt=/^\/\//,Rt={},Mt={},It="*/".concat("*"),Wt=E.createElement("a");function Ft(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function $t(t,i,o,a){var s={},u=t===Mt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Bt(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Wt.href=Tt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Tt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Tt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":It,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Bt(Bt(e,S.ajaxSettings),t):Bt(S.ajaxSettings,e)},ajaxPrefilter:Ft(Rt),ajaxTransport:Ft(Mt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,y=S.ajaxSetup({},t),v=y.context||y,m=y.context&&(v.nodeType||v.jquery)?S(v):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=y.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Ht.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(y.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),y.url=((e||y.url||Tt.href)+"").replace(Pt,Tt.protocol+"//"),y.type=t.method||t.type||y.method||y.type,y.dataTypes=(y.dataType||"*").toLowerCase().match(P)||[""],null==y.crossDomain){r=E.createElement("a");try{r.href=y.url,r.href=r.href,y.crossDomain=Wt.protocol+"//"+Wt.host!=r.protocol+"//"+r.host}catch(e){y.crossDomain=!0}}if(y.data&&y.processData&&"string"!=typeof y.data&&(y.data=S.param(y.data,y.traditional)),$t(Rt,y,t,T),h)return T;for(i in(g=S.event&&y.global)&&0==S.active++&&S.event.trigger("ajaxStart"),y.type=y.type.toUpperCase(),y.hasContent=!Ot.test(y.type),f=y.url.replace(qt,""),y.hasContent?y.data&&y.processData&&0===(y.contentType||"").indexOf("application/x-www-form-urlencoded")&&(y.data=y.data.replace(Dt,"+")):(o=y.url.slice(f.length),y.data&&(y.processData||"string"==typeof y.data)&&(f+=(Et.test(f)?"&":"?")+y.data,delete y.data),!1===y.cache&&(f=f.replace(Lt,"$1"),o=(Et.test(f)?"&":"?")+"_="+Ct.guid+++o),y.url=f+o),y.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(y.data&&y.hasContent&&!1!==y.contentType||t.contentType)&&T.setRequestHeader("Content-Type",y.contentType),T.setRequestHeader("Accept",y.dataTypes[0]&&y.accepts[y.dataTypes[0]]?y.accepts[y.dataTypes[0]]+("*"!==y.dataTypes[0]?", "+It+"; q=0.01":""):y.accepts["*"]),y.headers)T.setRequestHeader(i,y.headers[i]);if(y.beforeSend&&(!1===y.beforeSend.call(v,T,y)||h))return T.abort();if(u="abort",b.add(y.complete),T.done(y.success),T.fail(y.error),c=$t(Mt,y,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,y]),h)return T;y.async&&0<y.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},y.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(y,T,n)),!i&&-1<S.inArray("script",y.dataTypes)&&S.inArray("json",y.dataTypes)<0&&(y.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(y,s,T,i),i?(y.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===y.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(v,[o,l,T]):x.rejectWith(v,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,y,i?o:a]),b.fireWith(v,[T,l]),g&&(m.trigger("ajaxComplete",[T,y]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var _t={0:200,1223:204},zt=S.ajaxSettings.xhr();v.cors=!!zt&&"withCredentials"in zt,v.ajax=zt=!!zt,S.ajaxTransport(function(i){var o,a;if(v.cors||zt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(_t[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),v.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(v.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=yt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return B(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=_e(v.pixelPosition,function(e,t){if(t)return t=Be(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return B(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Gt=/^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Gt,"$1")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Yt=C.jQuery,Qt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Qt),e&&C.jQuery===S&&(C.jQuery=Yt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
diff --git a/api/jquery/jquery-ui.min.css b/api/jquery/jquery-ui.min.css
new file mode 100644
index 0000000000..693327f014
--- /dev/null
+++ b/api/jquery/jquery-ui.min.css
@@ -0,0 +1,6 @@
+/*! jQuery UI - v1.13.2 - 2023-02-27
+* http://jqueryui.com
+* Includes: core.css, autocomplete.css, menu.css
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
+
+.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;-ms-filter:"alpha(opacity=0)"}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}
\ No newline at end of file
diff --git a/api/jquery/jquery-ui.min.js b/api/jquery/jquery-ui.min.js
new file mode 100644
index 0000000000..8166a15ee2
--- /dev/null
+++ b/api/jquery/jquery-ui.min.js
@@ -0,0 +1,6 @@
+/*! jQuery UI - v1.13.2 - 2023-02-27
+* http://jqueryui.com
+* Includes: widget.js, position.js, keycode.js, unique-id.js, widgets/autocomplete.js, widgets/menu.js
+* Copyright jQuery Foundation and other contributors; Licensed MIT */
+
+!function(t){"use strict";"function"==typeof define&&define.amd?define(["jquery"],t):t(jQuery)}(function(x){"use strict";x.ui=x.ui||{};x.ui.version="1.13.2";var n,i=0,l=Array.prototype.hasOwnProperty,a=Array.prototype.slice;x.cleanData=(n=x.cleanData,function(t){for(var e,i,s=0;null!=(i=t[s]);s++)(e=x._data(i,"events"))&&e.remove&&x(i).triggerHandler("remove");n(t)}),x.widget=function(t,i,e){var s,n,o,l={},a=t.split(".")[0],r=a+"-"+(t=t.split(".")[1]);return e||(e=i,i=x.Widget),Array.isArray(e)&&(e=x.extend.apply(null,[{}].concat(e))),x.expr.pseudos[r.toLowerCase()]=function(t){return!!x.data(t,r)},x[a]=x[a]||{},s=x[a][t],n=x[a][t]=function(t,e){if(!this||!this._createWidget)return new n(t,e);arguments.length&&this._createWidget(t,e)},x.extend(n,s,{version:e.version,_proto:x.extend({},e),_childConstructors:[]}),(o=new i).options=x.widget.extend({},o.options),x.each(e,function(e,s){function n(){return i.prototype[e].apply(this,arguments)}function o(t){return i.prototype[e].apply(this,t)}l[e]="function"==typeof s?function(){var t,e=this._super,i=this._superApply;return this._super=n,this._superApply=o,t=s.apply(this,arguments),this._super=e,this._superApply=i,t}:s}),n.prototype=x.widget.extend(o,{widgetEventPrefix:s&&o.widgetEventPrefix||t},l,{constructor:n,namespace:a,widgetName:t,widgetFullName:r}),s?(x.each(s._childConstructors,function(t,e){var i=e.prototype;x.widget(i.namespace+"."+i.widgetName,n,e._proto)}),delete s._childConstructors):i._childConstructors.push(n),x.widget.bridge(t,n),n},x.widget.extend=function(t){for(var e,i,s=a.call(arguments,1),n=0,o=s.length;n<o;n++)for(e in s[n])i=s[n][e],l.call(s[n],e)&&void 0!==i&&(x.isPlainObject(i)?t[e]=x.isPlainObject(t[e])?x.widget.extend({},t[e],i):x.widget.extend({},i):t[e]=i);return t},x.widget.bridge=function(o,e){var l=e.prototype.widgetFullName||o;x.fn[o]=function(i){var t="string"==typeof i,s=a.call(arguments,1),n=this;return t?this.length||"instance"!==i?this.each(function(){var t,e=x.data(this,l);return"instance"===i?(n=e,!1):e?"function"!=typeof e[i]||"_"===i.charAt(0)?x.error("no such method '"+i+"' for "+o+" widget instance"):(t=e[i].apply(e,s))!==e&&void 0!==t?(n=t&&t.jquery?n.pushStack(t.get()):t,!1):void 0:x.error("cannot call methods on "+o+" prior to initialization; attempted to call method '"+i+"'")}):n=void 0:(s.length&&(i=x.widget.extend.apply(null,[i].concat(s))),this.each(function(){var t=x.data(this,l);t?(t.option(i||{}),t._init&&t._init()):x.data(this,l,new e(i,this))})),n}},x.Widget=function(){},x.Widget._childConstructors=[],x.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"<div>",options:{classes:{},disabled:!1,create:null},_createWidget:function(t,e){e=x(e||this.defaultElement||this)[0],this.element=x(e),this.uuid=i++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=x(),this.hoverable=x(),this.focusable=x(),this.classesElementLookup={},e!==this&&(x.data(e,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===e&&this.destroy()}}),this.document=x(e.style?e.ownerDocument:e.document||e),this.window=x(this.document[0].defaultView||this.document[0].parentWindow)),this.options=x.widget.extend({},this.options,this._getCreateOptions(),t),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:x.noop,_create:x.noop,_init:x.noop,destroy:function(){var i=this;this._destroy(),x.each(this.classesElementLookup,function(t,e){i._removeClass(e,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:x.noop,widget:function(){return this.element},option:function(t,e){var i,s,n,o=t;if(0===arguments.length)return x.widget.extend({},this.options);if("string"==typeof t)if(o={},t=(i=t.split(".")).shift(),i.length){for(s=o[t]=x.widget.extend({},this.options[t]),n=0;n<i.length-1;n++)s[i[n]]=s[i[n]]||{},s=s[i[n]];if(t=i.pop(),1===arguments.length)return void 0===s[t]?null:s[t];s[t]=e}else{if(1===arguments.length)return void 0===this.options[t]?null:this.options[t];o[t]=e}return this._setOptions(o),this},_setOptions:function(t){for(var e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(t){var e,i,s;for(e in t)s=this.classesElementLookup[e],t[e]!==this.options.classes[e]&&s&&s.length&&(i=x(s.get()),this._removeClass(s,e),i.addClass(this._classes({element:i,keys:e,classes:t,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(n){var o=[],l=this;function t(t,e){for(var i,s=0;s<t.length;s++)i=l.classesElementLookup[t[s]]||x(),i=n.add?(function(){var i=[];n.element.each(function(t,e){x.map(l.classesElementLookup,function(t){return t}).some(function(t){return t.is(e)})||i.push(e)}),l._on(x(i),{remove:"_untrackClassesElement"})}(),x(x.uniqueSort(i.get().concat(n.element.get())))):x(i.not(n.element).get()),l.classesElementLookup[t[s]]=i,o.push(t[s]),e&&n.classes[t[s]]&&o.push(n.classes[t[s]])}return(n=x.extend({element:this.element,classes:this.options.classes||{}},n)).keys&&t(n.keys.match(/\S+/g)||[],!0),n.extra&&t(n.extra.match(/\S+/g)||[]),o.join(" ")},_untrackClassesElement:function(i){var s=this;x.each(s.classesElementLookup,function(t,e){-1!==x.inArray(i.target,e)&&(s.classesElementLookup[t]=x(e.not(i.target).get()))}),this._off(x(i.target))},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){var n="string"==typeof t||null===t,i={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s="boolean"==typeof s?s:i};return i.element.toggleClass(this._classes(i),s),this},_on:function(n,o,t){var l,a=this;"boolean"!=typeof n&&(t=o,o=n,n=!1),t?(o=l=x(o),this.bindings=this.bindings.add(o)):(t=o,o=this.element,l=this.widget()),x.each(t,function(t,e){function i(){if(n||!0!==a.options.disabled&&!x(this).hasClass("ui-state-disabled"))return("string"==typeof e?a[e]:e).apply(a,arguments)}"string"!=typeof e&&(i.guid=e.guid=e.guid||i.guid||x.guid++);var s=t.match(/^([\w:-]*)\s*(.*)$/),t=s[1]+a.eventNamespace,s=s[2];s?l.on(t,s,i):o.on(t,i)})},_off:function(t,e){e=(e||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,t.off(e),this.bindings=x(this.bindings.not(t).get()),this.focusable=x(this.focusable.not(t).get()),this.hoverable=x(this.hoverable.not(t).get())},_delay:function(t,e){var i=this;return setTimeout(function(){return("string"==typeof t?i[t]:t).apply(i,arguments)},e||0)},_hoverable:function(t){this.hoverable=this.hoverable.add(t),this._on(t,{mouseenter:function(t){this._addClass(x(t.currentTarget),null,"ui-state-hover")},mouseleave:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-hover")}})},_focusable:function(t){this.focusable=this.focusable.add(t),this._on(t,{focusin:function(t){this._addClass(x(t.currentTarget),null,"ui-state-focus")},focusout:function(t){this._removeClass(x(t.currentTarget),null,"ui-state-focus")}})},_trigger:function(t,e,i){var s,n,o=this.options[t];if(i=i||{},(e=x.Event(e)).type=(t===this.widgetEventPrefix?t:this.widgetEventPrefix+t).toLowerCase(),e.target=this.element[0],n=e.originalEvent)for(s in n)s in e||(e[s]=n[s]);return this.element.trigger(e,i),!("function"==typeof o&&!1===o.apply(this.element[0],[e].concat(i))||e.isDefaultPrevented())}},x.each({show:"fadeIn",hide:"fadeOut"},function(o,l){x.Widget.prototype["_"+o]=function(e,t,i){var s,n=(t="string"==typeof t?{effect:t}:t)?!0!==t&&"number"!=typeof t&&t.effect||l:o;"number"==typeof(t=t||{})?t={duration:t}:!0===t&&(t={}),s=!x.isEmptyObject(t),t.complete=i,t.delay&&e.delay(t.delay),s&&x.effects&&x.effects.effect[n]?e[o](t):n!==o&&e[n]?e[n](t.duration,t.easing,i):e.queue(function(t){x(this)[o](),i&&i.call(e[0]),t()})}});var s,C,E,o,r,u,h,c,k;x.widget;function T(t,e,i){return[parseFloat(t[0])*(c.test(t[0])?e/100:1),parseFloat(t[1])*(c.test(t[1])?i/100:1)]}function A(t,e){return parseInt(x.css(t,e),10)||0}function W(t){return null!=t&&t===t.window}C=Math.max,E=Math.abs,o=/left|center|right/,r=/top|center|bottom/,u=/[\+\-]\d+(\.[\d]+)?%?/,h=/^\w+/,c=/%$/,k=x.fn.position,x.position={scrollbarWidth:function(){if(void 0!==s)return s;var t,e=x("<div style='display:block;position:absolute;width:200px;height:200px;overflow:hidden;'><div style='height:300px;width:auto;'></div></div>"),i=e.children()[0];return x("body").append(e),t=i.offsetWidth,e.css("overflow","scroll"),t===(i=i.offsetWidth)&&(i=e[0].clientWidth),e.remove(),s=t-i},getScrollInfo:function(t){var e=t.isWindow||t.isDocument?"":t.element.css("overflow-x"),i=t.isWindow||t.isDocument?"":t.element.css("overflow-y"),e="scroll"===e||"auto"===e&&t.width<t.element[0].scrollWidth;return{width:"scroll"===i||"auto"===i&&t.height<t.element[0].scrollHeight?x.position.scrollbarWidth():0,height:e?x.position.scrollbarWidth():0}},getWithinInfo:function(t){var e=x(t||window),i=W(e[0]),s=!!e[0]&&9===e[0].nodeType;return{element:e,isWindow:i,isDocument:s,offset:!i&&!s?x(t).offset():{left:0,top:0},scrollLeft:e.scrollLeft(),scrollTop:e.scrollTop(),width:e.outerWidth(),height:e.outerHeight()}}},x.fn.position=function(c){if(!c||!c.of)return k.apply(this,arguments);var d,f,m,p,v,t,g="string"==typeof(c=x.extend({},c)).of?x(document).find(c.of):x(c.of),_=x.position.getWithinInfo(c.within),y=x.position.getScrollInfo(_),b=(c.collision||"flip").split(" "),w={},e=9===(t=(e=g)[0]).nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:W(t)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:t.preventDefault?{width:0,height:0,offset:{top:t.pageY,left:t.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()};return g[0].preventDefault&&(c.at="left top"),f=e.width,m=e.height,v=x.extend({},p=e.offset),x.each(["my","at"],function(){var t,e,i=(c[this]||"").split(" ");(i=1===i.length?o.test(i[0])?i.concat(["center"]):r.test(i[0])?["center"].concat(i):["center","center"]:i)[0]=o.test(i[0])?i[0]:"center",i[1]=r.test(i[1])?i[1]:"center",t=u.exec(i[0]),e=u.exec(i[1]),w[this]=[t?t[0]:0,e?e[0]:0],c[this]=[h.exec(i[0])[0],h.exec(i[1])[0]]}),1===b.length&&(b[1]=b[0]),"right"===c.at[0]?v.left+=f:"center"===c.at[0]&&(v.left+=f/2),"bottom"===c.at[1]?v.top+=m:"center"===c.at[1]&&(v.top+=m/2),d=T(w.at,f,m),v.left+=d[0],v.top+=d[1],this.each(function(){var i,t,l=x(this),a=l.outerWidth(),r=l.outerHeight(),e=A(this,"marginLeft"),s=A(this,"marginTop"),n=a+e+A(this,"marginRight")+y.width,o=r+s+A(this,"marginBottom")+y.height,u=x.extend({},v),h=T(w.my,l.outerWidth(),l.outerHeight());"right"===c.my[0]?u.left-=a:"center"===c.my[0]&&(u.left-=a/2),"bottom"===c.my[1]?u.top-=r:"center"===c.my[1]&&(u.top-=r/2),u.left+=h[0],u.top+=h[1],i={marginLeft:e,marginTop:s},x.each(["left","top"],function(t,e){x.ui.position[b[t]]&&x.ui.position[b[t]][e](u,{targetWidth:f,targetHeight:m,elemWidth:a,elemHeight:r,collisionPosition:i,collisionWidth:n,collisionHeight:o,offset:[d[0]+h[0],d[1]+h[1]],my:c.my,at:c.at,within:_,elem:l})}),c.using&&(t=function(t){var e=p.left-u.left,i=e+f-a,s=p.top-u.top,n=s+m-r,o={target:{element:g,left:p.left,top:p.top,width:f,height:m},element:{element:l,left:u.left,top:u.top,width:a,height:r},horizontal:i<0?"left":0<e?"right":"center",vertical:n<0?"top":0<s?"bottom":"middle"};f<a&&E(e+i)<f&&(o.horizontal="center"),m<r&&E(s+n)<m&&(o.vertical="middle"),C(E(e),E(i))>C(E(s),E(n))?o.important="horizontal":o.important="vertical",c.using.call(this,t,o)}),l.offset(x.extend(u,{using:t}))})},x.ui.position={fit:{left:function(t,e){var i=e.within,s=i.isWindow?i.scrollLeft:i.offset.left,n=i.width,o=t.left-e.collisionPosition.marginLeft,l=s-o,a=o+e.collisionWidth-n-s;e.collisionWidth>n?0<l&&a<=0?(i=t.left+l+e.collisionWidth-n-s,t.left+=l-i):t.left=!(0<a&&l<=0)&&a<l?s+n-e.collisionWidth:s:0<l?t.left+=l:0<a?t.left-=a:t.left=C(t.left-o,t.left)},top:function(t,e){var i=e.within,s=i.isWindow?i.scrollTop:i.offset.top,n=e.within.height,o=t.top-e.collisionPosition.marginTop,l=s-o,a=o+e.collisionHeight-n-s;e.collisionHeight>n?0<l&&a<=0?(i=t.top+l+e.collisionHeight-n-s,t.top+=l-i):t.top=!(0<a&&l<=0)&&a<l?s+n-e.collisionHeight:s:0<l?t.top+=l:0<a?t.top-=a:t.top=C(t.top-o,t.top)}},flip:{left:function(t,e){var i=e.within,s=i.offset.left+i.scrollLeft,n=i.width,o=i.isWindow?i.scrollLeft:i.offset.left,l=t.left-e.collisionPosition.marginLeft,a=l-o,r=l+e.collisionWidth-n-o,u="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,i="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,l=-2*e.offset[0];a<0?((s=t.left+u+i+l+e.collisionWidth-n-s)<0||s<E(a))&&(t.left+=u+i+l):0<r&&(0<(o=t.left-e.collisionPosition.marginLeft+u+i+l-o)||E(o)<r)&&(t.left+=u+i+l)},top:function(t,e){var i=e.within,s=i.offset.top+i.scrollTop,n=i.height,o=i.isWindow?i.scrollTop:i.offset.top,l=t.top-e.collisionPosition.marginTop,a=l-o,r=l+e.collisionHeight-n-o,u="top"===e.my[1]?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,i="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,l=-2*e.offset[1];a<0?((s=t.top+u+i+l+e.collisionHeight-n-s)<0||s<E(a))&&(t.top+=u+i+l):0<r&&(0<(o=t.top-e.collisionPosition.marginTop+u+i+l-o)||E(o)<r)&&(t.top+=u+i+l)}},flipfit:{left:function(){x.ui.position.flip.left.apply(this,arguments),x.ui.position.fit.left.apply(this,arguments)},top:function(){x.ui.position.flip.top.apply(this,arguments),x.ui.position.fit.top.apply(this,arguments)}}};var t;x.ui.position,x.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},x.fn.extend({uniqueId:(t=0,function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&x(this).removeAttr("id")})}}),x.ui.safeActiveElement=function(e){var i;try{i=e.activeElement}catch(t){i=e.body}return i=!(i=i||e.body).nodeName?e.body:i},x.widget("ui.menu",{version:"1.13.2",defaultElement:"<ul>",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.lastMousePosition={x:null,y:null},this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault(),this._activateItem(t)},"click .ui-menu-item":function(t){var e=x(t.target),i=x(x.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&e.not(".ui-state-disabled").length&&(this.select(t),t.isPropagationStopped()||(this.mouseHandled=!0),e.has(".ui-menu").length?this.expand(t):!this.element.is(":focus")&&i.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":"_activateItem","mousemove .ui-menu-item":"_activateItem",mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this._menuItems().first();e||this.focus(t,i)},blur:function(t){this._delay(function(){x.contains(this.element[0],x.ui.safeActiveElement(this.document[0]))||this.collapseAll(t)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t,!0),this.mouseHandled=!1}})},_activateItem:function(t){var e,i;this.previousFilter||t.clientX===this.lastMousePosition.x&&t.clientY===this.lastMousePosition.y||(this.lastMousePosition={x:t.clientX,y:t.clientY},e=x(t.target).closest(".ui-menu-item"),i=x(t.currentTarget),e[0]===i[0]&&(i.is(".ui-state-active")||(this._removeClass(i.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(t,i))))},_destroy:function(){var t=this.element.find(".ui-menu-item").removeAttr("role aria-disabled").children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),t.children().each(function(){var t=x(this);t.data("ui-menu-submenu-caret")&&t.remove()})},_keydown:function(t){var e,i,s,n=!0;switch(t.keyCode){case x.ui.keyCode.PAGE_UP:this.previousPage(t);break;case x.ui.keyCode.PAGE_DOWN:this.nextPage(t);break;case x.ui.keyCode.HOME:this._move("first","first",t);break;case x.ui.keyCode.END:this._move("last","last",t);break;case x.ui.keyCode.UP:this.previous(t);break;case x.ui.keyCode.DOWN:this.next(t);break;case x.ui.keyCode.LEFT:this.collapse(t);break;case x.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(t);break;case x.ui.keyCode.ENTER:case x.ui.keyCode.SPACE:this._activate(t);break;case x.ui.keyCode.ESCAPE:this.collapse(t);break;default:e=this.previousFilter||"",s=n=!1,i=96<=t.keyCode&&t.keyCode<=105?(t.keyCode-96).toString():String.fromCharCode(t.keyCode),clearTimeout(this.filterTimer),i===e?s=!0:i=e+i,e=this._filterMenuItems(i),(e=s&&-1!==e.index(this.active.next())?this.active.nextAll(".ui-menu-item"):e).length||(i=String.fromCharCode(t.keyCode),e=this._filterMenuItems(i)),e.length?(this.focus(t,e),this.previousFilter=i,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}n&&t.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var t,e,s=this,n=this.options.icons.submenu,i=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),e=i.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var t=x(this),e=t.prev(),i=x("<span>").data("ui-menu-submenu-caret",!0);s._addClass(i,"ui-menu-icon","ui-icon "+n),e.attr("aria-haspopup","true").prepend(i),t.attr("aria-labelledby",e.attr("id"))}),this._addClass(e,"ui-menu","ui-widget ui-widget-content ui-front"),(t=i.add(this.element).find(this.options.items)).not(".ui-menu-item").each(function(){var t=x(this);s._isDivider(t)&&s._addClass(t,"ui-menu-divider","ui-widget-content")}),i=(e=t.not(".ui-menu-item, .ui-menu-divider")).children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(e,"ui-menu-item")._addClass(i,"ui-menu-item-wrapper"),t.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!x.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){var i;"icons"===t&&(i=this.element.find(".ui-menu-icon"),this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",String(t)),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),i=this.active.children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",i.attr("id")),i=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(i,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),(i=e.children(".ui-menu")).length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(t){var e,i,s;this._hasScroll()&&(i=parseFloat(x.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(x.css(this.activeMenu[0],"paddingTop"))||0,e=t.offset().top-this.activeMenu.offset().top-i-s,i=this.activeMenu.scrollTop(),s=this.activeMenu.height(),t=t.outerHeight(),e<0?this.activeMenu.scrollTop(i+e):s<e+t&&this.activeMenu.scrollTop(i+e-s+t))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(t){var e=x.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(t.parents(".ui-menu")).hide().attr("aria-hidden","true"),t.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(e)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var t=i?this.element:x(e&&e.target).closest(this.element.find(".ui-menu"));t.length||(t=this.element),this._close(t),this.blur(e),this._removeClass(t.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=t},i?0:this.delay)},_close:function(t){(t=t||(this.active?this.active.parent():this.element)).find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(t){return!x(t.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this._menuItems(this.active.children(".ui-menu")).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_menuItems:function(t){return(t||this.element).find(this.options.items).filter(".ui-menu-item")},_move:function(t,e,i){var s;(s=this.active?"first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").last():this.active[t+"All"](".ui-menu-item").first():s)&&s.length&&this.active||(s=this._menuItems(this.activeMenu)[e]()),this.focus(i,s)},nextPage:function(t){var e,i,s;this.active?this.isLastItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===x.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.nextAll(".ui-menu-item").each(function(){return(e=x(this)).offset().top-i-s<0}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu)[this.active?"last":"first"]())):this.next(t)},previousPage:function(t){var e,i,s;this.active?this.isFirstItem()||(this._hasScroll()?(i=this.active.offset().top,s=this.element.innerHeight(),0===x.fn.jquery.indexOf("3.2.")&&(s+=this.element[0].offsetHeight-this.element.outerHeight()),this.active.prevAll(".ui-menu-item").each(function(){return 0<(e=x(this)).offset().top-i+s}),this.focus(t,e)):this.focus(t,this._menuItems(this.activeMenu).first())):this.next(t)},_hasScroll:function(){return this.element.outerHeight()<this.element.prop("scrollHeight")},select:function(t){this.active=this.active||x(t.target).closest(".ui-menu-item");var e={item:this.active};this.active.has(".ui-menu").length||this.collapseAll(t,!0),this._trigger("select",t,e)},_filterMenuItems:function(t){var t=t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&"),e=new RegExp("^"+t,"i");return this.activeMenu.find(this.options.items).filter(".ui-menu-item").filter(function(){return e.test(String.prototype.trim.call(x(this).children(".ui-menu-item-wrapper").text()))})}});x.widget("ui.autocomplete",{version:"1.13.2",defaultElement:"<input>",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,liveRegionTimer:null,_create:function(){var i,s,n,t=this.element[0].nodeName.toLowerCase(),e="textarea"===t,t="input"===t;this.isMultiLine=e||!t&&this._isContentEditable(this.element),this.valueMethod=this.element[e||t?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(t){if(this.element.prop("readOnly"))s=n=i=!0;else{s=n=i=!1;var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:i=!0,this._move("previousPage",t);break;case e.PAGE_DOWN:i=!0,this._move("nextPage",t);break;case e.UP:i=!0,this._keyEvent("previous",t);break;case e.DOWN:i=!0,this._keyEvent("next",t);break;case e.ENTER:this.menu.active&&(i=!0,t.preventDefault(),this.menu.select(t));break;case e.TAB:this.menu.active&&this.menu.select(t);break;case e.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(t),t.preventDefault());break;default:s=!0,this._searchTimeout(t)}}},keypress:function(t){if(i)return i=!1,void(this.isMultiLine&&!this.menu.element.is(":visible")||t.preventDefault());if(!s){var e=x.ui.keyCode;switch(t.keyCode){case e.PAGE_UP:this._move("previousPage",t);break;case e.PAGE_DOWN:this._move("nextPage",t);break;case e.UP:this._keyEvent("previous",t);break;case e.DOWN:this._keyEvent("next",t)}}},input:function(t){if(n)return n=!1,void t.preventDefault();this._searchTimeout(t)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){clearTimeout(this.searching),this.close(t),this._change(t)}}),this._initSource(),this.menu=x("<ul>").appendTo(this._appendTo()).menu({role:null}).hide().attr({unselectable:"on"}).menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(t){t.preventDefault()},menufocus:function(t,e){var i,s;if(this.isNewMenu&&(this.isNewMenu=!1,t.originalEvent&&/^mouse/.test(t.originalEvent.type)))return this.menu.blur(),void this.document.one("mousemove",function(){x(t.target).trigger(t.originalEvent)});s=e.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",t,{item:s})&&t.originalEvent&&/^key/.test(t.originalEvent.type)&&this._value(s.value),(i=e.item.attr("aria-label")||s.value)&&String.prototype.trim.call(i).length&&(clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("<div>").text(i))},100))},menuselect:function(t,e){var i=e.item.data("ui-autocomplete-item"),s=this.previous;this.element[0]!==x.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s,this.selectedItem=i})),!1!==this._trigger("select",t,{item:i})&&this._value(i.value),this.term=this._value(),this.close(t),this.selectedItem=i}}),this.liveRegion=x("<div>",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(t){var e=this.menu.element[0];return t.target===this.element[0]||t.target===e||x.contains(e,t.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var t=this.options.appendTo;return t=!(t=!(t=t&&(t.jquery||t.nodeType?x(t):this.document.find(t).eq(0)))||!t[0]?this.element.closest(".ui-front, dialog"):t).length?this.document[0].body:t},_initSource:function(){var i,s,n=this;Array.isArray(this.options.source)?(i=this.options.source,this.source=function(t,e){e(x.ui.autocomplete.filter(i,t.term))}):"string"==typeof this.options.source?(s=this.options.source,this.source=function(t,e){n.xhr&&n.xhr.abort(),n.xhr=x.ajax({url:s,data:t,dataType:"json",success:function(t){e(t)},error:function(){e([])}})}):this.source=this.options.source},_searchTimeout:function(s){clearTimeout(this.searching),this.searching=this._delay(function(){var t=this.term===this._value(),e=this.menu.element.is(":visible"),i=s.altKey||s.ctrlKey||s.metaKey||s.shiftKey;t&&(e||i)||(this.selectedItem=null,this.search(null,s))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length<this.options.minLength?this.close(e):!1!==this._trigger("search",e)?this._search(t):void 0},_search:function(t){this.pending++,this._addClass("ui-autocomplete-loading"),this.cancelSearch=!1,this.source({term:t},this._response())},_response:function(){var e=++this.requestIndex;return function(t){e===this.requestIndex&&this.__response(t),this.pending--,this.pending||this._removeClass("ui-autocomplete-loading")}.bind(this)},__response:function(t){t=t&&this._normalize(t),this._trigger("response",null,{content:t}),!this.options.disabled&&t&&t.length&&!this.cancelSearch?(this._suggest(t),this._trigger("open")):this._close()},close:function(t){this.cancelSearch=!0,this._close(t)},_close:function(t){this._off(this.document,"mousedown"),this.menu.element.is(":visible")&&(this.menu.element.hide(),this.menu.blur(),this.isNewMenu=!0,this._trigger("close",t))},_change:function(t){this.previous!==this._value()&&this._trigger("change",t,{item:this.selectedItem})},_normalize:function(t){return t.length&&t[0].label&&t[0].value?t:x.map(t,function(t){return"string"==typeof t?{label:t,value:t}:x.extend({},t,{label:t.label||t.value,value:t.value||t.label})})},_suggest:function(t){var e=this.menu.element.empty();this._renderMenu(e,t),this.isNewMenu=!0,this.menu.refresh(),e.show(),this._resizeMenu(),e.position(x.extend({of:this.element},this.options.position)),this.options.autoFocus&&this.menu.next(),this._on(this.document,{mousedown:"_closeOnClickOutside"})},_resizeMenu:function(){var t=this.menu.element;t.outerWidth(Math.max(t.width("").outerWidth()+1,this.element.outerWidth()))},_renderMenu:function(i,t){var s=this;x.each(t,function(t,e){s._renderItemData(i,e)})},_renderItemData:function(t,e){return this._renderItem(t,e).data("ui-autocomplete-item",e)},_renderItem:function(t,e){return x("<li>").append(x("<div>").text(e.label)).appendTo(t)},_move:function(t,e){if(this.menu.element.is(":visible"))return this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),void this.menu.blur()):void this.menu[t](e);this.search(null,e)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){this.isMultiLine&&!this.menu.element.is(":visible")||(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),x.extend(x.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(t,e){var i=new RegExp(x.ui.autocomplete.escapeRegex(e),"i");return x.grep(t,function(t){return i.test(t.label||t.value||t)})}}),x.widget("ui.autocomplete",x.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(1<t?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(t){var e;this._superApply(arguments),this.options.disabled||this.cancelSearch||(e=t&&t.length?this.options.messages.results(t.length):this.options.messages.noResults,clearTimeout(this.liveRegionTimer),this.liveRegionTimer=this._delay(function(){this.liveRegion.html(x("<div>").text(e))},100))}});x.ui.autocomplete});
\ No newline at end of file
diff --git a/api/jquery/jszip-utils/dist/jszip-utils-ie.js b/api/jquery/jszip-utils/dist/jszip-utils-ie.js
new file mode 100644
index 0000000000..a74cc709f6
--- /dev/null
+++ b/api/jquery/jszip-utils/dist/jszip-utils-ie.js
@@ -0,0 +1,56 @@
+/*!
+
+JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
+<http://stuk.github.io/jszip-utils>
+
+(c) 2014 Stuart Knightley, David Duponchel
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
+
+*/
+;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
+var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/* jshint evil: true, newcap: false */
+/* global IEBinaryToArray_ByteStr, IEBinaryToArray_ByteStr_Last */
+"use strict";
+
+// Adapted from http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest
+var IEBinaryToArray_ByteStr_Script =
+    "<!-- IEBinaryToArray_ByteStr -->\r\n"+
+    "<script type='text/vbscript'>\r\n"+
+    "Function IEBinaryToArray_ByteStr(Binary)\r\n"+
+    "   IEBinaryToArray_ByteStr = CStr(Binary)\r\n"+
+    "End Function\r\n"+
+    "Function IEBinaryToArray_ByteStr_Last(Binary)\r\n"+
+    "   Dim lastIndex\r\n"+
+    "   lastIndex = LenB(Binary)\r\n"+
+    "   if lastIndex mod 2 Then\r\n"+
+    "       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n"+
+    "   Else\r\n"+
+    "       IEBinaryToArray_ByteStr_Last = "+'""'+"\r\n"+
+    "   End If\r\n"+
+    "End Function\r\n"+
+    "</script>\r\n";
+
+// inject VBScript
+document.write(IEBinaryToArray_ByteStr_Script);
+
+global.JSZipUtils._getBinaryFromXHR = function (xhr) {
+    var binary = xhr.responseBody;
+    var byteMapping = {};
+    for ( var i = 0; i < 256; i++ ) {
+        for ( var j = 0; j < 256; j++ ) {
+            byteMapping[ String.fromCharCode( i + (j << 8) ) ] =
+                String.fromCharCode(i) + String.fromCharCode(j);
+        }
+    }
+    var rawBytes = IEBinaryToArray_ByteStr(binary);
+    var lastChr = IEBinaryToArray_ByteStr_Last(binary);
+    return rawBytes.replace(/[\s\S]/g, function( match ) {
+        return byteMapping[match];
+    }) + lastChr;
+};
+
+// enforcing Stuk's coding style
+// vim: set shiftwidth=4 softtabstop=4:
+
+},{}]},{},[1])
+;
diff --git a/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js b/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js
new file mode 100644
index 0000000000..93d8bc8ef2
--- /dev/null
+++ b/api/jquery/jszip-utils/dist/jszip-utils-ie.min.js
@@ -0,0 +1,10 @@
+/*!
+
+JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
+<http://stuk.github.io/jszip-utils>
+
+(c) 2014 Stuart Knightley, David Duponchel
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
+
+*/
+!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(){var a="undefined"!=typeof self?self:"undefined"!=typeof window?window:{},b="<!-- IEBinaryToArray_ByteStr -->\r\n<script type='text/vbscript'>\r\nFunction IEBinaryToArray_ByteStr(Binary)\r\n   IEBinaryToArray_ByteStr = CStr(Binary)\r\nEnd Function\r\nFunction IEBinaryToArray_ByteStr_Last(Binary)\r\n   Dim lastIndex\r\n   lastIndex = LenB(Binary)\r\n   if lastIndex mod 2 Then\r\n       IEBinaryToArray_ByteStr_Last = Chr( AscB( MidB( Binary, lastIndex, 1 ) ) )\r\n   Else\r\n       IEBinaryToArray_ByteStr_Last = \"\"\r\n   End If\r\nEnd Function\r\n</script>\r\n";document.write(b),a.JSZipUtils._getBinaryFromXHR=function(a){for(var b=a.responseBody,c={},d=0;256>d;d++)for(var e=0;256>e;e++)c[String.fromCharCode(d+(e<<8))]=String.fromCharCode(d)+String.fromCharCode(e);var f=IEBinaryToArray_ByteStr(b),g=IEBinaryToArray_ByteStr_Last(b);return f.replace(/[\s\S]/g,function(a){return c[a]})+g}},{}]},{},[1]);
diff --git a/api/jquery/jszip-utils/dist/jszip-utils.js b/api/jquery/jszip-utils/dist/jszip-utils.js
new file mode 100644
index 0000000000..775895ec92
--- /dev/null
+++ b/api/jquery/jszip-utils/dist/jszip-utils.js
@@ -0,0 +1,118 @@
+/*!
+
+JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
+<http://stuk.github.io/jszip-utils>
+
+(c) 2014 Stuart Knightley, David Duponchel
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
+
+*/
+!function(e){"object"==typeof exports?module.exports=e():"function"==typeof define&&define.amd?define(e):"undefined"!=typeof window?window.JSZipUtils=e():"undefined"!=typeof global?global.JSZipUtils=e():"undefined"!=typeof self&&(self.JSZipUtils=e())}(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
+'use strict';
+
+var JSZipUtils = {};
+// just use the responseText with xhr1, response with xhr2.
+// The transformation doesn't throw away high-order byte (with responseText)
+// because JSZip handles that case. If not used with JSZip, you may need to
+// do it, see https://developer.mozilla.org/En/Using_XMLHttpRequest#Handling_binary_data
+JSZipUtils._getBinaryFromXHR = function (xhr) {
+    // for xhr.responseText, the 0xFF mask is applied by JSZip
+    return xhr.response || xhr.responseText;
+};
+
+// taken from jQuery
+function createStandardXHR() {
+    try {
+        return new window.XMLHttpRequest();
+    } catch( e ) {}
+}
+
+function createActiveXHR() {
+    try {
+        return new window.ActiveXObject("Microsoft.XMLHTTP");
+    } catch( e ) {}
+}
+
+// Create the request object
+var createXHR = window.ActiveXObject ?
+    /* Microsoft failed to properly
+     * implement the XMLHttpRequest in IE7 (can't request local files),
+     * so we use the ActiveXObject when it is available
+     * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
+     * we need a fallback.
+     */
+    function() {
+    return createStandardXHR() || createActiveXHR();
+} :
+    // For all other browsers, use the standard XMLHttpRequest object
+    createStandardXHR;
+
+
+
+JSZipUtils.getBinaryContent = function(path, callback) {
+    /*
+     * Here is the tricky part : getting the data.
+     * In firefox/chrome/opera/... setting the mimeType to 'text/plain; charset=x-user-defined'
+     * is enough, the result is in the standard xhr.responseText.
+     * cf https://developer.mozilla.org/En/XMLHttpRequest/Using_XMLHttpRequest#Receiving_binary_data_in_older_browsers
+     * In IE <= 9, we must use (the IE only) attribute responseBody
+     * (for binary data, its content is different from responseText).
+     * In IE 10, the 'charset=x-user-defined' trick doesn't work, only the
+     * responseType will work :
+     * http://msdn.microsoft.com/en-us/library/ie/hh673569%28v=vs.85%29.aspx#Binary_Object_upload_and_download
+     *
+     * I'd like to use jQuery to avoid this XHR madness, but it doesn't support
+     * the responseType attribute : http://bugs.jquery.com/ticket/11461
+     */
+    try {
+
+        var xhr = createXHR();
+
+        xhr.open('GET', path, true);
+
+        // recent browsers
+        if ("responseType" in xhr) {
+            xhr.responseType = "arraybuffer";
+        }
+
+        // older browser
+        if(xhr.overrideMimeType) {
+            xhr.overrideMimeType("text/plain; charset=x-user-defined");
+        }
+
+        xhr.onreadystatechange = function(evt) {
+            var file, err;
+            // use `xhr` and not `this`... thanks IE
+            if (xhr.readyState === 4) {
+                if (xhr.status === 200 || xhr.status === 0) {
+                    file = null;
+                    err = null;
+                    try {
+                        file = JSZipUtils._getBinaryFromXHR(xhr);
+                    } catch(e) {
+                        err = new Error(e);
+                    }
+                    callback(err, file);
+                } else {
+                    callback(new Error("Ajax error for " + path + " : " + this.status + " " + this.statusText), null);
+                }
+            }
+        };
+
+        xhr.send();
+
+    } catch (e) {
+        callback(new Error(e), null);
+    }
+};
+
+// export
+module.exports = JSZipUtils;
+
+// enforcing Stuk's coding style
+// vim: set shiftwidth=4 softtabstop=4:
+
+},{}]},{},[1])
+(1)
+});
+;
diff --git a/api/jquery/jszip-utils/dist/jszip-utils.min.js b/api/jquery/jszip-utils/dist/jszip-utils.min.js
new file mode 100644
index 0000000000..78c7f5e5aa
--- /dev/null
+++ b/api/jquery/jszip-utils/dist/jszip-utils.min.js
@@ -0,0 +1,10 @@
+/*!
+
+JSZipUtils - A collection of cross-browser utilities to go along with JSZip.
+<http://stuk.github.io/jszip-utils>
+
+(c) 2014 Stuart Knightley, David Duponchel
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip-utils/master/LICENSE.markdown.
+
+*/
+!function(a){"object"==typeof exports?module.exports=a():"function"==typeof define&&define.amd?define(a):"undefined"!=typeof window?window.JSZipUtils=a():"undefined"!=typeof global?global.JSZipUtils=a():"undefined"!=typeof self&&(self.JSZipUtils=a())}(function(){return function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);throw new Error("Cannot find module '"+g+"'")}var j=c[g]={exports:{}};b[g][0].call(j.exports,function(a){var c=b[g][1][a];return e(c?c:a)},j,j.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b){"use strict";function c(){try{return new window.XMLHttpRequest}catch(a){}}function d(){try{return new window.ActiveXObject("Microsoft.XMLHTTP")}catch(a){}}var e={};e._getBinaryFromXHR=function(a){return a.response||a.responseText};var f=window.ActiveXObject?function(){return c()||d()}:c;e.getBinaryContent=function(a,b){try{var c=f();c.open("GET",a,!0),"responseType"in c&&(c.responseType="arraybuffer"),c.overrideMimeType&&c.overrideMimeType("text/plain; charset=x-user-defined"),c.onreadystatechange=function(){var d,f;if(4===c.readyState)if(200===c.status||0===c.status){d=null,f=null;try{d=e._getBinaryFromXHR(c)}catch(g){f=new Error(g)}b(f,d)}else b(new Error("Ajax error for "+a+" : "+this.status+" "+this.statusText),null)},c.send()}catch(d){b(new Error(d),null)}},b.exports=e},{}]},{},[1])(1)});
diff --git a/api/jquery/jszip/dist/jszip.js b/api/jquery/jszip/dist/jszip.js
new file mode 100644
index 0000000000..9f0ffc1d8c
--- /dev/null
+++ b/api/jquery/jszip/dist/jszip.js
@@ -0,0 +1,11370 @@
+/*!
+
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
+<http://stuartk.com/jszip>
+
+(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
+
+JSZip uses the library pako released under the MIT license :
+https://github.com/nodeca/pako/blob/master/LICENSE
+*/
+
+(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.JSZip = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
+'use strict';
+var utils = require('./utils');
+var support = require('./support');
+// private property
+var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
+
+
+// public method for encoding
+exports.encode = function(input) {
+    var output = [];
+    var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
+    var i = 0, len = input.length, remainingBytes = len;
+
+    var isArray = utils.getTypeOf(input) !== "string";
+    while (i < input.length) {
+        remainingBytes = len - i;
+
+        if (!isArray) {
+            chr1 = input.charCodeAt(i++);
+            chr2 = i < len ? input.charCodeAt(i++) : 0;
+            chr3 = i < len ? input.charCodeAt(i++) : 0;
+        } else {
+            chr1 = input[i++];
+            chr2 = i < len ? input[i++] : 0;
+            chr3 = i < len ? input[i++] : 0;
+        }
+
+        enc1 = chr1 >> 2;
+        enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
+        enc3 = remainingBytes > 1 ? (((chr2 & 15) << 2) | (chr3 >> 6)) : 64;
+        enc4 = remainingBytes > 2 ? (chr3 & 63) : 64;
+
+        output.push(_keyStr.charAt(enc1) + _keyStr.charAt(enc2) + _keyStr.charAt(enc3) + _keyStr.charAt(enc4));
+
+    }
+
+    return output.join("");
+};
+
+// public method for decoding
+exports.decode = function(input) {
+    var chr1, chr2, chr3;
+    var enc1, enc2, enc3, enc4;
+    var i = 0, resultIndex = 0;
+
+    var dataUrlPrefix = "data:";
+
+    if (input.substr(0, dataUrlPrefix.length) === dataUrlPrefix) {
+        // This is a common error: people give a data url
+        // (data:image/png;base64,iVBOR...) with a {base64: true} and
+        // wonders why things don't work.
+        // We can detect that the string input looks like a data url but we
+        // *can't* be sure it is one: removing everything up to the comma would
+        // be too dangerous.
+        throw new Error("Invalid base64 input, it looks like a data url.");
+    }
+
+    input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
+
+    var totalLength = input.length * 3 / 4;
+    if(input.charAt(input.length - 1) === _keyStr.charAt(64)) {
+        totalLength--;
+    }
+    if(input.charAt(input.length - 2) === _keyStr.charAt(64)) {
+        totalLength--;
+    }
+    if (totalLength % 1 !== 0) {
+        // totalLength is not an integer, the length does not match a valid
+        // base64 content. That can happen if:
+        // - the input is not a base64 content
+        // - the input is *almost* a base64 content, with a extra chars at the
+        //   beginning or at the end
+        // - the input uses a base64 variant (base64url for example)
+        throw new Error("Invalid base64 input, bad content length.");
+    }
+    var output;
+    if (support.uint8array) {
+        output = new Uint8Array(totalLength|0);
+    } else {
+        output = new Array(totalLength|0);
+    }
+
+    while (i < input.length) {
+
+        enc1 = _keyStr.indexOf(input.charAt(i++));
+        enc2 = _keyStr.indexOf(input.charAt(i++));
+        enc3 = _keyStr.indexOf(input.charAt(i++));
+        enc4 = _keyStr.indexOf(input.charAt(i++));
+
+        chr1 = (enc1 << 2) | (enc2 >> 4);
+        chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
+        chr3 = ((enc3 & 3) << 6) | enc4;
+
+        output[resultIndex++] = chr1;
+
+        if (enc3 !== 64) {
+            output[resultIndex++] = chr2;
+        }
+        if (enc4 !== 64) {
+            output[resultIndex++] = chr3;
+        }
+
+    }
+
+    return output;
+};
+
+},{"./support":30,"./utils":32}],2:[function(require,module,exports){
+'use strict';
+
+var external = require("./external");
+var DataWorker = require('./stream/DataWorker');
+var Crc32Probe = require('./stream/Crc32Probe');
+var DataLengthProbe = require('./stream/DataLengthProbe');
+
+/**
+ * Represent a compressed object, with everything needed to decompress it.
+ * @constructor
+ * @param {number} compressedSize the size of the data compressed.
+ * @param {number} uncompressedSize the size of the data after decompression.
+ * @param {number} crc32 the crc32 of the decompressed file.
+ * @param {object} compression the type of compression, see lib/compressions.js.
+ * @param {String|ArrayBuffer|Uint8Array|Buffer} data the compressed data.
+ */
+function CompressedObject(compressedSize, uncompressedSize, crc32, compression, data) {
+    this.compressedSize = compressedSize;
+    this.uncompressedSize = uncompressedSize;
+    this.crc32 = crc32;
+    this.compression = compression;
+    this.compressedContent = data;
+}
+
+CompressedObject.prototype = {
+    /**
+     * Create a worker to get the uncompressed content.
+     * @return {GenericWorker} the worker.
+     */
+    getContentWorker: function () {
+        var worker = new DataWorker(external.Promise.resolve(this.compressedContent))
+            .pipe(this.compression.uncompressWorker())
+            .pipe(new DataLengthProbe("data_length"));
+
+        var that = this;
+        worker.on("end", function () {
+            if (this.streamInfo['data_length'] !== that.uncompressedSize) {
+                throw new Error("Bug : uncompressed data size mismatch");
+            }
+        });
+        return worker;
+    },
+    /**
+     * Create a worker to get the compressed content.
+     * @return {GenericWorker} the worker.
+     */
+    getCompressedWorker: function () {
+        return new DataWorker(external.Promise.resolve(this.compressedContent))
+            .withStreamInfo("compressedSize", this.compressedSize)
+            .withStreamInfo("uncompressedSize", this.uncompressedSize)
+            .withStreamInfo("crc32", this.crc32)
+            .withStreamInfo("compression", this.compression)
+            ;
+    }
+};
+
+/**
+ * Chain the given worker with other workers to compress the content with the
+ * given compression.
+ * @param {GenericWorker} uncompressedWorker the worker to pipe.
+ * @param {Object} compression the compression object.
+ * @param {Object} compressionOptions the options to use when compressing.
+ * @return {GenericWorker} the new worker compressing the content.
+ */
+CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, compressionOptions) {
+    return uncompressedWorker
+        .pipe(new Crc32Probe())
+        .pipe(new DataLengthProbe("uncompressedSize"))
+        .pipe(compression.compressWorker(compressionOptions))
+        .pipe(new DataLengthProbe("compressedSize"))
+        .withStreamInfo("compression", compression);
+};
+
+module.exports = CompressedObject;
+
+},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(require,module,exports){
+'use strict';
+
+var GenericWorker = require("./stream/GenericWorker");
+
+exports.STORE = {
+    magic: "\x00\x00",
+    compressWorker : function (compressionOptions) {
+        return new GenericWorker("STORE compression");
+    },
+    uncompressWorker : function () {
+        return new GenericWorker("STORE decompression");
+    }
+};
+exports.DEFLATE = require('./flate');
+
+},{"./flate":7,"./stream/GenericWorker":28}],4:[function(require,module,exports){
+'use strict';
+
+var utils = require('./utils');
+
+/**
+ * The following functions come from pako, from pako/lib/zlib/crc32.js
+ * released under the MIT license, see pako https://github.com/nodeca/pako/
+ */
+
+// Use ordinary array, since untyped makes no boost here
+function makeTable() {
+    var c, table = [];
+
+    for(var n =0; n < 256; n++){
+        c = n;
+        for(var k =0; k < 8; k++){
+            c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
+        }
+        table[n] = c;
+    }
+
+    return table;
+}
+
+// Create table on load. Just 255 signed longs. Not a problem.
+var crcTable = makeTable();
+
+
+function crc32(crc, buf, len, pos) {
+    var t = crcTable, end = pos + len;
+
+    crc = crc ^ (-1);
+
+    for (var i = pos; i < end; i++ ) {
+        crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
+    }
+
+    return (crc ^ (-1)); // >>> 0;
+}
+
+// That's all for the pako functions.
+
+/**
+ * Compute the crc32 of a string.
+ * This is almost the same as the function crc32, but for strings. Using the
+ * same function for the two use cases leads to horrible performances.
+ * @param {Number} crc the starting value of the crc.
+ * @param {String} str the string to use.
+ * @param {Number} len the length of the string.
+ * @param {Number} pos the starting position for the crc32 computation.
+ * @return {Number} the computed crc32.
+ */
+function crc32str(crc, str, len, pos) {
+    var t = crcTable, end = pos + len;
+
+    crc = crc ^ (-1);
+
+    for (var i = pos; i < end; i++ ) {
+        crc = (crc >>> 8) ^ t[(crc ^ str.charCodeAt(i)) & 0xFF];
+    }
+
+    return (crc ^ (-1)); // >>> 0;
+}
+
+module.exports = function crc32wrapper(input, crc) {
+    if (typeof input === "undefined" || !input.length) {
+        return 0;
+    }
+
+    var isArray = utils.getTypeOf(input) !== "string";
+
+    if(isArray) {
+        return crc32(crc|0, input, input.length, 0);
+    } else {
+        return crc32str(crc|0, input, input.length, 0);
+    }
+};
+
+},{"./utils":32}],5:[function(require,module,exports){
+'use strict';
+exports.base64 = false;
+exports.binary = false;
+exports.dir = false;
+exports.createFolders = true;
+exports.date = null;
+exports.compression = null;
+exports.compressionOptions = null;
+exports.comment = null;
+exports.unixPermissions = null;
+exports.dosPermissions = null;
+
+},{}],6:[function(require,module,exports){
+/* global Promise */
+'use strict';
+
+// load the global object first:
+// - it should be better integrated in the system (unhandledRejection in node)
+// - the environment may have a custom Promise implementation (see zone.js)
+var ES6Promise = null;
+if (typeof Promise !== "undefined") {
+    ES6Promise = Promise;
+} else {
+    ES6Promise = require("lie");
+}
+
+/**
+ * Let the user use/change some implementations.
+ */
+module.exports = {
+    Promise: ES6Promise
+};
+
+},{"lie":37}],7:[function(require,module,exports){
+'use strict';
+var USE_TYPEDARRAY = (typeof Uint8Array !== 'undefined') && (typeof Uint16Array !== 'undefined') && (typeof Uint32Array !== 'undefined');
+
+var pako = require("pako");
+var utils = require("./utils");
+var GenericWorker = require("./stream/GenericWorker");
+
+var ARRAY_TYPE = USE_TYPEDARRAY ? "uint8array" : "array";
+
+exports.magic = "\x08\x00";
+
+/**
+ * Create a worker that uses pako to inflate/deflate.
+ * @constructor
+ * @param {String} action the name of the pako function to call : either "Deflate" or "Inflate".
+ * @param {Object} options the options to use when (de)compressing.
+ */
+function FlateWorker(action, options) {
+    GenericWorker.call(this, "FlateWorker/" + action);
+
+    this._pako = null;
+    this._pakoAction = action;
+    this._pakoOptions = options;
+    // the `meta` object from the last chunk received
+    // this allow this worker to pass around metadata
+    this.meta = {};
+}
+
+utils.inherits(FlateWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+FlateWorker.prototype.processChunk = function (chunk) {
+    this.meta = chunk.meta;
+    if (this._pako === null) {
+        this._createPako();
+    }
+    this._pako.push(utils.transformTo(ARRAY_TYPE, chunk.data), false);
+};
+
+/**
+ * @see GenericWorker.flush
+ */
+FlateWorker.prototype.flush = function () {
+    GenericWorker.prototype.flush.call(this);
+    if (this._pako === null) {
+        this._createPako();
+    }
+    this._pako.push([], true);
+};
+/**
+ * @see GenericWorker.cleanUp
+ */
+FlateWorker.prototype.cleanUp = function () {
+    GenericWorker.prototype.cleanUp.call(this);
+    this._pako = null;
+};
+
+/**
+ * Create the _pako object.
+ * TODO: lazy-loading this object isn't the best solution but it's the
+ * quickest. The best solution is to lazy-load the worker list. See also the
+ * issue #446.
+ */
+FlateWorker.prototype._createPako = function () {
+    this._pako = new pako[this._pakoAction]({
+        raw: true,
+        level: this._pakoOptions.level || -1 // default compression
+    });
+    var self = this;
+    this._pako.onData = function(data) {
+        self.push({
+            data : data,
+            meta : self.meta
+        });
+    };
+};
+
+exports.compressWorker = function (compressionOptions) {
+    return new FlateWorker("Deflate", compressionOptions);
+};
+exports.uncompressWorker = function () {
+    return new FlateWorker("Inflate", {});
+};
+
+},{"./stream/GenericWorker":28,"./utils":32,"pako":38}],8:[function(require,module,exports){
+'use strict';
+
+var utils = require('../utils');
+var GenericWorker = require('../stream/GenericWorker');
+var utf8 = require('../utf8');
+var crc32 = require('../crc32');
+var signature = require('../signature');
+
+/**
+ * Transform an integer into a string in hexadecimal.
+ * @private
+ * @param {number} dec the number to convert.
+ * @param {number} bytes the number of bytes to generate.
+ * @returns {string} the result.
+ */
+var decToHex = function(dec, bytes) {
+    var hex = "", i;
+    for (i = 0; i < bytes; i++) {
+        hex += String.fromCharCode(dec & 0xff);
+        dec = dec >>> 8;
+    }
+    return hex;
+};
+
+/**
+ * Generate the UNIX part of the external file attributes.
+ * @param {Object} unixPermissions the unix permissions or null.
+ * @param {Boolean} isDir true if the entry is a directory, false otherwise.
+ * @return {Number} a 32 bit integer.
+ *
+ * adapted from http://unix.stackexchange.com/questions/14705/the-zip-formats-external-file-attribute :
+ *
+ * TTTTsstrwxrwxrwx0000000000ADVSHR
+ * ^^^^____________________________ file type, see zipinfo.c (UNX_*)
+ *     ^^^_________________________ setuid, setgid, sticky
+ *        ^^^^^^^^^________________ permissions
+ *                 ^^^^^^^^^^______ not used ?
+ *                           ^^^^^^ DOS attribute bits : Archive, Directory, Volume label, System file, Hidden, Read only
+ */
+var generateUnixExternalFileAttr = function (unixPermissions, isDir) {
+
+    var result = unixPermissions;
+    if (!unixPermissions) {
+        // I can't use octal values in strict mode, hence the hexa.
+        //  040775 => 0x41fd
+        // 0100664 => 0x81b4
+        result = isDir ? 0x41fd : 0x81b4;
+    }
+    return (result & 0xFFFF) << 16;
+};
+
+/**
+ * Generate the DOS part of the external file attributes.
+ * @param {Object} dosPermissions the dos permissions or null.
+ * @param {Boolean} isDir true if the entry is a directory, false otherwise.
+ * @return {Number} a 32 bit integer.
+ *
+ * Bit 0     Read-Only
+ * Bit 1     Hidden
+ * Bit 2     System
+ * Bit 3     Volume Label
+ * Bit 4     Directory
+ * Bit 5     Archive
+ */
+var generateDosExternalFileAttr = function (dosPermissions, isDir) {
+
+    // the dir flag is already set for compatibility
+    return (dosPermissions || 0)  & 0x3F;
+};
+
+/**
+ * Generate the various parts used in the construction of the final zip file.
+ * @param {Object} streamInfo the hash with information about the compressed file.
+ * @param {Boolean} streamedContent is the content streamed ?
+ * @param {Boolean} streamingEnded is the stream finished ?
+ * @param {number} offset the current offset from the start of the zip file.
+ * @param {String} platform let's pretend we are this platform (change platform dependents fields)
+ * @param {Function} encodeFileName the function to encode the file name / comment.
+ * @return {Object} the zip parts.
+ */
+var generateZipParts = function(streamInfo, streamedContent, streamingEnded, offset, platform, encodeFileName) {
+    var file = streamInfo['file'],
+    compression = streamInfo['compression'],
+    useCustomEncoding = encodeFileName !== utf8.utf8encode,
+    encodedFileName = utils.transformTo("string", encodeFileName(file.name)),
+    utfEncodedFileName = utils.transformTo("string", utf8.utf8encode(file.name)),
+    comment = file.comment,
+    encodedComment = utils.transformTo("string", encodeFileName(comment)),
+    utfEncodedComment = utils.transformTo("string", utf8.utf8encode(comment)),
+    useUTF8ForFileName = utfEncodedFileName.length !== file.name.length,
+    useUTF8ForComment = utfEncodedComment.length !== comment.length,
+    dosTime,
+    dosDate,
+    extraFields = "",
+    unicodePathExtraField = "",
+    unicodeCommentExtraField = "",
+    dir = file.dir,
+    date = file.date;
+
+
+    var dataInfo = {
+        crc32 : 0,
+        compressedSize : 0,
+        uncompressedSize : 0
+    };
+
+    // if the content is streamed, the sizes/crc32 are only available AFTER
+    // the end of the stream.
+    if (!streamedContent || streamingEnded) {
+        dataInfo.crc32 = streamInfo['crc32'];
+        dataInfo.compressedSize = streamInfo['compressedSize'];
+        dataInfo.uncompressedSize = streamInfo['uncompressedSize'];
+    }
+
+    var bitflag = 0;
+    if (streamedContent) {
+        // Bit 3: the sizes/crc32 are set to zero in the local header.
+        // The correct values are put in the data descriptor immediately
+        // following the compressed data.
+        bitflag |= 0x0008;
+    }
+    if (!useCustomEncoding && (useUTF8ForFileName || useUTF8ForComment)) {
+        // Bit 11: Language encoding flag (EFS).
+        bitflag |= 0x0800;
+    }
+
+
+    var extFileAttr = 0;
+    var versionMadeBy = 0;
+    if (dir) {
+        // dos or unix, we set the dos dir flag
+        extFileAttr |= 0x00010;
+    }
+    if(platform === "UNIX") {
+        versionMadeBy = 0x031E; // UNIX, version 3.0
+        extFileAttr |= generateUnixExternalFileAttr(file.unixPermissions, dir);
+    } else { // DOS or other, fallback to DOS
+        versionMadeBy = 0x0014; // DOS, version 2.0
+        extFileAttr |= generateDosExternalFileAttr(file.dosPermissions, dir);
+    }
+
+    // date
+    // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html
+    // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html
+    // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html
+
+    dosTime = date.getUTCHours();
+    dosTime = dosTime << 6;
+    dosTime = dosTime | date.getUTCMinutes();
+    dosTime = dosTime << 5;
+    dosTime = dosTime | date.getUTCSeconds() / 2;
+
+    dosDate = date.getUTCFullYear() - 1980;
+    dosDate = dosDate << 4;
+    dosDate = dosDate | (date.getUTCMonth() + 1);
+    dosDate = dosDate << 5;
+    dosDate = dosDate | date.getUTCDate();
+
+    if (useUTF8ForFileName) {
+        // set the unicode path extra field. unzip needs at least one extra
+        // field to correctly handle unicode path, so using the path is as good
+        // as any other information. This could improve the situation with
+        // other archive managers too.
+        // This field is usually used without the utf8 flag, with a non
+        // unicode path in the header (winrar, winzip). This helps (a bit)
+        // with the messy Windows' default compressed folders feature but
+        // breaks on p7zip which doesn't seek the unicode path extra field.
+        // So for now, UTF-8 everywhere !
+        unicodePathExtraField =
+            // Version
+            decToHex(1, 1) +
+            // NameCRC32
+            decToHex(crc32(encodedFileName), 4) +
+            // UnicodeName
+            utfEncodedFileName;
+
+        extraFields +=
+            // Info-ZIP Unicode Path Extra Field
+            "\x75\x70" +
+            // size
+            decToHex(unicodePathExtraField.length, 2) +
+            // content
+            unicodePathExtraField;
+    }
+
+    if(useUTF8ForComment) {
+
+        unicodeCommentExtraField =
+            // Version
+            decToHex(1, 1) +
+            // CommentCRC32
+            decToHex(crc32(encodedComment), 4) +
+            // UnicodeName
+            utfEncodedComment;
+
+        extraFields +=
+            // Info-ZIP Unicode Path Extra Field
+            "\x75\x63" +
+            // size
+            decToHex(unicodeCommentExtraField.length, 2) +
+            // content
+            unicodeCommentExtraField;
+    }
+
+    var header = "";
+
+    // version needed to extract
+    header += "\x0A\x00";
+    // general purpose bit flag
+    header += decToHex(bitflag, 2);
+    // compression method
+    header += compression.magic;
+    // last mod file time
+    header += decToHex(dosTime, 2);
+    // last mod file date
+    header += decToHex(dosDate, 2);
+    // crc-32
+    header += decToHex(dataInfo.crc32, 4);
+    // compressed size
+    header += decToHex(dataInfo.compressedSize, 4);
+    // uncompressed size
+    header += decToHex(dataInfo.uncompressedSize, 4);
+    // file name length
+    header += decToHex(encodedFileName.length, 2);
+    // extra field length
+    header += decToHex(extraFields.length, 2);
+
+
+    var fileRecord = signature.LOCAL_FILE_HEADER + header + encodedFileName + extraFields;
+
+    var dirRecord = signature.CENTRAL_FILE_HEADER +
+        // version made by (00: DOS)
+        decToHex(versionMadeBy, 2) +
+        // file header (common to file and central directory)
+        header +
+        // file comment length
+        decToHex(encodedComment.length, 2) +
+        // disk number start
+        "\x00\x00" +
+        // internal file attributes TODO
+        "\x00\x00" +
+        // external file attributes
+        decToHex(extFileAttr, 4) +
+        // relative offset of local header
+        decToHex(offset, 4) +
+        // file name
+        encodedFileName +
+        // extra field
+        extraFields +
+        // file comment
+        encodedComment;
+
+    return {
+        fileRecord: fileRecord,
+        dirRecord: dirRecord
+    };
+};
+
+/**
+ * Generate the EOCD record.
+ * @param {Number} entriesCount the number of entries in the zip file.
+ * @param {Number} centralDirLength the length (in bytes) of the central dir.
+ * @param {Number} localDirLength the length (in bytes) of the local dir.
+ * @param {String} comment the zip file comment as a binary string.
+ * @param {Function} encodeFileName the function to encode the comment.
+ * @return {String} the EOCD record.
+ */
+var generateCentralDirectoryEnd = function (entriesCount, centralDirLength, localDirLength, comment, encodeFileName) {
+    var dirEnd = "";
+    var encodedComment = utils.transformTo("string", encodeFileName(comment));
+
+    // end of central dir signature
+    dirEnd = signature.CENTRAL_DIRECTORY_END +
+        // number of this disk
+        "\x00\x00" +
+        // number of the disk with the start of the central directory
+        "\x00\x00" +
+        // total number of entries in the central directory on this disk
+        decToHex(entriesCount, 2) +
+        // total number of entries in the central directory
+        decToHex(entriesCount, 2) +
+        // size of the central directory   4 bytes
+        decToHex(centralDirLength, 4) +
+        // offset of start of central directory with respect to the starting disk number
+        decToHex(localDirLength, 4) +
+        // .ZIP file comment length
+        decToHex(encodedComment.length, 2) +
+        // .ZIP file comment
+        encodedComment;
+
+    return dirEnd;
+};
+
+/**
+ * Generate data descriptors for a file entry.
+ * @param {Object} streamInfo the hash generated by a worker, containing information
+ * on the file entry.
+ * @return {String} the data descriptors.
+ */
+var generateDataDescriptors = function (streamInfo) {
+    var descriptor = "";
+    descriptor = signature.DATA_DESCRIPTOR +
+        // crc-32                          4 bytes
+        decToHex(streamInfo['crc32'], 4) +
+        // compressed size                 4 bytes
+        decToHex(streamInfo['compressedSize'], 4) +
+        // uncompressed size               4 bytes
+        decToHex(streamInfo['uncompressedSize'], 4);
+
+    return descriptor;
+};
+
+
+/**
+ * A worker to concatenate other workers to create a zip file.
+ * @param {Boolean} streamFiles `true` to stream the content of the files,
+ * `false` to accumulate it.
+ * @param {String} comment the comment to use.
+ * @param {String} platform the platform to use, "UNIX" or "DOS".
+ * @param {Function} encodeFileName the function to encode file names and comments.
+ */
+function ZipFileWorker(streamFiles, comment, platform, encodeFileName) {
+    GenericWorker.call(this, "ZipFileWorker");
+    // The number of bytes written so far. This doesn't count accumulated chunks.
+    this.bytesWritten = 0;
+    // The comment of the zip file
+    this.zipComment = comment;
+    // The platform "generating" the zip file.
+    this.zipPlatform = platform;
+    // the function to encode file names and comments.
+    this.encodeFileName = encodeFileName;
+    // Should we stream the content of the files ?
+    this.streamFiles = streamFiles;
+    // If `streamFiles` is false, we will need to accumulate the content of the
+    // files to calculate sizes / crc32 (and write them *before* the content).
+    // This boolean indicates if we are accumulating chunks (it will change a lot
+    // during the lifetime of this worker).
+    this.accumulate = false;
+    // The buffer receiving chunks when accumulating content.
+    this.contentBuffer = [];
+    // The list of generated directory records.
+    this.dirRecords = [];
+    // The offset (in bytes) from the beginning of the zip file for the current source.
+    this.currentSourceOffset = 0;
+    // The total number of entries in this zip file.
+    this.entriesCount = 0;
+    // the name of the file currently being added, null when handling the end of the zip file.
+    // Used for the emitted metadata.
+    this.currentFile = null;
+
+
+
+    this._sources = [];
+}
+utils.inherits(ZipFileWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.push
+ */
+ZipFileWorker.prototype.push = function (chunk) {
+
+    var currentFilePercent = chunk.meta.percent || 0;
+    var entriesCount = this.entriesCount;
+    var remainingFiles = this._sources.length;
+
+    if(this.accumulate) {
+        this.contentBuffer.push(chunk);
+    } else {
+        this.bytesWritten += chunk.data.length;
+
+        GenericWorker.prototype.push.call(this, {
+            data : chunk.data,
+            meta : {
+                currentFile : this.currentFile,
+                percent : entriesCount ? (currentFilePercent + 100 * (entriesCount - remainingFiles - 1)) / entriesCount : 100
+            }
+        });
+    }
+};
+
+/**
+ * The worker started a new source (an other worker).
+ * @param {Object} streamInfo the streamInfo object from the new source.
+ */
+ZipFileWorker.prototype.openedSource = function (streamInfo) {
+    this.currentSourceOffset = this.bytesWritten;
+    this.currentFile = streamInfo['file'].name;
+
+    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
+
+    // don't stream folders (because they don't have any content)
+    if(streamedContent) {
+        var record = generateZipParts(streamInfo, streamedContent, false, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
+        this.push({
+            data : record.fileRecord,
+            meta : {percent:0}
+        });
+    } else {
+        // we need to wait for the whole file before pushing anything
+        this.accumulate = true;
+    }
+};
+
+/**
+ * The worker finished a source (an other worker).
+ * @param {Object} streamInfo the streamInfo object from the finished source.
+ */
+ZipFileWorker.prototype.closedSource = function (streamInfo) {
+    this.accumulate = false;
+    var streamedContent = this.streamFiles && !streamInfo['file'].dir;
+    var record = generateZipParts(streamInfo, streamedContent, true, this.currentSourceOffset, this.zipPlatform, this.encodeFileName);
+
+    this.dirRecords.push(record.dirRecord);
+    if(streamedContent) {
+        // after the streamed file, we put data descriptors
+        this.push({
+            data : generateDataDescriptors(streamInfo),
+            meta : {percent:100}
+        });
+    } else {
+        // the content wasn't streamed, we need to push everything now
+        // first the file record, then the content
+        this.push({
+            data : record.fileRecord,
+            meta : {percent:0}
+        });
+        while(this.contentBuffer.length) {
+            this.push(this.contentBuffer.shift());
+        }
+    }
+    this.currentFile = null;
+};
+
+/**
+ * @see GenericWorker.flush
+ */
+ZipFileWorker.prototype.flush = function () {
+
+    var localDirLength = this.bytesWritten;
+    for(var i = 0; i < this.dirRecords.length; i++) {
+        this.push({
+            data : this.dirRecords[i],
+            meta : {percent:100}
+        });
+    }
+    var centralDirLength = this.bytesWritten - localDirLength;
+
+    var dirEnd = generateCentralDirectoryEnd(this.dirRecords.length, centralDirLength, localDirLength, this.zipComment, this.encodeFileName);
+
+    this.push({
+        data : dirEnd,
+        meta : {percent:100}
+    });
+};
+
+/**
+ * Prepare the next source to be read.
+ */
+ZipFileWorker.prototype.prepareNextSource = function () {
+    this.previous = this._sources.shift();
+    this.openedSource(this.previous.streamInfo);
+    if (this.isPaused) {
+        this.previous.pause();
+    } else {
+        this.previous.resume();
+    }
+};
+
+/**
+ * @see GenericWorker.registerPrevious
+ */
+ZipFileWorker.prototype.registerPrevious = function (previous) {
+    this._sources.push(previous);
+    var self = this;
+
+    previous.on('data', function (chunk) {
+        self.processChunk(chunk);
+    });
+    previous.on('end', function () {
+        self.closedSource(self.previous.streamInfo);
+        if(self._sources.length) {
+            self.prepareNextSource();
+        } else {
+            self.end();
+        }
+    });
+    previous.on('error', function (e) {
+        self.error(e);
+    });
+    return this;
+};
+
+/**
+ * @see GenericWorker.resume
+ */
+ZipFileWorker.prototype.resume = function () {
+    if(!GenericWorker.prototype.resume.call(this)) {
+        return false;
+    }
+
+    if (!this.previous && this._sources.length) {
+        this.prepareNextSource();
+        return true;
+    }
+    if (!this.previous && !this._sources.length && !this.generatedError) {
+        this.end();
+        return true;
+    }
+};
+
+/**
+ * @see GenericWorker.error
+ */
+ZipFileWorker.prototype.error = function (e) {
+    var sources = this._sources;
+    if(!GenericWorker.prototype.error.call(this, e)) {
+        return false;
+    }
+    for(var i = 0; i < sources.length; i++) {
+        try {
+            sources[i].error(e);
+        } catch(e) {
+            // the `error` exploded, nothing to do
+        }
+    }
+    return true;
+};
+
+/**
+ * @see GenericWorker.lock
+ */
+ZipFileWorker.prototype.lock = function () {
+    GenericWorker.prototype.lock.call(this);
+    var sources = this._sources;
+    for(var i = 0; i < sources.length; i++) {
+        sources[i].lock();
+    }
+};
+
+module.exports = ZipFileWorker;
+
+},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(require,module,exports){
+'use strict';
+
+var compressions = require('../compressions');
+var ZipFileWorker = require('./ZipFileWorker');
+
+/**
+ * Find the compression to use.
+ * @param {String} fileCompression the compression defined at the file level, if any.
+ * @param {String} zipCompression the compression defined at the load() level.
+ * @return {Object} the compression object to use.
+ */
+var getCompression = function (fileCompression, zipCompression) {
+
+    var compressionName = fileCompression || zipCompression;
+    var compression = compressions[compressionName];
+    if (!compression) {
+        throw new Error(compressionName + " is not a valid compression method !");
+    }
+    return compression;
+};
+
+/**
+ * Create a worker to generate a zip file.
+ * @param {JSZip} zip the JSZip instance at the right root level.
+ * @param {Object} options to generate the zip file.
+ * @param {String} comment the comment to use.
+ */
+exports.generateWorker = function (zip, options, comment) {
+
+    var zipFileWorker = new ZipFileWorker(options.streamFiles, comment, options.platform, options.encodeFileName);
+    var entriesCount = 0;
+    try {
+
+        zip.forEach(function (relativePath, file) {
+            entriesCount++;
+            var compression = getCompression(file.options.compression, options.compression);
+            var compressionOptions = file.options.compressionOptions || options.compressionOptions || {};
+            var dir = file.dir, date = file.date;
+
+            file._compressWorker(compression, compressionOptions)
+            .withStreamInfo("file", {
+                name : relativePath,
+                dir : dir,
+                date : date,
+                comment : file.comment || "",
+                unixPermissions : file.unixPermissions,
+                dosPermissions : file.dosPermissions
+            })
+            .pipe(zipFileWorker);
+        });
+        zipFileWorker.entriesCount = entriesCount;
+    } catch (e) {
+        zipFileWorker.error(e);
+    }
+
+    return zipFileWorker;
+};
+
+},{"../compressions":3,"./ZipFileWorker":8}],10:[function(require,module,exports){
+'use strict';
+
+/**
+ * Representation a of zip file in js
+ * @constructor
+ */
+function JSZip() {
+    // if this constructor is used without `new`, it adds `new` before itself:
+    if(!(this instanceof JSZip)) {
+        return new JSZip();
+    }
+
+    if(arguments.length) {
+        throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");
+    }
+
+    // object containing the files :
+    // {
+    //   "folder/" : {...},
+    //   "folder/data.txt" : {...}
+    // }
+    // NOTE: we use a null prototype because we do not
+    // want filenames like "toString" coming from a zip file
+    // to overwrite methods and attributes in a normal Object.
+    this.files = Object.create(null);
+
+    this.comment = null;
+
+    // Where we are in the hierarchy
+    this.root = "";
+    this.clone = function() {
+        var newObj = new JSZip();
+        for (var i in this) {
+            if (typeof this[i] !== "function") {
+                newObj[i] = this[i];
+            }
+        }
+        return newObj;
+    };
+}
+JSZip.prototype = require('./object');
+JSZip.prototype.loadAsync = require('./load');
+JSZip.support = require('./support');
+JSZip.defaults = require('./defaults');
+
+// TODO find a better way to handle this version,
+// a require('package.json').version doesn't work with webpack, see #327
+JSZip.version = "3.7.1";
+
+JSZip.loadAsync = function (content, options) {
+    return new JSZip().loadAsync(content, options);
+};
+
+JSZip.external = require("./external");
+module.exports = JSZip;
+
+},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(require,module,exports){
+'use strict';
+var utils = require('./utils');
+var external = require("./external");
+var utf8 = require('./utf8');
+var ZipEntries = require('./zipEntries');
+var Crc32Probe = require('./stream/Crc32Probe');
+var nodejsUtils = require("./nodejsUtils");
+
+/**
+ * Check the CRC32 of an entry.
+ * @param {ZipEntry} zipEntry the zip entry to check.
+ * @return {Promise} the result.
+ */
+function checkEntryCRC32(zipEntry) {
+    return new external.Promise(function (resolve, reject) {
+        var worker = zipEntry.decompressed.getContentWorker().pipe(new Crc32Probe());
+        worker.on("error", function (e) {
+            reject(e);
+        })
+            .on("end", function () {
+                if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
+                    reject(new Error("Corrupted zip : CRC32 mismatch"));
+                } else {
+                    resolve();
+                }
+            })
+            .resume();
+    });
+}
+
+module.exports = function (data, options) {
+    var zip = this;
+    options = utils.extend(options || {}, {
+        base64: false,
+        checkCRC32: false,
+        optimizedBinaryString: false,
+        createFolders: false,
+        decodeFileName: utf8.utf8decode
+    });
+
+    if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
+        return external.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file."));
+    }
+
+    return utils.prepareContent("the loaded zip file", data, true, options.optimizedBinaryString, options.base64)
+        .then(function (data) {
+            var zipEntries = new ZipEntries(options);
+            zipEntries.load(data);
+            return zipEntries;
+        }).then(function checkCRC32(zipEntries) {
+            var promises = [external.Promise.resolve(zipEntries)];
+            var files = zipEntries.files;
+            if (options.checkCRC32) {
+                for (var i = 0; i < files.length; i++) {
+                    promises.push(checkEntryCRC32(files[i]));
+                }
+            }
+            return external.Promise.all(promises);
+        }).then(function addFiles(results) {
+            var zipEntries = results.shift();
+            var files = zipEntries.files;
+            for (var i = 0; i < files.length; i++) {
+                var input = files[i];
+                zip.file(input.fileNameStr, input.decompressed, {
+                    binary: true,
+                    optimizedBinaryString: true,
+                    date: input.date,
+                    dir: input.dir,
+                    comment: input.fileCommentStr.length ? input.fileCommentStr : null,
+                    unixPermissions: input.unixPermissions,
+                    dosPermissions: input.dosPermissions,
+                    createFolders: options.createFolders
+                });
+            }
+            if (zipEntries.zipComment.length) {
+                zip.comment = zipEntries.zipComment;
+            }
+
+            return zip;
+        });
+};
+
+},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){
+"use strict";
+
+var utils = require('../utils');
+var GenericWorker = require('../stream/GenericWorker');
+
+/**
+ * A worker that use a nodejs stream as source.
+ * @constructor
+ * @param {String} filename the name of the file entry for this stream.
+ * @param {Readable} stream the nodejs stream.
+ */
+function NodejsStreamInputAdapter(filename, stream) {
+    GenericWorker.call(this, "Nodejs stream input adapter for " + filename);
+    this._upstreamEnded = false;
+    this._bindStream(stream);
+}
+
+utils.inherits(NodejsStreamInputAdapter, GenericWorker);
+
+/**
+ * Prepare the stream and bind the callbacks on it.
+ * Do this ASAP on node 0.10 ! A lazy binding doesn't always work.
+ * @param {Stream} stream the nodejs stream to use.
+ */
+NodejsStreamInputAdapter.prototype._bindStream = function (stream) {
+    var self = this;
+    this._stream = stream;
+    stream.pause();
+    stream
+    .on("data", function (chunk) {
+        self.push({
+            data: chunk,
+            meta : {
+                percent : 0
+            }
+        });
+    })
+    .on("error", function (e) {
+        if(self.isPaused) {
+            this.generatedError = e;
+        } else {
+            self.error(e);
+        }
+    })
+    .on("end", function () {
+        if(self.isPaused) {
+            self._upstreamEnded = true;
+        } else {
+            self.end();
+        }
+    });
+};
+NodejsStreamInputAdapter.prototype.pause = function () {
+    if(!GenericWorker.prototype.pause.call(this)) {
+        return false;
+    }
+    this._stream.pause();
+    return true;
+};
+NodejsStreamInputAdapter.prototype.resume = function () {
+    if(!GenericWorker.prototype.resume.call(this)) {
+        return false;
+    }
+
+    if(this._upstreamEnded) {
+        this.end();
+    } else {
+        this._stream.resume();
+    }
+
+    return true;
+};
+
+module.exports = NodejsStreamInputAdapter;
+
+},{"../stream/GenericWorker":28,"../utils":32}],13:[function(require,module,exports){
+'use strict';
+
+var Readable = require('readable-stream').Readable;
+
+var utils = require('../utils');
+utils.inherits(NodejsStreamOutputAdapter, Readable);
+
+/**
+* A nodejs stream using a worker as source.
+* @see the SourceWrapper in http://nodejs.org/api/stream.html
+* @constructor
+* @param {StreamHelper} helper the helper wrapping the worker
+* @param {Object} options the nodejs stream options
+* @param {Function} updateCb the update callback.
+*/
+function NodejsStreamOutputAdapter(helper, options, updateCb) {
+    Readable.call(this, options);
+    this._helper = helper;
+
+    var self = this;
+    helper.on("data", function (data, meta) {
+        if (!self.push(data)) {
+            self._helper.pause();
+        }
+        if(updateCb) {
+            updateCb(meta);
+        }
+    })
+    .on("error", function(e) {
+        self.emit('error', e);
+    })
+    .on("end", function () {
+        self.push(null);
+    });
+}
+
+
+NodejsStreamOutputAdapter.prototype._read = function() {
+    this._helper.resume();
+};
+
+module.exports = NodejsStreamOutputAdapter;
+
+},{"../utils":32,"readable-stream":16}],14:[function(require,module,exports){
+'use strict';
+
+module.exports = {
+    /**
+     * True if this is running in Nodejs, will be undefined in a browser.
+     * In a browser, browserify won't include this file and the whole module
+     * will be resolved an empty object.
+     */
+    isNode : typeof Buffer !== "undefined",
+    /**
+     * Create a new nodejs Buffer from an existing content.
+     * @param {Object} data the data to pass to the constructor.
+     * @param {String} encoding the encoding to use.
+     * @return {Buffer} a new Buffer.
+     */
+    newBufferFrom: function(data, encoding) {
+        if (Buffer.from && Buffer.from !== Uint8Array.from) {
+            return Buffer.from(data, encoding);
+        } else {
+            if (typeof data === "number") {
+                // Safeguard for old Node.js versions. On newer versions,
+                // Buffer.from(number) / Buffer(number, encoding) already throw.
+                throw new Error("The \"data\" argument must not be a number");
+            }
+            return new Buffer(data, encoding);
+        }
+    },
+    /**
+     * Create a new nodejs Buffer with the specified size.
+     * @param {Integer} size the size of the buffer.
+     * @return {Buffer} a new Buffer.
+     */
+    allocBuffer: function (size) {
+        if (Buffer.alloc) {
+            return Buffer.alloc(size);
+        } else {
+            var buf = new Buffer(size);
+            buf.fill(0);
+            return buf;
+        }
+    },
+    /**
+     * Find out if an object is a Buffer.
+     * @param {Object} b the object to test.
+     * @return {Boolean} true if the object is a Buffer, false otherwise.
+     */
+    isBuffer : function(b){
+        return Buffer.isBuffer(b);
+    },
+
+    isStream : function (obj) {
+        return obj &&
+            typeof obj.on === "function" &&
+            typeof obj.pause === "function" &&
+            typeof obj.resume === "function";
+    }
+};
+
+},{}],15:[function(require,module,exports){
+'use strict';
+var utf8 = require('./utf8');
+var utils = require('./utils');
+var GenericWorker = require('./stream/GenericWorker');
+var StreamHelper = require('./stream/StreamHelper');
+var defaults = require('./defaults');
+var CompressedObject = require('./compressedObject');
+var ZipObject = require('./zipObject');
+var generate = require("./generate");
+var nodejsUtils = require("./nodejsUtils");
+var NodejsStreamInputAdapter = require("./nodejs/NodejsStreamInputAdapter");
+
+
+/**
+ * Add a file in the current folder.
+ * @private
+ * @param {string} name the name of the file
+ * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file
+ * @param {Object} originalOptions the options of the file
+ * @return {Object} the new file.
+ */
+var fileAdd = function(name, data, originalOptions) {
+    // be sure sub folders exist
+    var dataType = utils.getTypeOf(data),
+        parent;
+
+
+    /*
+     * Correct options.
+     */
+
+    var o = utils.extend(originalOptions || {}, defaults);
+    o.date = o.date || new Date();
+    if (o.compression !== null) {
+        o.compression = o.compression.toUpperCase();
+    }
+
+    if (typeof o.unixPermissions === "string") {
+        o.unixPermissions = parseInt(o.unixPermissions, 8);
+    }
+
+    // UNX_IFDIR  0040000 see zipinfo.c
+    if (o.unixPermissions && (o.unixPermissions & 0x4000)) {
+        o.dir = true;
+    }
+    // Bit 4    Directory
+    if (o.dosPermissions && (o.dosPermissions & 0x0010)) {
+        o.dir = true;
+    }
+
+    if (o.dir) {
+        name = forceTrailingSlash(name);
+    }
+    if (o.createFolders && (parent = parentFolder(name))) {
+        folderAdd.call(this, parent, true);
+    }
+
+    var isUnicodeString = dataType === "string" && o.binary === false && o.base64 === false;
+    if (!originalOptions || typeof originalOptions.binary === "undefined") {
+        o.binary = !isUnicodeString;
+    }
+
+
+    var isCompressedEmpty = (data instanceof CompressedObject) && data.uncompressedSize === 0;
+
+    if (isCompressedEmpty || o.dir || !data || data.length === 0) {
+        o.base64 = false;
+        o.binary = true;
+        data = "";
+        o.compression = "STORE";
+        dataType = "string";
+    }
+
+    /*
+     * Convert content to fit.
+     */
+
+    var zipObjectContent = null;
+    if (data instanceof CompressedObject || data instanceof GenericWorker) {
+        zipObjectContent = data;
+    } else if (nodejsUtils.isNode && nodejsUtils.isStream(data)) {
+        zipObjectContent = new NodejsStreamInputAdapter(name, data);
+    } else {
+        zipObjectContent = utils.prepareContent(name, data, o.binary, o.optimizedBinaryString, o.base64);
+    }
+
+    var object = new ZipObject(name, zipObjectContent, o);
+    this.files[name] = object;
+    /*
+    TODO: we can't throw an exception because we have async promises
+    (we can have a promise of a Date() for example) but returning a
+    promise is useless because file(name, data) returns the JSZip
+    object for chaining. Should we break that to allow the user
+    to catch the error ?
+
+    return external.Promise.resolve(zipObjectContent)
+    .then(function () {
+        return object;
+    });
+    */
+};
+
+/**
+ * Find the parent folder of the path.
+ * @private
+ * @param {string} path the path to use
+ * @return {string} the parent folder, or ""
+ */
+var parentFolder = function (path) {
+    if (path.slice(-1) === '/') {
+        path = path.substring(0, path.length - 1);
+    }
+    var lastSlash = path.lastIndexOf('/');
+    return (lastSlash > 0) ? path.substring(0, lastSlash) : "";
+};
+
+/**
+ * Returns the path with a slash at the end.
+ * @private
+ * @param {String} path the path to check.
+ * @return {String} the path with a trailing slash.
+ */
+var forceTrailingSlash = function(path) {
+    // Check the name ends with a /
+    if (path.slice(-1) !== "/") {
+        path += "/"; // IE doesn't like substr(-1)
+    }
+    return path;
+};
+
+/**
+ * Add a (sub) folder in the current folder.
+ * @private
+ * @param {string} name the folder's name
+ * @param {boolean=} [createFolders] If true, automatically create sub
+ *  folders. Defaults to false.
+ * @return {Object} the new folder.
+ */
+var folderAdd = function(name, createFolders) {
+    createFolders = (typeof createFolders !== 'undefined') ? createFolders : defaults.createFolders;
+
+    name = forceTrailingSlash(name);
+
+    // Does this folder already exist?
+    if (!this.files[name]) {
+        fileAdd.call(this, name, null, {
+            dir: true,
+            createFolders: createFolders
+        });
+    }
+    return this.files[name];
+};
+
+/**
+* Cross-window, cross-Node-context regular expression detection
+* @param  {Object}  object Anything
+* @return {Boolean}        true if the object is a regular expression,
+* false otherwise
+*/
+function isRegExp(object) {
+    return Object.prototype.toString.call(object) === "[object RegExp]";
+}
+
+// return the actual prototype of JSZip
+var out = {
+    /**
+     * @see loadAsync
+     */
+    load: function() {
+        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
+    },
+
+
+    /**
+     * Call a callback function for each entry at this folder level.
+     * @param {Function} cb the callback function:
+     * function (relativePath, file) {...}
+     * It takes 2 arguments : the relative path and the file.
+     */
+    forEach: function(cb) {
+        var filename, relativePath, file;
+        /* jshint ignore:start */
+        // ignore warning about unwanted properties because this.files is a null prototype object
+        for (filename in this.files) {
+            file = this.files[filename];
+            relativePath = filename.slice(this.root.length, filename.length);
+            if (relativePath && filename.slice(0, this.root.length) === this.root) { // the file is in the current root
+                cb(relativePath, file); // TODO reverse the parameters ? need to be clean AND consistent with the filter search fn...
+            }
+        }
+        /* jshint ignore:end */
+    },
+
+    /**
+     * Filter nested files/folders with the specified function.
+     * @param {Function} search the predicate to use :
+     * function (relativePath, file) {...}
+     * It takes 2 arguments : the relative path and the file.
+     * @return {Array} An array of matching elements.
+     */
+    filter: function(search) {
+        var result = [];
+        this.forEach(function (relativePath, entry) {
+            if (search(relativePath, entry)) { // the file matches the function
+                result.push(entry);
+            }
+
+        });
+        return result;
+    },
+
+    /**
+     * Add a file to the zip file, or search a file.
+     * @param   {string|RegExp} name The name of the file to add (if data is defined),
+     * the name of the file to find (if no data) or a regex to match files.
+     * @param   {String|ArrayBuffer|Uint8Array|Buffer} data  The file data, either raw or base64 encoded
+     * @param   {Object} o     File options
+     * @return  {JSZip|Object|Array} this JSZip object (when adding a file),
+     * a file (when searching by string) or an array of files (when searching by regex).
+     */
+    file: function(name, data, o) {
+        if (arguments.length === 1) {
+            if (isRegExp(name)) {
+                var regexp = name;
+                return this.filter(function(relativePath, file) {
+                    return !file.dir && regexp.test(relativePath);
+                });
+            }
+            else { // text
+                var obj = this.files[this.root + name];
+                if (obj && !obj.dir) {
+                    return obj;
+                } else {
+                    return null;
+                }
+            }
+        }
+        else { // more than one argument : we have data !
+            name = this.root + name;
+            fileAdd.call(this, name, data, o);
+        }
+        return this;
+    },
+
+    /**
+     * Add a directory to the zip file, or search.
+     * @param   {String|RegExp} arg The name of the directory to add, or a regex to search folders.
+     * @return  {JSZip} an object with the new directory as the root, or an array containing matching folders.
+     */
+    folder: function(arg) {
+        if (!arg) {
+            return this;
+        }
+
+        if (isRegExp(arg)) {
+            return this.filter(function(relativePath, file) {
+                return file.dir && arg.test(relativePath);
+            });
+        }
+
+        // else, name is a new folder
+        var name = this.root + arg;
+        var newFolder = folderAdd.call(this, name);
+
+        // Allow chaining by returning a new object with this folder as the root
+        var ret = this.clone();
+        ret.root = newFolder.name;
+        return ret;
+    },
+
+    /**
+     * Delete a file, or a directory and all sub-files, from the zip
+     * @param {string} name the name of the file to delete
+     * @return {JSZip} this JSZip object
+     */
+    remove: function(name) {
+        name = this.root + name;
+        var file = this.files[name];
+        if (!file) {
+            // Look for any folders
+            if (name.slice(-1) !== "/") {
+                name += "/";
+            }
+            file = this.files[name];
+        }
+
+        if (file && !file.dir) {
+            // file
+            delete this.files[name];
+        } else {
+            // maybe a folder, delete recursively
+            var kids = this.filter(function(relativePath, file) {
+                return file.name.slice(0, name.length) === name;
+            });
+            for (var i = 0; i < kids.length; i++) {
+                delete this.files[kids[i].name];
+            }
+        }
+
+        return this;
+    },
+
+    /**
+     * Generate the complete zip file
+     * @param {Object} options the options to generate the zip file :
+     * - compression, "STORE" by default.
+     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
+     * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file
+     */
+    generate: function(options) {
+        throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
+    },
+
+    /**
+     * Generate the complete zip file as an internal stream.
+     * @param {Object} options the options to generate the zip file :
+     * - compression, "STORE" by default.
+     * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
+     * @return {StreamHelper} the streamed zip file.
+     */
+    generateInternalStream: function(options) {
+      var worker, opts = {};
+      try {
+          opts = utils.extend(options || {}, {
+              streamFiles: false,
+              compression: "STORE",
+              compressionOptions : null,
+              type: "",
+              platform: "DOS",
+              comment: null,
+              mimeType: 'application/zip',
+              encodeFileName: utf8.utf8encode
+          });
+
+          opts.type = opts.type.toLowerCase();
+          opts.compression = opts.compression.toUpperCase();
+
+          // "binarystring" is preferred but the internals use "string".
+          if(opts.type === "binarystring") {
+            opts.type = "string";
+          }
+
+          if (!opts.type) {
+            throw new Error("No output type specified.");
+          }
+
+          utils.checkSupport(opts.type);
+
+          // accept nodejs `process.platform`
+          if(
+              opts.platform === 'darwin' ||
+              opts.platform === 'freebsd' ||
+              opts.platform === 'linux' ||
+              opts.platform === 'sunos'
+          ) {
+              opts.platform = "UNIX";
+          }
+          if (opts.platform === 'win32') {
+              opts.platform = "DOS";
+          }
+
+          var comment = opts.comment || this.comment || "";
+          worker = generate.generateWorker(this, opts, comment);
+      } catch (e) {
+        worker = new GenericWorker("error");
+        worker.error(e);
+      }
+      return new StreamHelper(worker, opts.type || "string", opts.mimeType);
+    },
+    /**
+     * Generate the complete zip file asynchronously.
+     * @see generateInternalStream
+     */
+    generateAsync: function(options, onUpdate) {
+        return this.generateInternalStream(options).accumulate(onUpdate);
+    },
+    /**
+     * Generate the complete zip file asynchronously.
+     * @see generateInternalStream
+     */
+    generateNodeStream: function(options, onUpdate) {
+        options = options || {};
+        if (!options.type) {
+            options.type = "nodebuffer";
+        }
+        return this.generateInternalStream(options).toNodejsStream(onUpdate);
+    }
+};
+module.exports = out;
+
+},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(require,module,exports){
+/*
+ * This file is used by module bundlers (browserify/webpack/etc) when
+ * including a stream implementation. We use "readable-stream" to get a
+ * consistent behavior between nodejs versions but bundlers often have a shim
+ * for "stream". Using this shim greatly improve the compatibility and greatly
+ * reduce the final size of the bundle (only one stream implementation, not
+ * two).
+ */
+module.exports = require("stream");
+
+},{"stream":undefined}],17:[function(require,module,exports){
+'use strict';
+var DataReader = require('./DataReader');
+var utils = require('../utils');
+
+function ArrayReader(data) {
+    DataReader.call(this, data);
+	for(var i = 0; i < this.data.length; i++) {
+		data[i] = data[i] & 0xFF;
+	}
+}
+utils.inherits(ArrayReader, DataReader);
+/**
+ * @see DataReader.byteAt
+ */
+ArrayReader.prototype.byteAt = function(i) {
+    return this.data[this.zero + i];
+};
+/**
+ * @see DataReader.lastIndexOfSignature
+ */
+ArrayReader.prototype.lastIndexOfSignature = function(sig) {
+    var sig0 = sig.charCodeAt(0),
+        sig1 = sig.charCodeAt(1),
+        sig2 = sig.charCodeAt(2),
+        sig3 = sig.charCodeAt(3);
+    for (var i = this.length - 4; i >= 0; --i) {
+        if (this.data[i] === sig0 && this.data[i + 1] === sig1 && this.data[i + 2] === sig2 && this.data[i + 3] === sig3) {
+            return i - this.zero;
+        }
+    }
+
+    return -1;
+};
+/**
+ * @see DataReader.readAndCheckSignature
+ */
+ArrayReader.prototype.readAndCheckSignature = function (sig) {
+    var sig0 = sig.charCodeAt(0),
+        sig1 = sig.charCodeAt(1),
+        sig2 = sig.charCodeAt(2),
+        sig3 = sig.charCodeAt(3),
+        data = this.readData(4);
+    return sig0 === data[0] && sig1 === data[1] && sig2 === data[2] && sig3 === data[3];
+};
+/**
+ * @see DataReader.readData
+ */
+ArrayReader.prototype.readData = function(size) {
+    this.checkOffset(size);
+    if(size === 0) {
+        return [];
+    }
+    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
+    this.index += size;
+    return result;
+};
+module.exports = ArrayReader;
+
+},{"../utils":32,"./DataReader":18}],18:[function(require,module,exports){
+'use strict';
+var utils = require('../utils');
+
+function DataReader(data) {
+    this.data = data; // type : see implementation
+    this.length = data.length;
+    this.index = 0;
+    this.zero = 0;
+}
+DataReader.prototype = {
+    /**
+     * Check that the offset will not go too far.
+     * @param {string} offset the additional offset to check.
+     * @throws {Error} an Error if the offset is out of bounds.
+     */
+    checkOffset: function(offset) {
+        this.checkIndex(this.index + offset);
+    },
+    /**
+     * Check that the specified index will not be too far.
+     * @param {string} newIndex the index to check.
+     * @throws {Error} an Error if the index is out of bounds.
+     */
+    checkIndex: function(newIndex) {
+        if (this.length < this.zero + newIndex || newIndex < 0) {
+            throw new Error("End of data reached (data length = " + this.length + ", asked index = " + (newIndex) + "). Corrupted zip ?");
+        }
+    },
+    /**
+     * Change the index.
+     * @param {number} newIndex The new index.
+     * @throws {Error} if the new index is out of the data.
+     */
+    setIndex: function(newIndex) {
+        this.checkIndex(newIndex);
+        this.index = newIndex;
+    },
+    /**
+     * Skip the next n bytes.
+     * @param {number} n the number of bytes to skip.
+     * @throws {Error} if the new index is out of the data.
+     */
+    skip: function(n) {
+        this.setIndex(this.index + n);
+    },
+    /**
+     * Get the byte at the specified index.
+     * @param {number} i the index to use.
+     * @return {number} a byte.
+     */
+    byteAt: function(i) {
+        // see implementations
+    },
+    /**
+     * Get the next number with a given byte size.
+     * @param {number} size the number of bytes to read.
+     * @return {number} the corresponding number.
+     */
+    readInt: function(size) {
+        var result = 0,
+            i;
+        this.checkOffset(size);
+        for (i = this.index + size - 1; i >= this.index; i--) {
+            result = (result << 8) + this.byteAt(i);
+        }
+        this.index += size;
+        return result;
+    },
+    /**
+     * Get the next string with a given byte size.
+     * @param {number} size the number of bytes to read.
+     * @return {string} the corresponding string.
+     */
+    readString: function(size) {
+        return utils.transformTo("string", this.readData(size));
+    },
+    /**
+     * Get raw data without conversion, <size> bytes.
+     * @param {number} size the number of bytes to read.
+     * @return {Object} the raw data, implementation specific.
+     */
+    readData: function(size) {
+        // see implementations
+    },
+    /**
+     * Find the last occurrence of a zip signature (4 bytes).
+     * @param {string} sig the signature to find.
+     * @return {number} the index of the last occurrence, -1 if not found.
+     */
+    lastIndexOfSignature: function(sig) {
+        // see implementations
+    },
+    /**
+     * Read the signature (4 bytes) at the current position and compare it with sig.
+     * @param {string} sig the expected signature
+     * @return {boolean} true if the signature matches, false otherwise.
+     */
+    readAndCheckSignature: function(sig) {
+        // see implementations
+    },
+    /**
+     * Get the next date.
+     * @return {Date} the date.
+     */
+    readDate: function() {
+        var dostime = this.readInt(4);
+        return new Date(Date.UTC(
+        ((dostime >> 25) & 0x7f) + 1980, // year
+        ((dostime >> 21) & 0x0f) - 1, // month
+        (dostime >> 16) & 0x1f, // day
+        (dostime >> 11) & 0x1f, // hour
+        (dostime >> 5) & 0x3f, // minute
+        (dostime & 0x1f) << 1)); // second
+    }
+};
+module.exports = DataReader;
+
+},{"../utils":32}],19:[function(require,module,exports){
+'use strict';
+var Uint8ArrayReader = require('./Uint8ArrayReader');
+var utils = require('../utils');
+
+function NodeBufferReader(data) {
+    Uint8ArrayReader.call(this, data);
+}
+utils.inherits(NodeBufferReader, Uint8ArrayReader);
+
+/**
+ * @see DataReader.readData
+ */
+NodeBufferReader.prototype.readData = function(size) {
+    this.checkOffset(size);
+    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
+    this.index += size;
+    return result;
+};
+module.exports = NodeBufferReader;
+
+},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(require,module,exports){
+'use strict';
+var DataReader = require('./DataReader');
+var utils = require('../utils');
+
+function StringReader(data) {
+    DataReader.call(this, data);
+}
+utils.inherits(StringReader, DataReader);
+/**
+ * @see DataReader.byteAt
+ */
+StringReader.prototype.byteAt = function(i) {
+    return this.data.charCodeAt(this.zero + i);
+};
+/**
+ * @see DataReader.lastIndexOfSignature
+ */
+StringReader.prototype.lastIndexOfSignature = function(sig) {
+    return this.data.lastIndexOf(sig) - this.zero;
+};
+/**
+ * @see DataReader.readAndCheckSignature
+ */
+StringReader.prototype.readAndCheckSignature = function (sig) {
+    var data = this.readData(4);
+    return sig === data;
+};
+/**
+ * @see DataReader.readData
+ */
+StringReader.prototype.readData = function(size) {
+    this.checkOffset(size);
+    // this will work because the constructor applied the "& 0xff" mask.
+    var result = this.data.slice(this.zero + this.index, this.zero + this.index + size);
+    this.index += size;
+    return result;
+};
+module.exports = StringReader;
+
+},{"../utils":32,"./DataReader":18}],21:[function(require,module,exports){
+'use strict';
+var ArrayReader = require('./ArrayReader');
+var utils = require('../utils');
+
+function Uint8ArrayReader(data) {
+    ArrayReader.call(this, data);
+}
+utils.inherits(Uint8ArrayReader, ArrayReader);
+/**
+ * @see DataReader.readData
+ */
+Uint8ArrayReader.prototype.readData = function(size) {
+    this.checkOffset(size);
+    if(size === 0) {
+        // in IE10, when using subarray(idx, idx), we get the array [0x00] instead of [].
+        return new Uint8Array(0);
+    }
+    var result = this.data.subarray(this.zero + this.index, this.zero + this.index + size);
+    this.index += size;
+    return result;
+};
+module.exports = Uint8ArrayReader;
+
+},{"../utils":32,"./ArrayReader":17}],22:[function(require,module,exports){
+'use strict';
+
+var utils = require('../utils');
+var support = require('../support');
+var ArrayReader = require('./ArrayReader');
+var StringReader = require('./StringReader');
+var NodeBufferReader = require('./NodeBufferReader');
+var Uint8ArrayReader = require('./Uint8ArrayReader');
+
+/**
+ * Create a reader adapted to the data.
+ * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data to read.
+ * @return {DataReader} the data reader.
+ */
+module.exports = function (data) {
+    var type = utils.getTypeOf(data);
+    utils.checkSupport(type);
+    if (type === "string" && !support.uint8array) {
+        return new StringReader(data);
+    }
+    if (type === "nodebuffer") {
+        return new NodeBufferReader(data);
+    }
+    if (support.uint8array) {
+        return new Uint8ArrayReader(utils.transformTo("uint8array", data));
+    }
+    return new ArrayReader(utils.transformTo("array", data));
+};
+
+},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(require,module,exports){
+'use strict';
+exports.LOCAL_FILE_HEADER = "PK\x03\x04";
+exports.CENTRAL_FILE_HEADER = "PK\x01\x02";
+exports.CENTRAL_DIRECTORY_END = "PK\x05\x06";
+exports.ZIP64_CENTRAL_DIRECTORY_LOCATOR = "PK\x06\x07";
+exports.ZIP64_CENTRAL_DIRECTORY_END = "PK\x06\x06";
+exports.DATA_DESCRIPTOR = "PK\x07\x08";
+
+},{}],24:[function(require,module,exports){
+'use strict';
+
+var GenericWorker = require('./GenericWorker');
+var utils = require('../utils');
+
+/**
+ * A worker which convert chunks to a specified type.
+ * @constructor
+ * @param {String} destType the destination type.
+ */
+function ConvertWorker(destType) {
+    GenericWorker.call(this, "ConvertWorker to " + destType);
+    this.destType = destType;
+}
+utils.inherits(ConvertWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+ConvertWorker.prototype.processChunk = function (chunk) {
+    this.push({
+        data : utils.transformTo(this.destType, chunk.data),
+        meta : chunk.meta
+    });
+};
+module.exports = ConvertWorker;
+
+},{"../utils":32,"./GenericWorker":28}],25:[function(require,module,exports){
+'use strict';
+
+var GenericWorker = require('./GenericWorker');
+var crc32 = require('../crc32');
+var utils = require('../utils');
+
+/**
+ * A worker which calculate the crc32 of the data flowing through.
+ * @constructor
+ */
+function Crc32Probe() {
+    GenericWorker.call(this, "Crc32Probe");
+    this.withStreamInfo("crc32", 0);
+}
+utils.inherits(Crc32Probe, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+Crc32Probe.prototype.processChunk = function (chunk) {
+    this.streamInfo.crc32 = crc32(chunk.data, this.streamInfo.crc32 || 0);
+    this.push(chunk);
+};
+module.exports = Crc32Probe;
+
+},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(require,module,exports){
+'use strict';
+
+var utils = require('../utils');
+var GenericWorker = require('./GenericWorker');
+
+/**
+ * A worker which calculate the total length of the data flowing through.
+ * @constructor
+ * @param {String} propName the name used to expose the length
+ */
+function DataLengthProbe(propName) {
+    GenericWorker.call(this, "DataLengthProbe for " + propName);
+    this.propName = propName;
+    this.withStreamInfo(propName, 0);
+}
+utils.inherits(DataLengthProbe, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+DataLengthProbe.prototype.processChunk = function (chunk) {
+    if(chunk) {
+        var length = this.streamInfo[this.propName] || 0;
+        this.streamInfo[this.propName] = length + chunk.data.length;
+    }
+    GenericWorker.prototype.processChunk.call(this, chunk);
+};
+module.exports = DataLengthProbe;
+
+
+},{"../utils":32,"./GenericWorker":28}],27:[function(require,module,exports){
+'use strict';
+
+var utils = require('../utils');
+var GenericWorker = require('./GenericWorker');
+
+// the size of the generated chunks
+// TODO expose this as a public variable
+var DEFAULT_BLOCK_SIZE = 16 * 1024;
+
+/**
+ * A worker that reads a content and emits chunks.
+ * @constructor
+ * @param {Promise} dataP the promise of the data to split
+ */
+function DataWorker(dataP) {
+    GenericWorker.call(this, "DataWorker");
+    var self = this;
+    this.dataIsReady = false;
+    this.index = 0;
+    this.max = 0;
+    this.data = null;
+    this.type = "";
+
+    this._tickScheduled = false;
+
+    dataP.then(function (data) {
+        self.dataIsReady = true;
+        self.data = data;
+        self.max = data && data.length || 0;
+        self.type = utils.getTypeOf(data);
+        if(!self.isPaused) {
+            self._tickAndRepeat();
+        }
+    }, function (e) {
+        self.error(e);
+    });
+}
+
+utils.inherits(DataWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.cleanUp
+ */
+DataWorker.prototype.cleanUp = function () {
+    GenericWorker.prototype.cleanUp.call(this);
+    this.data = null;
+};
+
+/**
+ * @see GenericWorker.resume
+ */
+DataWorker.prototype.resume = function () {
+    if(!GenericWorker.prototype.resume.call(this)) {
+        return false;
+    }
+
+    if (!this._tickScheduled && this.dataIsReady) {
+        this._tickScheduled = true;
+        utils.delay(this._tickAndRepeat, [], this);
+    }
+    return true;
+};
+
+/**
+ * Trigger a tick a schedule an other call to this function.
+ */
+DataWorker.prototype._tickAndRepeat = function() {
+    this._tickScheduled = false;
+    if(this.isPaused || this.isFinished) {
+        return;
+    }
+    this._tick();
+    if(!this.isFinished) {
+        utils.delay(this._tickAndRepeat, [], this);
+        this._tickScheduled = true;
+    }
+};
+
+/**
+ * Read and push a chunk.
+ */
+DataWorker.prototype._tick = function() {
+
+    if(this.isPaused || this.isFinished) {
+        return false;
+    }
+
+    var size = DEFAULT_BLOCK_SIZE;
+    var data = null, nextIndex = Math.min(this.max, this.index + size);
+    if (this.index >= this.max) {
+        // EOF
+        return this.end();
+    } else {
+        switch(this.type) {
+            case "string":
+                data = this.data.substring(this.index, nextIndex);
+            break;
+            case "uint8array":
+                data = this.data.subarray(this.index, nextIndex);
+            break;
+            case "array":
+            case "nodebuffer":
+                data = this.data.slice(this.index, nextIndex);
+            break;
+        }
+        this.index = nextIndex;
+        return this.push({
+            data : data,
+            meta : {
+                percent : this.max ? this.index / this.max * 100 : 0
+            }
+        });
+    }
+};
+
+module.exports = DataWorker;
+
+},{"../utils":32,"./GenericWorker":28}],28:[function(require,module,exports){
+'use strict';
+
+/**
+ * A worker that does nothing but passing chunks to the next one. This is like
+ * a nodejs stream but with some differences. On the good side :
+ * - it works on IE 6-9 without any issue / polyfill
+ * - it weights less than the full dependencies bundled with browserify
+ * - it forwards errors (no need to declare an error handler EVERYWHERE)
+ *
+ * A chunk is an object with 2 attributes : `meta` and `data`. The former is an
+ * object containing anything (`percent` for example), see each worker for more
+ * details. The latter is the real data (String, Uint8Array, etc).
+ *
+ * @constructor
+ * @param {String} name the name of the stream (mainly used for debugging purposes)
+ */
+function GenericWorker(name) {
+    // the name of the worker
+    this.name = name || "default";
+    // an object containing metadata about the workers chain
+    this.streamInfo = {};
+    // an error which happened when the worker was paused
+    this.generatedError = null;
+    // an object containing metadata to be merged by this worker into the general metadata
+    this.extraStreamInfo = {};
+    // true if the stream is paused (and should not do anything), false otherwise
+    this.isPaused = true;
+    // true if the stream is finished (and should not do anything), false otherwise
+    this.isFinished = false;
+    // true if the stream is locked to prevent further structure updates (pipe), false otherwise
+    this.isLocked = false;
+    // the event listeners
+    this._listeners = {
+        'data':[],
+        'end':[],
+        'error':[]
+    };
+    // the previous worker, if any
+    this.previous = null;
+}
+
+GenericWorker.prototype = {
+    /**
+     * Push a chunk to the next workers.
+     * @param {Object} chunk the chunk to push
+     */
+    push : function (chunk) {
+        this.emit("data", chunk);
+    },
+    /**
+     * End the stream.
+     * @return {Boolean} true if this call ended the worker, false otherwise.
+     */
+    end : function () {
+        if (this.isFinished) {
+            return false;
+        }
+
+        this.flush();
+        try {
+            this.emit("end");
+            this.cleanUp();
+            this.isFinished = true;
+        } catch (e) {
+            this.emit("error", e);
+        }
+        return true;
+    },
+    /**
+     * End the stream with an error.
+     * @param {Error} e the error which caused the premature end.
+     * @return {Boolean} true if this call ended the worker with an error, false otherwise.
+     */
+    error : function (e) {
+        if (this.isFinished) {
+            return false;
+        }
+
+        if(this.isPaused) {
+            this.generatedError = e;
+        } else {
+            this.isFinished = true;
+
+            this.emit("error", e);
+
+            // in the workers chain exploded in the middle of the chain,
+            // the error event will go downward but we also need to notify
+            // workers upward that there has been an error.
+            if(this.previous) {
+                this.previous.error(e);
+            }
+
+            this.cleanUp();
+        }
+        return true;
+    },
+    /**
+     * Add a callback on an event.
+     * @param {String} name the name of the event (data, end, error)
+     * @param {Function} listener the function to call when the event is triggered
+     * @return {GenericWorker} the current object for chainability
+     */
+    on : function (name, listener) {
+        this._listeners[name].push(listener);
+        return this;
+    },
+    /**
+     * Clean any references when a worker is ending.
+     */
+    cleanUp : function () {
+        this.streamInfo = this.generatedError = this.extraStreamInfo = null;
+        this._listeners = [];
+    },
+    /**
+     * Trigger an event. This will call registered callback with the provided arg.
+     * @param {String} name the name of the event (data, end, error)
+     * @param {Object} arg the argument to call the callback with.
+     */
+    emit : function (name, arg) {
+        if (this._listeners[name]) {
+            for(var i = 0; i < this._listeners[name].length; i++) {
+                this._listeners[name][i].call(this, arg);
+            }
+        }
+    },
+    /**
+     * Chain a worker with an other.
+     * @param {Worker} next the worker receiving events from the current one.
+     * @return {worker} the next worker for chainability
+     */
+    pipe : function (next) {
+        return next.registerPrevious(this);
+    },
+    /**
+     * Same as `pipe` in the other direction.
+     * Using an API with `pipe(next)` is very easy.
+     * Implementing the API with the point of view of the next one registering
+     * a source is easier, see the ZipFileWorker.
+     * @param {Worker} previous the previous worker, sending events to this one
+     * @return {Worker} the current worker for chainability
+     */
+    registerPrevious : function (previous) {
+        if (this.isLocked) {
+            throw new Error("The stream '" + this + "' has already been used.");
+        }
+
+        // sharing the streamInfo...
+        this.streamInfo = previous.streamInfo;
+        // ... and adding our own bits
+        this.mergeStreamInfo();
+        this.previous =  previous;
+        var self = this;
+        previous.on('data', function (chunk) {
+            self.processChunk(chunk);
+        });
+        previous.on('end', function () {
+            self.end();
+        });
+        previous.on('error', function (e) {
+            self.error(e);
+        });
+        return this;
+    },
+    /**
+     * Pause the stream so it doesn't send events anymore.
+     * @return {Boolean} true if this call paused the worker, false otherwise.
+     */
+    pause : function () {
+        if(this.isPaused || this.isFinished) {
+            return false;
+        }
+        this.isPaused = true;
+
+        if(this.previous) {
+            this.previous.pause();
+        }
+        return true;
+    },
+    /**
+     * Resume a paused stream.
+     * @return {Boolean} true if this call resumed the worker, false otherwise.
+     */
+    resume : function () {
+        if(!this.isPaused || this.isFinished) {
+            return false;
+        }
+        this.isPaused = false;
+
+        // if true, the worker tried to resume but failed
+        var withError = false;
+        if(this.generatedError) {
+            this.error(this.generatedError);
+            withError = true;
+        }
+        if(this.previous) {
+            this.previous.resume();
+        }
+
+        return !withError;
+    },
+    /**
+     * Flush any remaining bytes as the stream is ending.
+     */
+    flush : function () {},
+    /**
+     * Process a chunk. This is usually the method overridden.
+     * @param {Object} chunk the chunk to process.
+     */
+    processChunk : function(chunk) {
+        this.push(chunk);
+    },
+    /**
+     * Add a key/value to be added in the workers chain streamInfo once activated.
+     * @param {String} key the key to use
+     * @param {Object} value the associated value
+     * @return {Worker} the current worker for chainability
+     */
+    withStreamInfo : function (key, value) {
+        this.extraStreamInfo[key] = value;
+        this.mergeStreamInfo();
+        return this;
+    },
+    /**
+     * Merge this worker's streamInfo into the chain's streamInfo.
+     */
+    mergeStreamInfo : function () {
+        for(var key in this.extraStreamInfo) {
+            if (!this.extraStreamInfo.hasOwnProperty(key)) {
+                continue;
+            }
+            this.streamInfo[key] = this.extraStreamInfo[key];
+        }
+    },
+
+    /**
+     * Lock the stream to prevent further updates on the workers chain.
+     * After calling this method, all calls to pipe will fail.
+     */
+    lock: function () {
+        if (this.isLocked) {
+            throw new Error("The stream '" + this + "' has already been used.");
+        }
+        this.isLocked = true;
+        if (this.previous) {
+            this.previous.lock();
+        }
+    },
+
+    /**
+     *
+     * Pretty print the workers chain.
+     */
+    toString : function () {
+        var me = "Worker " + this.name;
+        if (this.previous) {
+            return this.previous + " -> " + me;
+        } else {
+            return me;
+        }
+    }
+};
+
+module.exports = GenericWorker;
+
+},{}],29:[function(require,module,exports){
+'use strict';
+
+var utils = require('../utils');
+var ConvertWorker = require('./ConvertWorker');
+var GenericWorker = require('./GenericWorker');
+var base64 = require('../base64');
+var support = require("../support");
+var external = require("../external");
+
+var NodejsStreamOutputAdapter = null;
+if (support.nodestream) {
+    try {
+        NodejsStreamOutputAdapter = require('../nodejs/NodejsStreamOutputAdapter');
+    } catch(e) {}
+}
+
+/**
+ * Apply the final transformation of the data. If the user wants a Blob for
+ * example, it's easier to work with an U8intArray and finally do the
+ * ArrayBuffer/Blob conversion.
+ * @param {String} type the name of the final type
+ * @param {String|Uint8Array|Buffer} content the content to transform
+ * @param {String} mimeType the mime type of the content, if applicable.
+ * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the content in the right format.
+ */
+function transformZipOutput(type, content, mimeType) {
+    switch(type) {
+        case "blob" :
+            return utils.newBlob(utils.transformTo("arraybuffer", content), mimeType);
+        case "base64" :
+            return base64.encode(content);
+        default :
+            return utils.transformTo(type, content);
+    }
+}
+
+/**
+ * Concatenate an array of data of the given type.
+ * @param {String} type the type of the data in the given array.
+ * @param {Array} dataArray the array containing the data chunks to concatenate
+ * @return {String|Uint8Array|Buffer} the concatenated data
+ * @throws Error if the asked type is unsupported
+ */
+function concat (type, dataArray) {
+    var i, index = 0, res = null, totalLength = 0;
+    for(i = 0; i < dataArray.length; i++) {
+        totalLength += dataArray[i].length;
+    }
+    switch(type) {
+        case "string":
+            return dataArray.join("");
+          case "array":
+            return Array.prototype.concat.apply([], dataArray);
+        case "uint8array":
+            res = new Uint8Array(totalLength);
+            for(i = 0; i < dataArray.length; i++) {
+                res.set(dataArray[i], index);
+                index += dataArray[i].length;
+            }
+            return res;
+        case "nodebuffer":
+            return Buffer.concat(dataArray);
+        default:
+            throw new Error("concat : unsupported type '"  + type + "'");
+    }
+}
+
+/**
+ * Listen a StreamHelper, accumulate its content and concatenate it into a
+ * complete block.
+ * @param {StreamHelper} helper the helper to use.
+ * @param {Function} updateCallback a callback called on each update. Called
+ * with one arg :
+ * - the metadata linked to the update received.
+ * @return Promise the promise for the accumulation.
+ */
+function accumulate(helper, updateCallback) {
+    return new external.Promise(function (resolve, reject){
+        var dataArray = [];
+        var chunkType = helper._internalType,
+            resultType = helper._outputType,
+            mimeType = helper._mimeType;
+        helper
+        .on('data', function (data, meta) {
+            dataArray.push(data);
+            if(updateCallback) {
+                updateCallback(meta);
+            }
+        })
+        .on('error', function(err) {
+            dataArray = [];
+            reject(err);
+        })
+        .on('end', function (){
+            try {
+                var result = transformZipOutput(resultType, concat(chunkType, dataArray), mimeType);
+                resolve(result);
+            } catch (e) {
+                reject(e);
+            }
+            dataArray = [];
+        })
+        .resume();
+    });
+}
+
+/**
+ * An helper to easily use workers outside of JSZip.
+ * @constructor
+ * @param {Worker} worker the worker to wrap
+ * @param {String} outputType the type of data expected by the use
+ * @param {String} mimeType the mime type of the content, if applicable.
+ */
+function StreamHelper(worker, outputType, mimeType) {
+    var internalType = outputType;
+    switch(outputType) {
+        case "blob":
+        case "arraybuffer":
+            internalType = "uint8array";
+        break;
+        case "base64":
+            internalType = "string";
+        break;
+    }
+
+    try {
+        // the type used internally
+        this._internalType = internalType;
+        // the type used to output results
+        this._outputType = outputType;
+        // the mime type
+        this._mimeType = mimeType;
+        utils.checkSupport(internalType);
+        this._worker = worker.pipe(new ConvertWorker(internalType));
+        // the last workers can be rewired without issues but we need to
+        // prevent any updates on previous workers.
+        worker.lock();
+    } catch(e) {
+        this._worker = new GenericWorker("error");
+        this._worker.error(e);
+    }
+}
+
+StreamHelper.prototype = {
+    /**
+     * Listen a StreamHelper, accumulate its content and concatenate it into a
+     * complete block.
+     * @param {Function} updateCb the update callback.
+     * @return Promise the promise for the accumulation.
+     */
+    accumulate : function (updateCb) {
+        return accumulate(this, updateCb);
+    },
+    /**
+     * Add a listener on an event triggered on a stream.
+     * @param {String} evt the name of the event
+     * @param {Function} fn the listener
+     * @return {StreamHelper} the current helper.
+     */
+    on : function (evt, fn) {
+        var self = this;
+
+        if(evt === "data") {
+            this._worker.on(evt, function (chunk) {
+                fn.call(self, chunk.data, chunk.meta);
+            });
+        } else {
+            this._worker.on(evt, function () {
+                utils.delay(fn, arguments, self);
+            });
+        }
+        return this;
+    },
+    /**
+     * Resume the flow of chunks.
+     * @return {StreamHelper} the current helper.
+     */
+    resume : function () {
+        utils.delay(this._worker.resume, [], this._worker);
+        return this;
+    },
+    /**
+     * Pause the flow of chunks.
+     * @return {StreamHelper} the current helper.
+     */
+    pause : function () {
+        this._worker.pause();
+        return this;
+    },
+    /**
+     * Return a nodejs stream for this helper.
+     * @param {Function} updateCb the update callback.
+     * @return {NodejsStreamOutputAdapter} the nodejs stream.
+     */
+    toNodejsStream : function (updateCb) {
+        utils.checkSupport("nodestream");
+        if (this._outputType !== "nodebuffer") {
+            // an object stream containing blob/arraybuffer/uint8array/string
+            // is strange and I don't know if it would be useful.
+            // I you find this comment and have a good usecase, please open a
+            // bug report !
+            throw new Error(this._outputType + " is not supported by this method");
+        }
+
+        return new NodejsStreamOutputAdapter(this, {
+            objectMode : this._outputType !== "nodebuffer"
+        }, updateCb);
+    }
+};
+
+
+module.exports = StreamHelper;
+
+},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(require,module,exports){
+'use strict';
+
+exports.base64 = true;
+exports.array = true;
+exports.string = true;
+exports.arraybuffer = typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined";
+exports.nodebuffer = typeof Buffer !== "undefined";
+// contains true if JSZip can read/generate Uint8Array, false otherwise.
+exports.uint8array = typeof Uint8Array !== "undefined";
+
+if (typeof ArrayBuffer === "undefined") {
+    exports.blob = false;
+}
+else {
+    var buffer = new ArrayBuffer(0);
+    try {
+        exports.blob = new Blob([buffer], {
+            type: "application/zip"
+        }).size === 0;
+    }
+    catch (e) {
+        try {
+            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
+            var builder = new Builder();
+            builder.append(buffer);
+            exports.blob = builder.getBlob('application/zip').size === 0;
+        }
+        catch (e) {
+            exports.blob = false;
+        }
+    }
+}
+
+try {
+    exports.nodestream = !!require('readable-stream').Readable;
+} catch(e) {
+    exports.nodestream = false;
+}
+
+},{"readable-stream":16}],31:[function(require,module,exports){
+'use strict';
+
+var utils = require('./utils');
+var support = require('./support');
+var nodejsUtils = require('./nodejsUtils');
+var GenericWorker = require('./stream/GenericWorker');
+
+/**
+ * The following functions come from pako, from pako/lib/utils/strings
+ * released under the MIT license, see pako https://github.com/nodeca/pako/
+ */
+
+// Table with utf8 lengths (calculated by first byte of sequence)
+// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
+// because max possible codepoint is 0x10ffff
+var _utf8len = new Array(256);
+for (var i=0; i<256; i++) {
+  _utf8len[i] = (i >= 252 ? 6 : i >= 248 ? 5 : i >= 240 ? 4 : i >= 224 ? 3 : i >= 192 ? 2 : 1);
+}
+_utf8len[254]=_utf8len[254]=1; // Invalid sequence start
+
+// convert string to array (typed, when possible)
+var string2buf = function (str) {
+    var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
+
+    // count binary size
+    for (m_pos = 0; m_pos < str_len; m_pos++) {
+        c = str.charCodeAt(m_pos);
+        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
+            c2 = str.charCodeAt(m_pos+1);
+            if ((c2 & 0xfc00) === 0xdc00) {
+                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
+                m_pos++;
+            }
+        }
+        buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
+    }
+
+    // allocate buffer
+    if (support.uint8array) {
+        buf = new Uint8Array(buf_len);
+    } else {
+        buf = new Array(buf_len);
+    }
+
+    // convert
+    for (i=0, m_pos = 0; i < buf_len; m_pos++) {
+        c = str.charCodeAt(m_pos);
+        if ((c & 0xfc00) === 0xd800 && (m_pos+1 < str_len)) {
+            c2 = str.charCodeAt(m_pos+1);
+            if ((c2 & 0xfc00) === 0xdc00) {
+                c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
+                m_pos++;
+            }
+        }
+        if (c < 0x80) {
+            /* one byte */
+            buf[i++] = c;
+        } else if (c < 0x800) {
+            /* two bytes */
+            buf[i++] = 0xC0 | (c >>> 6);
+            buf[i++] = 0x80 | (c & 0x3f);
+        } else if (c < 0x10000) {
+            /* three bytes */
+            buf[i++] = 0xE0 | (c >>> 12);
+            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
+            buf[i++] = 0x80 | (c & 0x3f);
+        } else {
+            /* four bytes */
+            buf[i++] = 0xf0 | (c >>> 18);
+            buf[i++] = 0x80 | (c >>> 12 & 0x3f);
+            buf[i++] = 0x80 | (c >>> 6 & 0x3f);
+            buf[i++] = 0x80 | (c & 0x3f);
+        }
+    }
+
+    return buf;
+};
+
+// Calculate max possible position in utf8 buffer,
+// that will not break sequence. If that's not possible
+// - (very small limits) return max size as is.
+//
+// buf[] - utf8 bytes array
+// max   - length limit (mandatory);
+var utf8border = function(buf, max) {
+    var pos;
+
+    max = max || buf.length;
+    if (max > buf.length) { max = buf.length; }
+
+    // go back from last position, until start of sequence found
+    pos = max-1;
+    while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
+
+    // Fuckup - very small and broken sequence,
+    // return max, because we should return something anyway.
+    if (pos < 0) { return max; }
+
+    // If we came to start of buffer - that means vuffer is too small,
+    // return max too.
+    if (pos === 0) { return max; }
+
+    return (pos + _utf8len[buf[pos]] > max) ? pos : max;
+};
+
+// convert array to string
+var buf2string = function (buf) {
+    var str, i, out, c, c_len;
+    var len = buf.length;
+
+    // Reserve max possible length (2 words per char)
+    // NB: by unknown reasons, Array is significantly faster for
+    //     String.fromCharCode.apply than Uint16Array.
+    var utf16buf = new Array(len*2);
+
+    for (out=0, i=0; i<len;) {
+        c = buf[i++];
+        // quick process ascii
+        if (c < 0x80) { utf16buf[out++] = c; continue; }
+
+        c_len = _utf8len[c];
+        // skip 5 & 6 byte codes
+        if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len-1; continue; }
+
+        // apply mask on first byte
+        c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
+        // join the rest
+        while (c_len > 1 && i < len) {
+            c = (c << 6) | (buf[i++] & 0x3f);
+            c_len--;
+        }
+
+        // terminated by end of string?
+        if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
+
+        if (c < 0x10000) {
+            utf16buf[out++] = c;
+        } else {
+            c -= 0x10000;
+            utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
+            utf16buf[out++] = 0xdc00 | (c & 0x3ff);
+        }
+    }
+
+    // shrinkBuf(utf16buf, out)
+    if (utf16buf.length !== out) {
+        if(utf16buf.subarray) {
+            utf16buf = utf16buf.subarray(0, out);
+        } else {
+            utf16buf.length = out;
+        }
+    }
+
+    // return String.fromCharCode.apply(null, utf16buf);
+    return utils.applyFromCharCode(utf16buf);
+};
+
+
+// That's all for the pako functions.
+
+
+/**
+ * Transform a javascript string into an array (typed if possible) of bytes,
+ * UTF-8 encoded.
+ * @param {String} str the string to encode
+ * @return {Array|Uint8Array|Buffer} the UTF-8 encoded string.
+ */
+exports.utf8encode = function utf8encode(str) {
+    if (support.nodebuffer) {
+        return nodejsUtils.newBufferFrom(str, "utf-8");
+    }
+
+    return string2buf(str);
+};
+
+
+/**
+ * Transform a bytes array (or a representation) representing an UTF-8 encoded
+ * string into a javascript string.
+ * @param {Array|Uint8Array|Buffer} buf the data de decode
+ * @return {String} the decoded string.
+ */
+exports.utf8decode = function utf8decode(buf) {
+    if (support.nodebuffer) {
+        return utils.transformTo("nodebuffer", buf).toString("utf-8");
+    }
+
+    buf = utils.transformTo(support.uint8array ? "uint8array" : "array", buf);
+
+    return buf2string(buf);
+};
+
+/**
+ * A worker to decode utf8 encoded binary chunks into string chunks.
+ * @constructor
+ */
+function Utf8DecodeWorker() {
+    GenericWorker.call(this, "utf-8 decode");
+    // the last bytes if a chunk didn't end with a complete codepoint.
+    this.leftOver = null;
+}
+utils.inherits(Utf8DecodeWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+Utf8DecodeWorker.prototype.processChunk = function (chunk) {
+
+    var data = utils.transformTo(support.uint8array ? "uint8array" : "array", chunk.data);
+
+    // 1st step, re-use what's left of the previous chunk
+    if (this.leftOver && this.leftOver.length) {
+        if(support.uint8array) {
+            var previousData = data;
+            data = new Uint8Array(previousData.length + this.leftOver.length);
+            data.set(this.leftOver, 0);
+            data.set(previousData, this.leftOver.length);
+        } else {
+            data = this.leftOver.concat(data);
+        }
+        this.leftOver = null;
+    }
+
+    var nextBoundary = utf8border(data);
+    var usableData = data;
+    if (nextBoundary !== data.length) {
+        if (support.uint8array) {
+            usableData = data.subarray(0, nextBoundary);
+            this.leftOver = data.subarray(nextBoundary, data.length);
+        } else {
+            usableData = data.slice(0, nextBoundary);
+            this.leftOver = data.slice(nextBoundary, data.length);
+        }
+    }
+
+    this.push({
+        data : exports.utf8decode(usableData),
+        meta : chunk.meta
+    });
+};
+
+/**
+ * @see GenericWorker.flush
+ */
+Utf8DecodeWorker.prototype.flush = function () {
+    if(this.leftOver && this.leftOver.length) {
+        this.push({
+            data : exports.utf8decode(this.leftOver),
+            meta : {}
+        });
+        this.leftOver = null;
+    }
+};
+exports.Utf8DecodeWorker = Utf8DecodeWorker;
+
+/**
+ * A worker to endcode string chunks into utf8 encoded binary chunks.
+ * @constructor
+ */
+function Utf8EncodeWorker() {
+    GenericWorker.call(this, "utf-8 encode");
+}
+utils.inherits(Utf8EncodeWorker, GenericWorker);
+
+/**
+ * @see GenericWorker.processChunk
+ */
+Utf8EncodeWorker.prototype.processChunk = function (chunk) {
+    this.push({
+        data : exports.utf8encode(chunk.data),
+        meta : chunk.meta
+    });
+};
+exports.Utf8EncodeWorker = Utf8EncodeWorker;
+
+},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(require,module,exports){
+'use strict';
+
+var support = require('./support');
+var base64 = require('./base64');
+var nodejsUtils = require('./nodejsUtils');
+var setImmediate = require('set-immediate-shim');
+var external = require("./external");
+
+
+/**
+ * Convert a string that pass as a "binary string": it should represent a byte
+ * array but may have > 255 char codes. Be sure to take only the first byte
+ * and returns the byte array.
+ * @param {String} str the string to transform.
+ * @return {Array|Uint8Array} the string in a binary format.
+ */
+function string2binary(str) {
+    var result = null;
+    if (support.uint8array) {
+      result = new Uint8Array(str.length);
+    } else {
+      result = new Array(str.length);
+    }
+    return stringToArrayLike(str, result);
+}
+
+/**
+ * Create a new blob with the given content and the given type.
+ * @param {String|ArrayBuffer} part the content to put in the blob. DO NOT use
+ * an Uint8Array because the stock browser of android 4 won't accept it (it
+ * will be silently converted to a string, "[object Uint8Array]").
+ *
+ * Use only ONE part to build the blob to avoid a memory leak in IE11 / Edge:
+ * when a large amount of Array is used to create the Blob, the amount of
+ * memory consumed is nearly 100 times the original data amount.
+ *
+ * @param {String} type the mime type of the blob.
+ * @return {Blob} the created blob.
+ */
+exports.newBlob = function(part, type) {
+    exports.checkSupport("blob");
+
+    try {
+        // Blob constructor
+        return new Blob([part], {
+            type: type
+        });
+    }
+    catch (e) {
+
+        try {
+            // deprecated, browser only, old way
+            var Builder = self.BlobBuilder || self.WebKitBlobBuilder || self.MozBlobBuilder || self.MSBlobBuilder;
+            var builder = new Builder();
+            builder.append(part);
+            return builder.getBlob(type);
+        }
+        catch (e) {
+
+            // well, fuck ?!
+            throw new Error("Bug : can't construct the Blob.");
+        }
+    }
+
+
+};
+/**
+ * The identity function.
+ * @param {Object} input the input.
+ * @return {Object} the same input.
+ */
+function identity(input) {
+    return input;
+}
+
+/**
+ * Fill in an array with a string.
+ * @param {String} str the string to use.
+ * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated).
+ * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array.
+ */
+function stringToArrayLike(str, array) {
+    for (var i = 0; i < str.length; ++i) {
+        array[i] = str.charCodeAt(i) & 0xFF;
+    }
+    return array;
+}
+
+/**
+ * An helper for the function arrayLikeToString.
+ * This contains static information and functions that
+ * can be optimized by the browser JIT compiler.
+ */
+var arrayToStringHelper = {
+    /**
+     * Transform an array of int into a string, chunk by chunk.
+     * See the performances notes on arrayLikeToString.
+     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
+     * @param {String} type the type of the array.
+     * @param {Integer} chunk the chunk size.
+     * @return {String} the resulting string.
+     * @throws Error if the chunk is too big for the stack.
+     */
+    stringifyByChunk: function(array, type, chunk) {
+        var result = [], k = 0, len = array.length;
+        // shortcut
+        if (len <= chunk) {
+            return String.fromCharCode.apply(null, array);
+        }
+        while (k < len) {
+            if (type === "array" || type === "nodebuffer") {
+                result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len))));
+            }
+            else {
+                result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len))));
+            }
+            k += chunk;
+        }
+        return result.join("");
+    },
+    /**
+     * Call String.fromCharCode on every item in the array.
+     * This is the naive implementation, which generate A LOT of intermediate string.
+     * This should be used when everything else fail.
+     * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
+     * @return {String} the result.
+     */
+    stringifyByChar: function(array){
+        var resultStr = "";
+        for(var i = 0; i < array.length; i++) {
+            resultStr += String.fromCharCode(array[i]);
+        }
+        return resultStr;
+    },
+    applyCanBeUsed : {
+        /**
+         * true if the browser accepts to use String.fromCharCode on Uint8Array
+         */
+        uint8array : (function () {
+            try {
+                return support.uint8array && String.fromCharCode.apply(null, new Uint8Array(1)).length === 1;
+            } catch (e) {
+                return false;
+            }
+        })(),
+        /**
+         * true if the browser accepts to use String.fromCharCode on nodejs Buffer.
+         */
+        nodebuffer : (function () {
+            try {
+                return support.nodebuffer && String.fromCharCode.apply(null, nodejsUtils.allocBuffer(1)).length === 1;
+            } catch (e) {
+                return false;
+            }
+        })()
+    }
+};
+
+/**
+ * Transform an array-like object to a string.
+ * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
+ * @return {String} the result.
+ */
+function arrayLikeToString(array) {
+    // Performances notes :
+    // --------------------
+    // String.fromCharCode.apply(null, array) is the fastest, see
+    // see http://jsperf.com/converting-a-uint8array-to-a-string/2
+    // but the stack is limited (and we can get huge arrays !).
+    //
+    // result += String.fromCharCode(array[i]); generate too many strings !
+    //
+    // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2
+    // TODO : we now have workers that split the work. Do we still need that ?
+    var chunk = 65536,
+        type = exports.getTypeOf(array),
+        canUseApply = true;
+    if (type === "uint8array") {
+        canUseApply = arrayToStringHelper.applyCanBeUsed.uint8array;
+    } else if (type === "nodebuffer") {
+        canUseApply = arrayToStringHelper.applyCanBeUsed.nodebuffer;
+    }
+
+    if (canUseApply) {
+        while (chunk > 1) {
+            try {
+                return arrayToStringHelper.stringifyByChunk(array, type, chunk);
+            } catch (e) {
+                chunk = Math.floor(chunk / 2);
+            }
+        }
+    }
+
+    // no apply or chunk error : slow and painful algorithm
+    // default browser on android 4.*
+    return arrayToStringHelper.stringifyByChar(array);
+}
+
+exports.applyFromCharCode = arrayLikeToString;
+
+
+/**
+ * Copy the data from an array-like to an other array-like.
+ * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array.
+ * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated.
+ * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array.
+ */
+function arrayLikeToArrayLike(arrayFrom, arrayTo) {
+    for (var i = 0; i < arrayFrom.length; i++) {
+        arrayTo[i] = arrayFrom[i];
+    }
+    return arrayTo;
+}
+
+// a matrix containing functions to transform everything into everything.
+var transform = {};
+
+// string to ?
+transform["string"] = {
+    "string": identity,
+    "array": function(input) {
+        return stringToArrayLike(input, new Array(input.length));
+    },
+    "arraybuffer": function(input) {
+        return transform["string"]["uint8array"](input).buffer;
+    },
+    "uint8array": function(input) {
+        return stringToArrayLike(input, new Uint8Array(input.length));
+    },
+    "nodebuffer": function(input) {
+        return stringToArrayLike(input, nodejsUtils.allocBuffer(input.length));
+    }
+};
+
+// array to ?
+transform["array"] = {
+    "string": arrayLikeToString,
+    "array": identity,
+    "arraybuffer": function(input) {
+        return (new Uint8Array(input)).buffer;
+    },
+    "uint8array": function(input) {
+        return new Uint8Array(input);
+    },
+    "nodebuffer": function(input) {
+        return nodejsUtils.newBufferFrom(input);
+    }
+};
+
+// arraybuffer to ?
+transform["arraybuffer"] = {
+    "string": function(input) {
+        return arrayLikeToString(new Uint8Array(input));
+    },
+    "array": function(input) {
+        return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength));
+    },
+    "arraybuffer": identity,
+    "uint8array": function(input) {
+        return new Uint8Array(input);
+    },
+    "nodebuffer": function(input) {
+        return nodejsUtils.newBufferFrom(new Uint8Array(input));
+    }
+};
+
+// uint8array to ?
+transform["uint8array"] = {
+    "string": arrayLikeToString,
+    "array": function(input) {
+        return arrayLikeToArrayLike(input, new Array(input.length));
+    },
+    "arraybuffer": function(input) {
+        return input.buffer;
+    },
+    "uint8array": identity,
+    "nodebuffer": function(input) {
+        return nodejsUtils.newBufferFrom(input);
+    }
+};
+
+// nodebuffer to ?
+transform["nodebuffer"] = {
+    "string": arrayLikeToString,
+    "array": function(input) {
+        return arrayLikeToArrayLike(input, new Array(input.length));
+    },
+    "arraybuffer": function(input) {
+        return transform["nodebuffer"]["uint8array"](input).buffer;
+    },
+    "uint8array": function(input) {
+        return arrayLikeToArrayLike(input, new Uint8Array(input.length));
+    },
+    "nodebuffer": identity
+};
+
+/**
+ * Transform an input into any type.
+ * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer.
+ * If no output type is specified, the unmodified input will be returned.
+ * @param {String} outputType the output type.
+ * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert.
+ * @throws {Error} an Error if the browser doesn't support the requested output type.
+ */
+exports.transformTo = function(outputType, input) {
+    if (!input) {
+        // undefined, null, etc
+        // an empty string won't harm.
+        input = "";
+    }
+    if (!outputType) {
+        return input;
+    }
+    exports.checkSupport(outputType);
+    var inputType = exports.getTypeOf(input);
+    var result = transform[inputType][outputType](input);
+    return result;
+};
+
+/**
+ * Return the type of the input.
+ * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer.
+ * @param {Object} input the input to identify.
+ * @return {String} the (lowercase) type of the input.
+ */
+exports.getTypeOf = function(input) {
+    if (typeof input === "string") {
+        return "string";
+    }
+    if (Object.prototype.toString.call(input) === "[object Array]") {
+        return "array";
+    }
+    if (support.nodebuffer && nodejsUtils.isBuffer(input)) {
+        return "nodebuffer";
+    }
+    if (support.uint8array && input instanceof Uint8Array) {
+        return "uint8array";
+    }
+    if (support.arraybuffer && input instanceof ArrayBuffer) {
+        return "arraybuffer";
+    }
+};
+
+/**
+ * Throw an exception if the type is not supported.
+ * @param {String} type the type to check.
+ * @throws {Error} an Error if the browser doesn't support the requested type.
+ */
+exports.checkSupport = function(type) {
+    var supported = support[type.toLowerCase()];
+    if (!supported) {
+        throw new Error(type + " is not supported by this platform");
+    }
+};
+
+exports.MAX_VALUE_16BITS = 65535;
+exports.MAX_VALUE_32BITS = -1; // well, "\xFF\xFF\xFF\xFF\xFF\xFF\xFF\xFF" is parsed as -1
+
+/**
+ * Prettify a string read as binary.
+ * @param {string} str the string to prettify.
+ * @return {string} a pretty string.
+ */
+exports.pretty = function(str) {
+    var res = '',
+        code, i;
+    for (i = 0; i < (str || "").length; i++) {
+        code = str.charCodeAt(i);
+        res += '\\x' + (code < 16 ? "0" : "") + code.toString(16).toUpperCase();
+    }
+    return res;
+};
+
+/**
+ * Defer the call of a function.
+ * @param {Function} callback the function to call asynchronously.
+ * @param {Array} args the arguments to give to the callback.
+ */
+exports.delay = function(callback, args, self) {
+    setImmediate(function () {
+        callback.apply(self || null, args || []);
+    });
+};
+
+/**
+ * Extends a prototype with an other, without calling a constructor with
+ * side effects. Inspired by nodejs' `utils.inherits`
+ * @param {Function} ctor the constructor to augment
+ * @param {Function} superCtor the parent constructor to use
+ */
+exports.inherits = function (ctor, superCtor) {
+    var Obj = function() {};
+    Obj.prototype = superCtor.prototype;
+    ctor.prototype = new Obj();
+};
+
+/**
+ * Merge the objects passed as parameters into a new one.
+ * @private
+ * @param {...Object} var_args All objects to merge.
+ * @return {Object} a new object with the data of the others.
+ */
+exports.extend = function() {
+    var result = {}, i, attr;
+    for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers
+        for (attr in arguments[i]) {
+            if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") {
+                result[attr] = arguments[i][attr];
+            }
+        }
+    }
+    return result;
+};
+
+/**
+ * Transform arbitrary content into a Promise.
+ * @param {String} name a name for the content being processed.
+ * @param {Object} inputData the content to process.
+ * @param {Boolean} isBinary true if the content is not an unicode string
+ * @param {Boolean} isOptimizedBinaryString true if the string content only has one byte per character.
+ * @param {Boolean} isBase64 true if the string content is encoded with base64.
+ * @return {Promise} a promise in a format usable by JSZip.
+ */
+exports.prepareContent = function(name, inputData, isBinary, isOptimizedBinaryString, isBase64) {
+
+    // if inputData is already a promise, this flatten it.
+    var promise = external.Promise.resolve(inputData).then(function(data) {
+        
+        
+        var isBlob = support.blob && (data instanceof Blob || ['[object File]', '[object Blob]'].indexOf(Object.prototype.toString.call(data)) !== -1);
+
+        if (isBlob && typeof FileReader !== "undefined") {
+            return new external.Promise(function (resolve, reject) {
+                var reader = new FileReader();
+
+                reader.onload = function(e) {
+                    resolve(e.target.result);
+                };
+                reader.onerror = function(e) {
+                    reject(e.target.error);
+                };
+                reader.readAsArrayBuffer(data);
+            });
+        } else {
+            return data;
+        }
+    });
+
+    return promise.then(function(data) {
+        var dataType = exports.getTypeOf(data);
+
+        if (!dataType) {
+            return external.Promise.reject(
+                new Error("Can't read the data of '" + name + "'. Is it " +
+                          "in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?")
+            );
+        }
+        // special case : it's way easier to work with Uint8Array than with ArrayBuffer
+        if (dataType === "arraybuffer") {
+            data = exports.transformTo("uint8array", data);
+        } else if (dataType === "string") {
+            if (isBase64) {
+                data = base64.decode(data);
+            }
+            else if (isBinary) {
+                // optimizedBinaryString === true means that the file has already been filtered with a 0xFF mask
+                if (isOptimizedBinaryString !== true) {
+                    // this is a string, not in a base64 format.
+                    // Be sure that this is a correct "binary string"
+                    data = string2binary(data);
+                }
+            }
+        }
+        return data;
+    });
+};
+
+},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(require,module,exports){
+'use strict';
+var readerFor = require('./reader/readerFor');
+var utils = require('./utils');
+var sig = require('./signature');
+var ZipEntry = require('./zipEntry');
+var utf8 = require('./utf8');
+var support = require('./support');
+//  class ZipEntries {{{
+/**
+ * All the entries in the zip file.
+ * @constructor
+ * @param {Object} loadOptions Options for loading the stream.
+ */
+function ZipEntries(loadOptions) {
+    this.files = [];
+    this.loadOptions = loadOptions;
+}
+ZipEntries.prototype = {
+    /**
+     * Check that the reader is on the specified signature.
+     * @param {string} expectedSignature the expected signature.
+     * @throws {Error} if it is an other signature.
+     */
+    checkSignature: function(expectedSignature) {
+        if (!this.reader.readAndCheckSignature(expectedSignature)) {
+            this.reader.index -= 4;
+            var signature = this.reader.readString(4);
+            throw new Error("Corrupted zip or bug: unexpected signature " + "(" + utils.pretty(signature) + ", expected " + utils.pretty(expectedSignature) + ")");
+        }
+    },
+    /**
+     * Check if the given signature is at the given index.
+     * @param {number} askedIndex the index to check.
+     * @param {string} expectedSignature the signature to expect.
+     * @return {boolean} true if the signature is here, false otherwise.
+     */
+    isSignature: function(askedIndex, expectedSignature) {
+        var currentIndex = this.reader.index;
+        this.reader.setIndex(askedIndex);
+        var signature = this.reader.readString(4);
+        var result = signature === expectedSignature;
+        this.reader.setIndex(currentIndex);
+        return result;
+    },
+    /**
+     * Read the end of the central directory.
+     */
+    readBlockEndOfCentral: function() {
+        this.diskNumber = this.reader.readInt(2);
+        this.diskWithCentralDirStart = this.reader.readInt(2);
+        this.centralDirRecordsOnThisDisk = this.reader.readInt(2);
+        this.centralDirRecords = this.reader.readInt(2);
+        this.centralDirSize = this.reader.readInt(4);
+        this.centralDirOffset = this.reader.readInt(4);
+
+        this.zipCommentLength = this.reader.readInt(2);
+        // warning : the encoding depends of the system locale
+        // On a linux machine with LANG=en_US.utf8, this field is utf8 encoded.
+        // On a windows machine, this field is encoded with the localized windows code page.
+        var zipComment = this.reader.readData(this.zipCommentLength);
+        var decodeParamType = support.uint8array ? "uint8array" : "array";
+        // To get consistent behavior with the generation part, we will assume that
+        // this is utf8 encoded unless specified otherwise.
+        var decodeContent = utils.transformTo(decodeParamType, zipComment);
+        this.zipComment = this.loadOptions.decodeFileName(decodeContent);
+    },
+    /**
+     * Read the end of the Zip 64 central directory.
+     * Not merged with the method readEndOfCentral :
+     * The end of central can coexist with its Zip64 brother,
+     * I don't want to read the wrong number of bytes !
+     */
+    readBlockZip64EndOfCentral: function() {
+        this.zip64EndOfCentralSize = this.reader.readInt(8);
+        this.reader.skip(4);
+        // this.versionMadeBy = this.reader.readString(2);
+        // this.versionNeeded = this.reader.readInt(2);
+        this.diskNumber = this.reader.readInt(4);
+        this.diskWithCentralDirStart = this.reader.readInt(4);
+        this.centralDirRecordsOnThisDisk = this.reader.readInt(8);
+        this.centralDirRecords = this.reader.readInt(8);
+        this.centralDirSize = this.reader.readInt(8);
+        this.centralDirOffset = this.reader.readInt(8);
+
+        this.zip64ExtensibleData = {};
+        var extraDataSize = this.zip64EndOfCentralSize - 44,
+            index = 0,
+            extraFieldId,
+            extraFieldLength,
+            extraFieldValue;
+        while (index < extraDataSize) {
+            extraFieldId = this.reader.readInt(2);
+            extraFieldLength = this.reader.readInt(4);
+            extraFieldValue = this.reader.readData(extraFieldLength);
+            this.zip64ExtensibleData[extraFieldId] = {
+                id: extraFieldId,
+                length: extraFieldLength,
+                value: extraFieldValue
+            };
+        }
+    },
+    /**
+     * Read the end of the Zip 64 central directory locator.
+     */
+    readBlockZip64EndOfCentralLocator: function() {
+        this.diskWithZip64CentralDirStart = this.reader.readInt(4);
+        this.relativeOffsetEndOfZip64CentralDir = this.reader.readInt(8);
+        this.disksCount = this.reader.readInt(4);
+        if (this.disksCount > 1) {
+            throw new Error("Multi-volumes zip are not supported");
+        }
+    },
+    /**
+     * Read the local files, based on the offset read in the central part.
+     */
+    readLocalFiles: function() {
+        var i, file;
+        for (i = 0; i < this.files.length; i++) {
+            file = this.files[i];
+            this.reader.setIndex(file.localHeaderOffset);
+            this.checkSignature(sig.LOCAL_FILE_HEADER);
+            file.readLocalPart(this.reader);
+            file.handleUTF8();
+            file.processAttributes();
+        }
+    },
+    /**
+     * Read the central directory.
+     */
+    readCentralDir: function() {
+        var file;
+
+        this.reader.setIndex(this.centralDirOffset);
+        while (this.reader.readAndCheckSignature(sig.CENTRAL_FILE_HEADER)) {
+            file = new ZipEntry({
+                zip64: this.zip64
+            }, this.loadOptions);
+            file.readCentralPart(this.reader);
+            this.files.push(file);
+        }
+
+        if (this.centralDirRecords !== this.files.length) {
+            if (this.centralDirRecords !== 0 && this.files.length === 0) {
+                // We expected some records but couldn't find ANY.
+                // This is really suspicious, as if something went wrong.
+                throw new Error("Corrupted zip or bug: expected " + this.centralDirRecords + " records in central dir, got " + this.files.length);
+            } else {
+                // We found some records but not all.
+                // Something is wrong but we got something for the user: no error here.
+                // console.warn("expected", this.centralDirRecords, "records in central dir, got", this.files.length);
+            }
+        }
+    },
+    /**
+     * Read the end of central directory.
+     */
+    readEndOfCentral: function() {
+        var offset = this.reader.lastIndexOfSignature(sig.CENTRAL_DIRECTORY_END);
+        if (offset < 0) {
+            // Check if the content is a truncated zip or complete garbage.
+            // A "LOCAL_FILE_HEADER" is not required at the beginning (auto
+            // extractible zip for example) but it can give a good hint.
+            // If an ajax request was used without responseType, we will also
+            // get unreadable data.
+            var isGarbage = !this.isSignature(0, sig.LOCAL_FILE_HEADER);
+
+            if (isGarbage) {
+                throw new Error("Can't find end of central directory : is this a zip file ? " +
+                                "If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html");
+            } else {
+                throw new Error("Corrupted zip: can't find end of central directory");
+            }
+
+        }
+        this.reader.setIndex(offset);
+        var endOfCentralDirOffset = offset;
+        this.checkSignature(sig.CENTRAL_DIRECTORY_END);
+        this.readBlockEndOfCentral();
+
+
+        /* extract from the zip spec :
+            4)  If one of the fields in the end of central directory
+                record is too small to hold required data, the field
+                should be set to -1 (0xFFFF or 0xFFFFFFFF) and the
+                ZIP64 format record should be created.
+            5)  The end of central directory record and the
+                Zip64 end of central directory locator record must
+                reside on the same disk when splitting or spanning
+                an archive.
+         */
+        if (this.diskNumber === utils.MAX_VALUE_16BITS || this.diskWithCentralDirStart === utils.MAX_VALUE_16BITS || this.centralDirRecordsOnThisDisk === utils.MAX_VALUE_16BITS || this.centralDirRecords === utils.MAX_VALUE_16BITS || this.centralDirSize === utils.MAX_VALUE_32BITS || this.centralDirOffset === utils.MAX_VALUE_32BITS) {
+            this.zip64 = true;
+
+            /*
+            Warning : the zip64 extension is supported, but ONLY if the 64bits integer read from
+            the zip file can fit into a 32bits integer. This cannot be solved : JavaScript represents
+            all numbers as 64-bit double precision IEEE 754 floating point numbers.
+            So, we have 53bits for integers and bitwise operations treat everything as 32bits.
+            see https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Bitwise_Operators
+            and http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf section 8.5
+            */
+
+            // should look for a zip64 EOCD locator
+            offset = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
+            if (offset < 0) {
+                throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");
+            }
+            this.reader.setIndex(offset);
+            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_LOCATOR);
+            this.readBlockZip64EndOfCentralLocator();
+
+            // now the zip64 EOCD record
+            if (!this.isSignature(this.relativeOffsetEndOfZip64CentralDir, sig.ZIP64_CENTRAL_DIRECTORY_END)) {
+                // console.warn("ZIP64 end of central directory not where expected.");
+                this.relativeOffsetEndOfZip64CentralDir = this.reader.lastIndexOfSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
+                if (this.relativeOffsetEndOfZip64CentralDir < 0) {
+                    throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");
+                }
+            }
+            this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir);
+            this.checkSignature(sig.ZIP64_CENTRAL_DIRECTORY_END);
+            this.readBlockZip64EndOfCentral();
+        }
+
+        var expectedEndOfCentralDirOffset = this.centralDirOffset + this.centralDirSize;
+        if (this.zip64) {
+            expectedEndOfCentralDirOffset += 20; // end of central dir 64 locator
+            expectedEndOfCentralDirOffset += 12 /* should not include the leading 12 bytes */ + this.zip64EndOfCentralSize;
+        }
+
+        var extraBytes = endOfCentralDirOffset - expectedEndOfCentralDirOffset;
+
+        if (extraBytes > 0) {
+            // console.warn(extraBytes, "extra bytes at beginning or within zipfile");
+            if (this.isSignature(endOfCentralDirOffset, sig.CENTRAL_FILE_HEADER)) {
+                // The offsets seem wrong, but we have something at the specified offset.
+                // So… we keep it.
+            } else {
+                // the offset is wrong, update the "zero" of the reader
+                // this happens if data has been prepended (crx files for example)
+                this.reader.zero = extraBytes;
+            }
+        } else if (extraBytes < 0) {
+            throw new Error("Corrupted zip: missing " + Math.abs(extraBytes) + " bytes.");
+        }
+    },
+    prepareReader: function(data) {
+        this.reader = readerFor(data);
+    },
+    /**
+     * Read a zip file and create ZipEntries.
+     * @param {String|ArrayBuffer|Uint8Array|Buffer} data the binary string representing a zip file.
+     */
+    load: function(data) {
+        this.prepareReader(data);
+        this.readEndOfCentral();
+        this.readCentralDir();
+        this.readLocalFiles();
+    }
+};
+// }}} end of ZipEntries
+module.exports = ZipEntries;
+
+},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(require,module,exports){
+'use strict';
+var readerFor = require('./reader/readerFor');
+var utils = require('./utils');
+var CompressedObject = require('./compressedObject');
+var crc32fn = require('./crc32');
+var utf8 = require('./utf8');
+var compressions = require('./compressions');
+var support = require('./support');
+
+var MADE_BY_DOS = 0x00;
+var MADE_BY_UNIX = 0x03;
+
+/**
+ * Find a compression registered in JSZip.
+ * @param {string} compressionMethod the method magic to find.
+ * @return {Object|null} the JSZip compression object, null if none found.
+ */
+var findCompression = function(compressionMethod) {
+    for (var method in compressions) {
+        if (!compressions.hasOwnProperty(method)) {
+            continue;
+        }
+        if (compressions[method].magic === compressionMethod) {
+            return compressions[method];
+        }
+    }
+    return null;
+};
+
+// class ZipEntry {{{
+/**
+ * An entry in the zip file.
+ * @constructor
+ * @param {Object} options Options of the current file.
+ * @param {Object} loadOptions Options for loading the stream.
+ */
+function ZipEntry(options, loadOptions) {
+    this.options = options;
+    this.loadOptions = loadOptions;
+}
+ZipEntry.prototype = {
+    /**
+     * say if the file is encrypted.
+     * @return {boolean} true if the file is encrypted, false otherwise.
+     */
+    isEncrypted: function() {
+        // bit 1 is set
+        return (this.bitFlag & 0x0001) === 0x0001;
+    },
+    /**
+     * say if the file has utf-8 filename/comment.
+     * @return {boolean} true if the filename/comment is in utf-8, false otherwise.
+     */
+    useUTF8: function() {
+        // bit 11 is set
+        return (this.bitFlag & 0x0800) === 0x0800;
+    },
+    /**
+     * Read the local part of a zip file and add the info in this object.
+     * @param {DataReader} reader the reader to use.
+     */
+    readLocalPart: function(reader) {
+        var compression, localExtraFieldsLength;
+
+        // we already know everything from the central dir !
+        // If the central dir data are false, we are doomed.
+        // On the bright side, the local part is scary  : zip64, data descriptors, both, etc.
+        // The less data we get here, the more reliable this should be.
+        // Let's skip the whole header and dash to the data !
+        reader.skip(22);
+        // in some zip created on windows, the filename stored in the central dir contains \ instead of /.
+        // Strangely, the filename here is OK.
+        // I would love to treat these zip files as corrupted (see http://www.info-zip.org/FAQ.html#backslashes
+        // or APPNOTE#4.4.17.1, "All slashes MUST be forward slashes '/'") but there are a lot of bad zip generators...
+        // Search "unzip mismatching "local" filename continuing with "central" filename version" on
+        // the internet.
+        //
+        // I think I see the logic here : the central directory is used to display
+        // content and the local directory is used to extract the files. Mixing / and \
+        // may be used to display \ to windows users and use / when extracting the files.
+        // Unfortunately, this lead also to some issues : http://seclists.org/fulldisclosure/2009/Sep/394
+        this.fileNameLength = reader.readInt(2);
+        localExtraFieldsLength = reader.readInt(2); // can't be sure this will be the same as the central dir
+        // the fileName is stored as binary data, the handleUTF8 method will take care of the encoding.
+        this.fileName = reader.readData(this.fileNameLength);
+        reader.skip(localExtraFieldsLength);
+
+        if (this.compressedSize === -1 || this.uncompressedSize === -1) {
+            throw new Error("Bug or corrupted zip : didn't get enough information from the central directory " + "(compressedSize === -1 || uncompressedSize === -1)");
+        }
+
+        compression = findCompression(this.compressionMethod);
+        if (compression === null) { // no compression found
+            throw new Error("Corrupted zip : compression " + utils.pretty(this.compressionMethod) + " unknown (inner file : " + utils.transformTo("string", this.fileName) + ")");
+        }
+        this.decompressed = new CompressedObject(this.compressedSize, this.uncompressedSize, this.crc32, compression, reader.readData(this.compressedSize));
+    },
+
+    /**
+     * Read the central part of a zip file and add the info in this object.
+     * @param {DataReader} reader the reader to use.
+     */
+    readCentralPart: function(reader) {
+        this.versionMadeBy = reader.readInt(2);
+        reader.skip(2);
+        // this.versionNeeded = reader.readInt(2);
+        this.bitFlag = reader.readInt(2);
+        this.compressionMethod = reader.readString(2);
+        this.date = reader.readDate();
+        this.crc32 = reader.readInt(4);
+        this.compressedSize = reader.readInt(4);
+        this.uncompressedSize = reader.readInt(4);
+        var fileNameLength = reader.readInt(2);
+        this.extraFieldsLength = reader.readInt(2);
+        this.fileCommentLength = reader.readInt(2);
+        this.diskNumberStart = reader.readInt(2);
+        this.internalFileAttributes = reader.readInt(2);
+        this.externalFileAttributes = reader.readInt(4);
+        this.localHeaderOffset = reader.readInt(4);
+
+        if (this.isEncrypted()) {
+            throw new Error("Encrypted zip are not supported");
+        }
+
+        // will be read in the local part, see the comments there
+        reader.skip(fileNameLength);
+        this.readExtraFields(reader);
+        this.parseZIP64ExtraField(reader);
+        this.fileComment = reader.readData(this.fileCommentLength);
+    },
+
+    /**
+     * Parse the external file attributes and get the unix/dos permissions.
+     */
+    processAttributes: function () {
+        this.unixPermissions = null;
+        this.dosPermissions = null;
+        var madeBy = this.versionMadeBy >> 8;
+
+        // Check if we have the DOS directory flag set.
+        // We look for it in the DOS and UNIX permissions
+        // but some unknown platform could set it as a compatibility flag.
+        this.dir = this.externalFileAttributes & 0x0010 ? true : false;
+
+        if(madeBy === MADE_BY_DOS) {
+            // first 6 bits (0 to 5)
+            this.dosPermissions = this.externalFileAttributes & 0x3F;
+        }
+
+        if(madeBy === MADE_BY_UNIX) {
+            this.unixPermissions = (this.externalFileAttributes >> 16) & 0xFFFF;
+            // the octal permissions are in (this.unixPermissions & 0x01FF).toString(8);
+        }
+
+        // fail safe : if the name ends with a / it probably means a folder
+        if (!this.dir && this.fileNameStr.slice(-1) === '/') {
+            this.dir = true;
+        }
+    },
+
+    /**
+     * Parse the ZIP64 extra field and merge the info in the current ZipEntry.
+     * @param {DataReader} reader the reader to use.
+     */
+    parseZIP64ExtraField: function(reader) {
+
+        if (!this.extraFields[0x0001]) {
+            return;
+        }
+
+        // should be something, preparing the extra reader
+        var extraReader = readerFor(this.extraFields[0x0001].value);
+
+        // I really hope that these 64bits integer can fit in 32 bits integer, because js
+        // won't let us have more.
+        if (this.uncompressedSize === utils.MAX_VALUE_32BITS) {
+            this.uncompressedSize = extraReader.readInt(8);
+        }
+        if (this.compressedSize === utils.MAX_VALUE_32BITS) {
+            this.compressedSize = extraReader.readInt(8);
+        }
+        if (this.localHeaderOffset === utils.MAX_VALUE_32BITS) {
+            this.localHeaderOffset = extraReader.readInt(8);
+        }
+        if (this.diskNumberStart === utils.MAX_VALUE_32BITS) {
+            this.diskNumberStart = extraReader.readInt(4);
+        }
+    },
+    /**
+     * Read the central part of a zip file and add the info in this object.
+     * @param {DataReader} reader the reader to use.
+     */
+    readExtraFields: function(reader) {
+        var end = reader.index + this.extraFieldsLength,
+            extraFieldId,
+            extraFieldLength,
+            extraFieldValue;
+
+        if (!this.extraFields) {
+            this.extraFields = {};
+        }
+
+        while (reader.index + 4 < end) {
+            extraFieldId = reader.readInt(2);
+            extraFieldLength = reader.readInt(2);
+            extraFieldValue = reader.readData(extraFieldLength);
+
+            this.extraFields[extraFieldId] = {
+                id: extraFieldId,
+                length: extraFieldLength,
+                value: extraFieldValue
+            };
+        }
+
+        reader.setIndex(end);
+    },
+    /**
+     * Apply an UTF8 transformation if needed.
+     */
+    handleUTF8: function() {
+        var decodeParamType = support.uint8array ? "uint8array" : "array";
+        if (this.useUTF8()) {
+            this.fileNameStr = utf8.utf8decode(this.fileName);
+            this.fileCommentStr = utf8.utf8decode(this.fileComment);
+        } else {
+            var upath = this.findExtraFieldUnicodePath();
+            if (upath !== null) {
+                this.fileNameStr = upath;
+            } else {
+                // ASCII text or unsupported code page
+                var fileNameByteArray =  utils.transformTo(decodeParamType, this.fileName);
+                this.fileNameStr = this.loadOptions.decodeFileName(fileNameByteArray);
+            }
+
+            var ucomment = this.findExtraFieldUnicodeComment();
+            if (ucomment !== null) {
+                this.fileCommentStr = ucomment;
+            } else {
+                // ASCII text or unsupported code page
+                var commentByteArray =  utils.transformTo(decodeParamType, this.fileComment);
+                this.fileCommentStr = this.loadOptions.decodeFileName(commentByteArray);
+            }
+        }
+    },
+
+    /**
+     * Find the unicode path declared in the extra field, if any.
+     * @return {String} the unicode path, null otherwise.
+     */
+    findExtraFieldUnicodePath: function() {
+        var upathField = this.extraFields[0x7075];
+        if (upathField) {
+            var extraReader = readerFor(upathField.value);
+
+            // wrong version
+            if (extraReader.readInt(1) !== 1) {
+                return null;
+            }
+
+            // the crc of the filename changed, this field is out of date.
+            if (crc32fn(this.fileName) !== extraReader.readInt(4)) {
+                return null;
+            }
+
+            return utf8.utf8decode(extraReader.readData(upathField.length - 5));
+        }
+        return null;
+    },
+
+    /**
+     * Find the unicode comment declared in the extra field, if any.
+     * @return {String} the unicode comment, null otherwise.
+     */
+    findExtraFieldUnicodeComment: function() {
+        var ucommentField = this.extraFields[0x6375];
+        if (ucommentField) {
+            var extraReader = readerFor(ucommentField.value);
+
+            // wrong version
+            if (extraReader.readInt(1) !== 1) {
+                return null;
+            }
+
+            // the crc of the comment changed, this field is out of date.
+            if (crc32fn(this.fileComment) !== extraReader.readInt(4)) {
+                return null;
+            }
+
+            return utf8.utf8decode(extraReader.readData(ucommentField.length - 5));
+        }
+        return null;
+    }
+};
+module.exports = ZipEntry;
+
+},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(require,module,exports){
+'use strict';
+
+var StreamHelper = require('./stream/StreamHelper');
+var DataWorker = require('./stream/DataWorker');
+var utf8 = require('./utf8');
+var CompressedObject = require('./compressedObject');
+var GenericWorker = require('./stream/GenericWorker');
+
+/**
+ * A simple object representing a file in the zip file.
+ * @constructor
+ * @param {string} name the name of the file
+ * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data
+ * @param {Object} options the options of the file
+ */
+var ZipObject = function(name, data, options) {
+    this.name = name;
+    this.dir = options.dir;
+    this.date = options.date;
+    this.comment = options.comment;
+    this.unixPermissions = options.unixPermissions;
+    this.dosPermissions = options.dosPermissions;
+
+    this._data = data;
+    this._dataBinary = options.binary;
+    // keep only the compression
+    this.options = {
+        compression : options.compression,
+        compressionOptions : options.compressionOptions
+    };
+};
+
+ZipObject.prototype = {
+    /**
+     * Create an internal stream for the content of this object.
+     * @param {String} type the type of each chunk.
+     * @return StreamHelper the stream.
+     */
+    internalStream: function (type) {
+        var result = null, outputType = "string";
+        try {
+            if (!type) {
+                throw new Error("No output type specified.");
+            }
+            outputType = type.toLowerCase();
+            var askUnicodeString = outputType === "string" || outputType === "text";
+            if (outputType === "binarystring" || outputType === "text") {
+                outputType = "string";
+            }
+            result = this._decompressWorker();
+
+            var isUnicodeString = !this._dataBinary;
+
+            if (isUnicodeString && !askUnicodeString) {
+                result = result.pipe(new utf8.Utf8EncodeWorker());
+            }
+            if (!isUnicodeString && askUnicodeString) {
+                result = result.pipe(new utf8.Utf8DecodeWorker());
+            }
+        } catch (e) {
+            result = new GenericWorker("error");
+            result.error(e);
+        }
+
+        return new StreamHelper(result, outputType, "");
+    },
+
+    /**
+     * Prepare the content in the asked type.
+     * @param {String} type the type of the result.
+     * @param {Function} onUpdate a function to call on each internal update.
+     * @return Promise the promise of the result.
+     */
+    async: function (type, onUpdate) {
+        return this.internalStream(type).accumulate(onUpdate);
+    },
+
+    /**
+     * Prepare the content as a nodejs stream.
+     * @param {String} type the type of each chunk.
+     * @param {Function} onUpdate a function to call on each internal update.
+     * @return Stream the stream.
+     */
+    nodeStream: function (type, onUpdate) {
+        return this.internalStream(type || "nodebuffer").toNodejsStream(onUpdate);
+    },
+
+    /**
+     * Return a worker for the compressed content.
+     * @private
+     * @param {Object} compression the compression object to use.
+     * @param {Object} compressionOptions the options to use when compressing.
+     * @return Worker the worker.
+     */
+    _compressWorker: function (compression, compressionOptions) {
+        if (
+            this._data instanceof CompressedObject &&
+            this._data.compression.magic === compression.magic
+        ) {
+            return this._data.getCompressedWorker();
+        } else {
+            var result = this._decompressWorker();
+            if(!this._dataBinary) {
+                result = result.pipe(new utf8.Utf8EncodeWorker());
+            }
+            return CompressedObject.createWorkerFrom(result, compression, compressionOptions);
+        }
+    },
+    /**
+     * Return a worker for the decompressed content.
+     * @private
+     * @return Worker the worker.
+     */
+    _decompressWorker : function () {
+        if (this._data instanceof CompressedObject) {
+            return this._data.getContentWorker();
+        } else if (this._data instanceof GenericWorker) {
+            return this._data;
+        } else {
+            return new DataWorker(this._data);
+        }
+    }
+};
+
+var removedMethods = ["asText", "asBinary", "asNodeBuffer", "asUint8Array", "asArrayBuffer"];
+var removedFn = function () {
+    throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.");
+};
+
+for(var i = 0; i < removedMethods.length; i++) {
+    ZipObject.prototype[removedMethods[i]] = removedFn;
+}
+module.exports = ZipObject;
+
+},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(require,module,exports){
+(function (global){
+'use strict';
+var Mutation = global.MutationObserver || global.WebKitMutationObserver;
+
+var scheduleDrain;
+
+{
+  if (Mutation) {
+    var called = 0;
+    var observer = new Mutation(nextTick);
+    var element = global.document.createTextNode('');
+    observer.observe(element, {
+      characterData: true
+    });
+    scheduleDrain = function () {
+      element.data = (called = ++called % 2);
+    };
+  } else if (!global.setImmediate && typeof global.MessageChannel !== 'undefined') {
+    var channel = new global.MessageChannel();
+    channel.port1.onmessage = nextTick;
+    scheduleDrain = function () {
+      channel.port2.postMessage(0);
+    };
+  } else if ('document' in global && 'onreadystatechange' in global.document.createElement('script')) {
+    scheduleDrain = function () {
+
+      // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted
+      // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.
+      var scriptEl = global.document.createElement('script');
+      scriptEl.onreadystatechange = function () {
+        nextTick();
+
+        scriptEl.onreadystatechange = null;
+        scriptEl.parentNode.removeChild(scriptEl);
+        scriptEl = null;
+      };
+      global.document.documentElement.appendChild(scriptEl);
+    };
+  } else {
+    scheduleDrain = function () {
+      setTimeout(nextTick, 0);
+    };
+  }
+}
+
+var draining;
+var queue = [];
+//named nextTick for less confusing stack traces
+function nextTick() {
+  draining = true;
+  var i, oldQueue;
+  var len = queue.length;
+  while (len) {
+    oldQueue = queue;
+    queue = [];
+    i = -1;
+    while (++i < len) {
+      oldQueue[i]();
+    }
+    len = queue.length;
+  }
+  draining = false;
+}
+
+module.exports = immediate;
+function immediate(task) {
+  if (queue.push(task) === 1 && !draining) {
+    scheduleDrain();
+  }
+}
+
+}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
+},{}],37:[function(require,module,exports){
+'use strict';
+var immediate = require('immediate');
+
+/* istanbul ignore next */
+function INTERNAL() {}
+
+var handlers = {};
+
+var REJECTED = ['REJECTED'];
+var FULFILLED = ['FULFILLED'];
+var PENDING = ['PENDING'];
+
+module.exports = Promise;
+
+function Promise(resolver) {
+  if (typeof resolver !== 'function') {
+    throw new TypeError('resolver must be a function');
+  }
+  this.state = PENDING;
+  this.queue = [];
+  this.outcome = void 0;
+  if (resolver !== INTERNAL) {
+    safelyResolveThenable(this, resolver);
+  }
+}
+
+Promise.prototype["finally"] = function (callback) {
+  if (typeof callback !== 'function') {
+    return this;
+  }
+  var p = this.constructor;
+  return this.then(resolve, reject);
+
+  function resolve(value) {
+    function yes () {
+      return value;
+    }
+    return p.resolve(callback()).then(yes);
+  }
+  function reject(reason) {
+    function no () {
+      throw reason;
+    }
+    return p.resolve(callback()).then(no);
+  }
+};
+Promise.prototype["catch"] = function (onRejected) {
+  return this.then(null, onRejected);
+};
+Promise.prototype.then = function (onFulfilled, onRejected) {
+  if (typeof onFulfilled !== 'function' && this.state === FULFILLED ||
+    typeof onRejected !== 'function' && this.state === REJECTED) {
+    return this;
+  }
+  var promise = new this.constructor(INTERNAL);
+  if (this.state !== PENDING) {
+    var resolver = this.state === FULFILLED ? onFulfilled : onRejected;
+    unwrap(promise, resolver, this.outcome);
+  } else {
+    this.queue.push(new QueueItem(promise, onFulfilled, onRejected));
+  }
+
+  return promise;
+};
+function QueueItem(promise, onFulfilled, onRejected) {
+  this.promise = promise;
+  if (typeof onFulfilled === 'function') {
+    this.onFulfilled = onFulfilled;
+    this.callFulfilled = this.otherCallFulfilled;
+  }
+  if (typeof onRejected === 'function') {
+    this.onRejected = onRejected;
+    this.callRejected = this.otherCallRejected;
+  }
+}
+QueueItem.prototype.callFulfilled = function (value) {
+  handlers.resolve(this.promise, value);
+};
+QueueItem.prototype.otherCallFulfilled = function (value) {
+  unwrap(this.promise, this.onFulfilled, value);
+};
+QueueItem.prototype.callRejected = function (value) {
+  handlers.reject(this.promise, value);
+};
+QueueItem.prototype.otherCallRejected = function (value) {
+  unwrap(this.promise, this.onRejected, value);
+};
+
+function unwrap(promise, func, value) {
+  immediate(function () {
+    var returnValue;
+    try {
+      returnValue = func(value);
+    } catch (e) {
+      return handlers.reject(promise, e);
+    }
+    if (returnValue === promise) {
+      handlers.reject(promise, new TypeError('Cannot resolve promise with itself'));
+    } else {
+      handlers.resolve(promise, returnValue);
+    }
+  });
+}
+
+handlers.resolve = function (self, value) {
+  var result = tryCatch(getThen, value);
+  if (result.status === 'error') {
+    return handlers.reject(self, result.value);
+  }
+  var thenable = result.value;
+
+  if (thenable) {
+    safelyResolveThenable(self, thenable);
+  } else {
+    self.state = FULFILLED;
+    self.outcome = value;
+    var i = -1;
+    var len = self.queue.length;
+    while (++i < len) {
+      self.queue[i].callFulfilled(value);
+    }
+  }
+  return self;
+};
+handlers.reject = function (self, error) {
+  self.state = REJECTED;
+  self.outcome = error;
+  var i = -1;
+  var len = self.queue.length;
+  while (++i < len) {
+    self.queue[i].callRejected(error);
+  }
+  return self;
+};
+
+function getThen(obj) {
+  // Make sure we only access the accessor once as required by the spec
+  var then = obj && obj.then;
+  if (obj && (typeof obj === 'object' || typeof obj === 'function') && typeof then === 'function') {
+    return function appyThen() {
+      then.apply(obj, arguments);
+    };
+  }
+}
+
+function safelyResolveThenable(self, thenable) {
+  // Either fulfill, reject or reject with error
+  var called = false;
+  function onError(value) {
+    if (called) {
+      return;
+    }
+    called = true;
+    handlers.reject(self, value);
+  }
+
+  function onSuccess(value) {
+    if (called) {
+      return;
+    }
+    called = true;
+    handlers.resolve(self, value);
+  }
+
+  function tryToUnwrap() {
+    thenable(onSuccess, onError);
+  }
+
+  var result = tryCatch(tryToUnwrap);
+  if (result.status === 'error') {
+    onError(result.value);
+  }
+}
+
+function tryCatch(func, value) {
+  var out = {};
+  try {
+    out.value = func(value);
+    out.status = 'success';
+  } catch (e) {
+    out.status = 'error';
+    out.value = e;
+  }
+  return out;
+}
+
+Promise.resolve = resolve;
+function resolve(value) {
+  if (value instanceof this) {
+    return value;
+  }
+  return handlers.resolve(new this(INTERNAL), value);
+}
+
+Promise.reject = reject;
+function reject(reason) {
+  var promise = new this(INTERNAL);
+  return handlers.reject(promise, reason);
+}
+
+Promise.all = all;
+function all(iterable) {
+  var self = this;
+  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
+    return this.reject(new TypeError('must be an array'));
+  }
+
+  var len = iterable.length;
+  var called = false;
+  if (!len) {
+    return this.resolve([]);
+  }
+
+  var values = new Array(len);
+  var resolved = 0;
+  var i = -1;
+  var promise = new this(INTERNAL);
+
+  while (++i < len) {
+    allResolver(iterable[i], i);
+  }
+  return promise;
+  function allResolver(value, i) {
+    self.resolve(value).then(resolveFromAll, function (error) {
+      if (!called) {
+        called = true;
+        handlers.reject(promise, error);
+      }
+    });
+    function resolveFromAll(outValue) {
+      values[i] = outValue;
+      if (++resolved === len && !called) {
+        called = true;
+        handlers.resolve(promise, values);
+      }
+    }
+  }
+}
+
+Promise.race = race;
+function race(iterable) {
+  var self = this;
+  if (Object.prototype.toString.call(iterable) !== '[object Array]') {
+    return this.reject(new TypeError('must be an array'));
+  }
+
+  var len = iterable.length;
+  var called = false;
+  if (!len) {
+    return this.resolve([]);
+  }
+
+  var i = -1;
+  var promise = new this(INTERNAL);
+
+  while (++i < len) {
+    resolver(iterable[i]);
+  }
+  return promise;
+  function resolver(value) {
+    self.resolve(value).then(function (response) {
+      if (!called) {
+        called = true;
+        handlers.resolve(promise, response);
+      }
+    }, function (error) {
+      if (!called) {
+        called = true;
+        handlers.reject(promise, error);
+      }
+    });
+  }
+}
+
+},{"immediate":36}],38:[function(require,module,exports){
+// Top level file is just a mixin of submodules & constants
+'use strict';
+
+var assign    = require('./lib/utils/common').assign;
+
+var deflate   = require('./lib/deflate');
+var inflate   = require('./lib/inflate');
+var constants = require('./lib/zlib/constants');
+
+var pako = {};
+
+assign(pako, deflate, inflate, constants);
+
+module.exports = pako;
+
+},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(require,module,exports){
+'use strict';
+
+
+var zlib_deflate = require('./zlib/deflate');
+var utils        = require('./utils/common');
+var strings      = require('./utils/strings');
+var msg          = require('./zlib/messages');
+var ZStream      = require('./zlib/zstream');
+
+var toString = Object.prototype.toString;
+
+/* Public constants ==========================================================*/
+/* ===========================================================================*/
+
+var Z_NO_FLUSH      = 0;
+var Z_FINISH        = 4;
+
+var Z_OK            = 0;
+var Z_STREAM_END    = 1;
+var Z_SYNC_FLUSH    = 2;
+
+var Z_DEFAULT_COMPRESSION = -1;
+
+var Z_DEFAULT_STRATEGY    = 0;
+
+var Z_DEFLATED  = 8;
+
+/* ===========================================================================*/
+
+
+/**
+ * class Deflate
+ *
+ * Generic JS-style wrapper for zlib calls. If you don't need
+ * streaming behaviour - use more simple functions: [[deflate]],
+ * [[deflateRaw]] and [[gzip]].
+ **/
+
+/* internal
+ * Deflate.chunks -> Array
+ *
+ * Chunks of output data, if [[Deflate#onData]] not overriden.
+ **/
+
+/**
+ * Deflate.result -> Uint8Array|Array
+ *
+ * Compressed result, generated by default [[Deflate#onData]]
+ * and [[Deflate#onEnd]] handlers. Filled after you push last chunk
+ * (call [[Deflate#push]] with `Z_FINISH` / `true` param)  or if you
+ * push a chunk with explicit flush (call [[Deflate#push]] with
+ * `Z_SYNC_FLUSH` param).
+ **/
+
+/**
+ * Deflate.err -> Number
+ *
+ * Error code after deflate finished. 0 (Z_OK) on success.
+ * You will not need it in real life, because deflate errors
+ * are possible only on wrong options or bad `onData` / `onEnd`
+ * custom handlers.
+ **/
+
+/**
+ * Deflate.msg -> String
+ *
+ * Error message, if [[Deflate.err]] != 0
+ **/
+
+
+/**
+ * new Deflate(options)
+ * - options (Object): zlib deflate options.
+ *
+ * Creates new deflator instance with specified params. Throws exception
+ * on bad params. Supported options:
+ *
+ * - `level`
+ * - `windowBits`
+ * - `memLevel`
+ * - `strategy`
+ * - `dictionary`
+ *
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
+ * for more information on these.
+ *
+ * Additional options, for internal needs:
+ *
+ * - `chunkSize` - size of generated data chunks (16K by default)
+ * - `raw` (Boolean) - do raw deflate
+ * - `gzip` (Boolean) - create gzip wrapper
+ * - `to` (String) - if equal to 'string', then result will be "binary string"
+ *    (each char code [0..255])
+ * - `header` (Object) - custom header for gzip
+ *   - `text` (Boolean) - true if compressed data believed to be text
+ *   - `time` (Number) - modification time, unix timestamp
+ *   - `os` (Number) - operation system code
+ *   - `extra` (Array) - array of bytes with extra data (max 65536)
+ *   - `name` (String) - file name (binary string)
+ *   - `comment` (String) - comment (binary string)
+ *   - `hcrc` (Boolean) - true if header crc should be added
+ *
+ * ##### Example:
+ *
+ * ```javascript
+ * var pako = require('pako')
+ *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
+ *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
+ *
+ * var deflate = new pako.Deflate({ level: 3});
+ *
+ * deflate.push(chunk1, false);
+ * deflate.push(chunk2, true);  // true -> last chunk
+ *
+ * if (deflate.err) { throw new Error(deflate.err); }
+ *
+ * console.log(deflate.result);
+ * ```
+ **/
+function Deflate(options) {
+  if (!(this instanceof Deflate)) return new Deflate(options);
+
+  this.options = utils.assign({
+    level: Z_DEFAULT_COMPRESSION,
+    method: Z_DEFLATED,
+    chunkSize: 16384,
+    windowBits: 15,
+    memLevel: 8,
+    strategy: Z_DEFAULT_STRATEGY,
+    to: ''
+  }, options || {});
+
+  var opt = this.options;
+
+  if (opt.raw && (opt.windowBits > 0)) {
+    opt.windowBits = -opt.windowBits;
+  }
+
+  else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {
+    opt.windowBits += 16;
+  }
+
+  this.err    = 0;      // error code, if happens (0 = Z_OK)
+  this.msg    = '';     // error message
+  this.ended  = false;  // used to avoid multiple onEnd() calls
+  this.chunks = [];     // chunks of compressed data
+
+  this.strm = new ZStream();
+  this.strm.avail_out = 0;
+
+  var status = zlib_deflate.deflateInit2(
+    this.strm,
+    opt.level,
+    opt.method,
+    opt.windowBits,
+    opt.memLevel,
+    opt.strategy
+  );
+
+  if (status !== Z_OK) {
+    throw new Error(msg[status]);
+  }
+
+  if (opt.header) {
+    zlib_deflate.deflateSetHeader(this.strm, opt.header);
+  }
+
+  if (opt.dictionary) {
+    var dict;
+    // Convert data if needed
+    if (typeof opt.dictionary === 'string') {
+      // If we need to compress text, change encoding to utf8.
+      dict = strings.string2buf(opt.dictionary);
+    } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {
+      dict = new Uint8Array(opt.dictionary);
+    } else {
+      dict = opt.dictionary;
+    }
+
+    status = zlib_deflate.deflateSetDictionary(this.strm, dict);
+
+    if (status !== Z_OK) {
+      throw new Error(msg[status]);
+    }
+
+    this._dict_set = true;
+  }
+}
+
+/**
+ * Deflate#push(data[, mode]) -> Boolean
+ * - data (Uint8Array|Array|ArrayBuffer|String): input data. Strings will be
+ *   converted to utf8 byte sequence.
+ * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
+ *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
+ *
+ * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with
+ * new compressed chunks. Returns `true` on success. The last data block must have
+ * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
+ * [[Deflate#onEnd]]. For interim explicit flushes (without ending the stream) you
+ * can use mode Z_SYNC_FLUSH, keeping the compression context.
+ *
+ * On fail call [[Deflate#onEnd]] with error code and return false.
+ *
+ * We strongly recommend to use `Uint8Array` on input for best speed (output
+ * array format is detected automatically). Also, don't skip last param and always
+ * use the same type in your code (boolean or number). That will improve JS speed.
+ *
+ * For regular `Array`-s make sure all elements are [0..255].
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * push(chunk, false); // push one of data chunks
+ * ...
+ * push(chunk, true);  // push last chunk
+ * ```
+ **/
+Deflate.prototype.push = function (data, mode) {
+  var strm = this.strm;
+  var chunkSize = this.options.chunkSize;
+  var status, _mode;
+
+  if (this.ended) { return false; }
+
+  _mode = (mode === ~~mode) ? mode : ((mode === true) ? Z_FINISH : Z_NO_FLUSH);
+
+  // Convert data if needed
+  if (typeof data === 'string') {
+    // If we need to compress text, change encoding to utf8.
+    strm.input = strings.string2buf(data);
+  } else if (toString.call(data) === '[object ArrayBuffer]') {
+    strm.input = new Uint8Array(data);
+  } else {
+    strm.input = data;
+  }
+
+  strm.next_in = 0;
+  strm.avail_in = strm.input.length;
+
+  do {
+    if (strm.avail_out === 0) {
+      strm.output = new utils.Buf8(chunkSize);
+      strm.next_out = 0;
+      strm.avail_out = chunkSize;
+    }
+    status = zlib_deflate.deflate(strm, _mode);    /* no bad return value */
+
+    if (status !== Z_STREAM_END && status !== Z_OK) {
+      this.onEnd(status);
+      this.ended = true;
+      return false;
+    }
+    if (strm.avail_out === 0 || (strm.avail_in === 0 && (_mode === Z_FINISH || _mode === Z_SYNC_FLUSH))) {
+      if (this.options.to === 'string') {
+        this.onData(strings.buf2binstring(utils.shrinkBuf(strm.output, strm.next_out)));
+      } else {
+        this.onData(utils.shrinkBuf(strm.output, strm.next_out));
+      }
+    }
+  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== Z_STREAM_END);
+
+  // Finalize on the last chunk.
+  if (_mode === Z_FINISH) {
+    status = zlib_deflate.deflateEnd(this.strm);
+    this.onEnd(status);
+    this.ended = true;
+    return status === Z_OK;
+  }
+
+  // callback interim results if Z_SYNC_FLUSH.
+  if (_mode === Z_SYNC_FLUSH) {
+    this.onEnd(Z_OK);
+    strm.avail_out = 0;
+    return true;
+  }
+
+  return true;
+};
+
+
+/**
+ * Deflate#onData(chunk) -> Void
+ * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
+ *   on js engine support. When string output requested, each chunk
+ *   will be string.
+ *
+ * By default, stores data blocks in `chunks[]` property and glue
+ * those in `onEnd`. Override this handler, if you need another behaviour.
+ **/
+Deflate.prototype.onData = function (chunk) {
+  this.chunks.push(chunk);
+};
+
+
+/**
+ * Deflate#onEnd(status) -> Void
+ * - status (Number): deflate status. 0 (Z_OK) on success,
+ *   other if not.
+ *
+ * Called once after you tell deflate that the input stream is
+ * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
+ * or if an error happened. By default - join collected chunks,
+ * free memory and fill `results` / `err` properties.
+ **/
+Deflate.prototype.onEnd = function (status) {
+  // On success - join
+  if (status === Z_OK) {
+    if (this.options.to === 'string') {
+      this.result = this.chunks.join('');
+    } else {
+      this.result = utils.flattenChunks(this.chunks);
+    }
+  }
+  this.chunks = [];
+  this.err = status;
+  this.msg = this.strm.msg;
+};
+
+
+/**
+ * deflate(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to compress.
+ * - options (Object): zlib deflate options.
+ *
+ * Compress `data` with deflate algorithm and `options`.
+ *
+ * Supported options are:
+ *
+ * - level
+ * - windowBits
+ * - memLevel
+ * - strategy
+ * - dictionary
+ *
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
+ * for more information on these.
+ *
+ * Sugar (options):
+ *
+ * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
+ *   negative windowBits implicitly.
+ * - `to` (String) - if equal to 'string', then result will be "binary string"
+ *    (each char code [0..255])
+ *
+ * ##### Example:
+ *
+ * ```javascript
+ * var pako = require('pako')
+ *   , data = Uint8Array([1,2,3,4,5,6,7,8,9]);
+ *
+ * console.log(pako.deflate(data));
+ * ```
+ **/
+function deflate(input, options) {
+  var deflator = new Deflate(options);
+
+  deflator.push(input, true);
+
+  // That will never happens, if you don't cheat with options :)
+  if (deflator.err) { throw deflator.msg || msg[deflator.err]; }
+
+  return deflator.result;
+}
+
+
+/**
+ * deflateRaw(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to compress.
+ * - options (Object): zlib deflate options.
+ *
+ * The same as [[deflate]], but creates raw data, without wrapper
+ * (header and adler32 crc).
+ **/
+function deflateRaw(input, options) {
+  options = options || {};
+  options.raw = true;
+  return deflate(input, options);
+}
+
+
+/**
+ * gzip(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to compress.
+ * - options (Object): zlib deflate options.
+ *
+ * The same as [[deflate]], but create gzip wrapper instead of
+ * deflate one.
+ **/
+function gzip(input, options) {
+  options = options || {};
+  options.gzip = true;
+  return deflate(input, options);
+}
+
+
+exports.Deflate = Deflate;
+exports.deflate = deflate;
+exports.deflateRaw = deflateRaw;
+exports.gzip = gzip;
+
+},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(require,module,exports){
+'use strict';
+
+
+var zlib_inflate = require('./zlib/inflate');
+var utils        = require('./utils/common');
+var strings      = require('./utils/strings');
+var c            = require('./zlib/constants');
+var msg          = require('./zlib/messages');
+var ZStream      = require('./zlib/zstream');
+var GZheader     = require('./zlib/gzheader');
+
+var toString = Object.prototype.toString;
+
+/**
+ * class Inflate
+ *
+ * Generic JS-style wrapper for zlib calls. If you don't need
+ * streaming behaviour - use more simple functions: [[inflate]]
+ * and [[inflateRaw]].
+ **/
+
+/* internal
+ * inflate.chunks -> Array
+ *
+ * Chunks of output data, if [[Inflate#onData]] not overriden.
+ **/
+
+/**
+ * Inflate.result -> Uint8Array|Array|String
+ *
+ * Uncompressed result, generated by default [[Inflate#onData]]
+ * and [[Inflate#onEnd]] handlers. Filled after you push last chunk
+ * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you
+ * push a chunk with explicit flush (call [[Inflate#push]] with
+ * `Z_SYNC_FLUSH` param).
+ **/
+
+/**
+ * Inflate.err -> Number
+ *
+ * Error code after inflate finished. 0 (Z_OK) on success.
+ * Should be checked if broken data possible.
+ **/
+
+/**
+ * Inflate.msg -> String
+ *
+ * Error message, if [[Inflate.err]] != 0
+ **/
+
+
+/**
+ * new Inflate(options)
+ * - options (Object): zlib inflate options.
+ *
+ * Creates new inflator instance with specified params. Throws exception
+ * on bad params. Supported options:
+ *
+ * - `windowBits`
+ * - `dictionary`
+ *
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
+ * for more information on these.
+ *
+ * Additional options, for internal needs:
+ *
+ * - `chunkSize` - size of generated data chunks (16K by default)
+ * - `raw` (Boolean) - do raw inflate
+ * - `to` (String) - if equal to 'string', then result will be converted
+ *   from utf8 to utf16 (javascript) string. When string output requested,
+ *   chunk length can differ from `chunkSize`, depending on content.
+ *
+ * By default, when no options set, autodetect deflate/gzip data format via
+ * wrapper header.
+ *
+ * ##### Example:
+ *
+ * ```javascript
+ * var pako = require('pako')
+ *   , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9])
+ *   , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]);
+ *
+ * var inflate = new pako.Inflate({ level: 3});
+ *
+ * inflate.push(chunk1, false);
+ * inflate.push(chunk2, true);  // true -> last chunk
+ *
+ * if (inflate.err) { throw new Error(inflate.err); }
+ *
+ * console.log(inflate.result);
+ * ```
+ **/
+function Inflate(options) {
+  if (!(this instanceof Inflate)) return new Inflate(options);
+
+  this.options = utils.assign({
+    chunkSize: 16384,
+    windowBits: 0,
+    to: ''
+  }, options || {});
+
+  var opt = this.options;
+
+  // Force window size for `raw` data, if not set directly,
+  // because we have no header for autodetect.
+  if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {
+    opt.windowBits = -opt.windowBits;
+    if (opt.windowBits === 0) { opt.windowBits = -15; }
+  }
+
+  // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate
+  if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&
+      !(options && options.windowBits)) {
+    opt.windowBits += 32;
+  }
+
+  // Gzip header has no info about windows size, we can do autodetect only
+  // for deflate. So, if window size not set, force it to max when gzip possible
+  if ((opt.windowBits > 15) && (opt.windowBits < 48)) {
+    // bit 3 (16) -> gzipped data
+    // bit 4 (32) -> autodetect gzip/deflate
+    if ((opt.windowBits & 15) === 0) {
+      opt.windowBits |= 15;
+    }
+  }
+
+  this.err    = 0;      // error code, if happens (0 = Z_OK)
+  this.msg    = '';     // error message
+  this.ended  = false;  // used to avoid multiple onEnd() calls
+  this.chunks = [];     // chunks of compressed data
+
+  this.strm   = new ZStream();
+  this.strm.avail_out = 0;
+
+  var status  = zlib_inflate.inflateInit2(
+    this.strm,
+    opt.windowBits
+  );
+
+  if (status !== c.Z_OK) {
+    throw new Error(msg[status]);
+  }
+
+  this.header = new GZheader();
+
+  zlib_inflate.inflateGetHeader(this.strm, this.header);
+}
+
+/**
+ * Inflate#push(data[, mode]) -> Boolean
+ * - data (Uint8Array|Array|ArrayBuffer|String): input data
+ * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.
+ *   See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH.
+ *
+ * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with
+ * new output chunks. Returns `true` on success. The last data block must have
+ * mode Z_FINISH (or `true`). That will flush internal pending buffers and call
+ * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you
+ * can use mode Z_SYNC_FLUSH, keeping the decompression context.
+ *
+ * On fail call [[Inflate#onEnd]] with error code and return false.
+ *
+ * We strongly recommend to use `Uint8Array` on input for best speed (output
+ * format is detected automatically). Also, don't skip last param and always
+ * use the same type in your code (boolean or number). That will improve JS speed.
+ *
+ * For regular `Array`-s make sure all elements are [0..255].
+ *
+ * ##### Example
+ *
+ * ```javascript
+ * push(chunk, false); // push one of data chunks
+ * ...
+ * push(chunk, true);  // push last chunk
+ * ```
+ **/
+Inflate.prototype.push = function (data, mode) {
+  var strm = this.strm;
+  var chunkSize = this.options.chunkSize;
+  var dictionary = this.options.dictionary;
+  var status, _mode;
+  var next_out_utf8, tail, utf8str;
+  var dict;
+
+  // Flag to properly process Z_BUF_ERROR on testing inflate call
+  // when we check that all output data was flushed.
+  var allowBufError = false;
+
+  if (this.ended) { return false; }
+  _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH);
+
+  // Convert data if needed
+  if (typeof data === 'string') {
+    // Only binary strings can be decompressed on practice
+    strm.input = strings.binstring2buf(data);
+  } else if (toString.call(data) === '[object ArrayBuffer]') {
+    strm.input = new Uint8Array(data);
+  } else {
+    strm.input = data;
+  }
+
+  strm.next_in = 0;
+  strm.avail_in = strm.input.length;
+
+  do {
+    if (strm.avail_out === 0) {
+      strm.output = new utils.Buf8(chunkSize);
+      strm.next_out = 0;
+      strm.avail_out = chunkSize;
+    }
+
+    status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH);    /* no bad return value */
+
+    if (status === c.Z_NEED_DICT && dictionary) {
+      // Convert data if needed
+      if (typeof dictionary === 'string') {
+        dict = strings.string2buf(dictionary);
+      } else if (toString.call(dictionary) === '[object ArrayBuffer]') {
+        dict = new Uint8Array(dictionary);
+      } else {
+        dict = dictionary;
+      }
+
+      status = zlib_inflate.inflateSetDictionary(this.strm, dict);
+
+    }
+
+    if (status === c.Z_BUF_ERROR && allowBufError === true) {
+      status = c.Z_OK;
+      allowBufError = false;
+    }
+
+    if (status !== c.Z_STREAM_END && status !== c.Z_OK) {
+      this.onEnd(status);
+      this.ended = true;
+      return false;
+    }
+
+    if (strm.next_out) {
+      if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) {
+
+        if (this.options.to === 'string') {
+
+          next_out_utf8 = strings.utf8border(strm.output, strm.next_out);
+
+          tail = strm.next_out - next_out_utf8;
+          utf8str = strings.buf2string(strm.output, next_out_utf8);
+
+          // move tail
+          strm.next_out = tail;
+          strm.avail_out = chunkSize - tail;
+          if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); }
+
+          this.onData(utf8str);
+
+        } else {
+          this.onData(utils.shrinkBuf(strm.output, strm.next_out));
+        }
+      }
+    }
+
+    // When no more input data, we should check that internal inflate buffers
+    // are flushed. The only way to do it when avail_out = 0 - run one more
+    // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR.
+    // Here we set flag to process this error properly.
+    //
+    // NOTE. Deflate does not return error in this case and does not needs such
+    // logic.
+    if (strm.avail_in === 0 && strm.avail_out === 0) {
+      allowBufError = true;
+    }
+
+  } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END);
+
+  if (status === c.Z_STREAM_END) {
+    _mode = c.Z_FINISH;
+  }
+
+  // Finalize on the last chunk.
+  if (_mode === c.Z_FINISH) {
+    status = zlib_inflate.inflateEnd(this.strm);
+    this.onEnd(status);
+    this.ended = true;
+    return status === c.Z_OK;
+  }
+
+  // callback interim results if Z_SYNC_FLUSH.
+  if (_mode === c.Z_SYNC_FLUSH) {
+    this.onEnd(c.Z_OK);
+    strm.avail_out = 0;
+    return true;
+  }
+
+  return true;
+};
+
+
+/**
+ * Inflate#onData(chunk) -> Void
+ * - chunk (Uint8Array|Array|String): ouput data. Type of array depends
+ *   on js engine support. When string output requested, each chunk
+ *   will be string.
+ *
+ * By default, stores data blocks in `chunks[]` property and glue
+ * those in `onEnd`. Override this handler, if you need another behaviour.
+ **/
+Inflate.prototype.onData = function (chunk) {
+  this.chunks.push(chunk);
+};
+
+
+/**
+ * Inflate#onEnd(status) -> Void
+ * - status (Number): inflate status. 0 (Z_OK) on success,
+ *   other if not.
+ *
+ * Called either after you tell inflate that the input stream is
+ * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH)
+ * or if an error happened. By default - join collected chunks,
+ * free memory and fill `results` / `err` properties.
+ **/
+Inflate.prototype.onEnd = function (status) {
+  // On success - join
+  if (status === c.Z_OK) {
+    if (this.options.to === 'string') {
+      // Glue & convert here, until we teach pako to send
+      // utf8 alligned strings to onData
+      this.result = this.chunks.join('');
+    } else {
+      this.result = utils.flattenChunks(this.chunks);
+    }
+  }
+  this.chunks = [];
+  this.err = status;
+  this.msg = this.strm.msg;
+};
+
+
+/**
+ * inflate(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to decompress.
+ * - options (Object): zlib inflate options.
+ *
+ * Decompress `data` with inflate/ungzip and `options`. Autodetect
+ * format via wrapper header by default. That's why we don't provide
+ * separate `ungzip` method.
+ *
+ * Supported options are:
+ *
+ * - windowBits
+ *
+ * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)
+ * for more information.
+ *
+ * Sugar (options):
+ *
+ * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify
+ *   negative windowBits implicitly.
+ * - `to` (String) - if equal to 'string', then result will be converted
+ *   from utf8 to utf16 (javascript) string. When string output requested,
+ *   chunk length can differ from `chunkSize`, depending on content.
+ *
+ *
+ * ##### Example:
+ *
+ * ```javascript
+ * var pako = require('pako')
+ *   , input = pako.deflate([1,2,3,4,5,6,7,8,9])
+ *   , output;
+ *
+ * try {
+ *   output = pako.inflate(input);
+ * } catch (err)
+ *   console.log(err);
+ * }
+ * ```
+ **/
+function inflate(input, options) {
+  var inflator = new Inflate(options);
+
+  inflator.push(input, true);
+
+  // That will never happens, if you don't cheat with options :)
+  if (inflator.err) { throw inflator.msg || msg[inflator.err]; }
+
+  return inflator.result;
+}
+
+
+/**
+ * inflateRaw(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to decompress.
+ * - options (Object): zlib inflate options.
+ *
+ * The same as [[inflate]], but creates raw data, without wrapper
+ * (header and adler32 crc).
+ **/
+function inflateRaw(input, options) {
+  options = options || {};
+  options.raw = true;
+  return inflate(input, options);
+}
+
+
+/**
+ * ungzip(data[, options]) -> Uint8Array|Array|String
+ * - data (Uint8Array|Array|String): input data to decompress.
+ * - options (Object): zlib inflate options.
+ *
+ * Just shortcut to [[inflate]], because it autodetects format
+ * by header.content. Done for convenience.
+ **/
+
+
+exports.Inflate = Inflate;
+exports.inflate = inflate;
+exports.inflateRaw = inflateRaw;
+exports.ungzip  = inflate;
+
+},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(require,module,exports){
+'use strict';
+
+
+var TYPED_OK =  (typeof Uint8Array !== 'undefined') &&
+                (typeof Uint16Array !== 'undefined') &&
+                (typeof Int32Array !== 'undefined');
+
+
+exports.assign = function (obj /*from1, from2, from3, ...*/) {
+  var sources = Array.prototype.slice.call(arguments, 1);
+  while (sources.length) {
+    var source = sources.shift();
+    if (!source) { continue; }
+
+    if (typeof source !== 'object') {
+      throw new TypeError(source + 'must be non-object');
+    }
+
+    for (var p in source) {
+      if (source.hasOwnProperty(p)) {
+        obj[p] = source[p];
+      }
+    }
+  }
+
+  return obj;
+};
+
+
+// reduce buffer size, avoiding mem copy
+exports.shrinkBuf = function (buf, size) {
+  if (buf.length === size) { return buf; }
+  if (buf.subarray) { return buf.subarray(0, size); }
+  buf.length = size;
+  return buf;
+};
+
+
+var fnTyped = {
+  arraySet: function (dest, src, src_offs, len, dest_offs) {
+    if (src.subarray && dest.subarray) {
+      dest.set(src.subarray(src_offs, src_offs + len), dest_offs);
+      return;
+    }
+    // Fallback to ordinary array
+    for (var i = 0; i < len; i++) {
+      dest[dest_offs + i] = src[src_offs + i];
+    }
+  },
+  // Join array of chunks to single array.
+  flattenChunks: function (chunks) {
+    var i, l, len, pos, chunk, result;
+
+    // calculate data length
+    len = 0;
+    for (i = 0, l = chunks.length; i < l; i++) {
+      len += chunks[i].length;
+    }
+
+    // join chunks
+    result = new Uint8Array(len);
+    pos = 0;
+    for (i = 0, l = chunks.length; i < l; i++) {
+      chunk = chunks[i];
+      result.set(chunk, pos);
+      pos += chunk.length;
+    }
+
+    return result;
+  }
+};
+
+var fnUntyped = {
+  arraySet: function (dest, src, src_offs, len, dest_offs) {
+    for (var i = 0; i < len; i++) {
+      dest[dest_offs + i] = src[src_offs + i];
+    }
+  },
+  // Join array of chunks to single array.
+  flattenChunks: function (chunks) {
+    return [].concat.apply([], chunks);
+  }
+};
+
+
+// Enable/Disable typed arrays use, for testing
+//
+exports.setTyped = function (on) {
+  if (on) {
+    exports.Buf8  = Uint8Array;
+    exports.Buf16 = Uint16Array;
+    exports.Buf32 = Int32Array;
+    exports.assign(exports, fnTyped);
+  } else {
+    exports.Buf8  = Array;
+    exports.Buf16 = Array;
+    exports.Buf32 = Array;
+    exports.assign(exports, fnUntyped);
+  }
+};
+
+exports.setTyped(TYPED_OK);
+
+},{}],42:[function(require,module,exports){
+// String encode/decode helpers
+'use strict';
+
+
+var utils = require('./common');
+
+
+// Quick check if we can use fast array to bin string conversion
+//
+// - apply(Array) can fail on Android 2.2
+// - apply(Uint8Array) can fail on iOS 5.1 Safary
+//
+var STR_APPLY_OK = true;
+var STR_APPLY_UIA_OK = true;
+
+try { String.fromCharCode.apply(null, [ 0 ]); } catch (__) { STR_APPLY_OK = false; }
+try { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }
+
+
+// Table with utf8 lengths (calculated by first byte of sequence)
+// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,
+// because max possible codepoint is 0x10ffff
+var _utf8len = new utils.Buf8(256);
+for (var q = 0; q < 256; q++) {
+  _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);
+}
+_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start
+
+
+// convert string to array (typed, when possible)
+exports.string2buf = function (str) {
+  var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;
+
+  // count binary size
+  for (m_pos = 0; m_pos < str_len; m_pos++) {
+    c = str.charCodeAt(m_pos);
+    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
+      c2 = str.charCodeAt(m_pos + 1);
+      if ((c2 & 0xfc00) === 0xdc00) {
+        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
+        m_pos++;
+      }
+    }
+    buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;
+  }
+
+  // allocate buffer
+  buf = new utils.Buf8(buf_len);
+
+  // convert
+  for (i = 0, m_pos = 0; i < buf_len; m_pos++) {
+    c = str.charCodeAt(m_pos);
+    if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {
+      c2 = str.charCodeAt(m_pos + 1);
+      if ((c2 & 0xfc00) === 0xdc00) {
+        c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);
+        m_pos++;
+      }
+    }
+    if (c < 0x80) {
+      /* one byte */
+      buf[i++] = c;
+    } else if (c < 0x800) {
+      /* two bytes */
+      buf[i++] = 0xC0 | (c >>> 6);
+      buf[i++] = 0x80 | (c & 0x3f);
+    } else if (c < 0x10000) {
+      /* three bytes */
+      buf[i++] = 0xE0 | (c >>> 12);
+      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
+      buf[i++] = 0x80 | (c & 0x3f);
+    } else {
+      /* four bytes */
+      buf[i++] = 0xf0 | (c >>> 18);
+      buf[i++] = 0x80 | (c >>> 12 & 0x3f);
+      buf[i++] = 0x80 | (c >>> 6 & 0x3f);
+      buf[i++] = 0x80 | (c & 0x3f);
+    }
+  }
+
+  return buf;
+};
+
+// Helper (used in 2 places)
+function buf2binstring(buf, len) {
+  // use fallback for big arrays to avoid stack overflow
+  if (len < 65537) {
+    if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) {
+      return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len));
+    }
+  }
+
+  var result = '';
+  for (var i = 0; i < len; i++) {
+    result += String.fromCharCode(buf[i]);
+  }
+  return result;
+}
+
+
+// Convert byte array to binary string
+exports.buf2binstring = function (buf) {
+  return buf2binstring(buf, buf.length);
+};
+
+
+// Convert binary string (typed, when possible)
+exports.binstring2buf = function (str) {
+  var buf = new utils.Buf8(str.length);
+  for (var i = 0, len = buf.length; i < len; i++) {
+    buf[i] = str.charCodeAt(i);
+  }
+  return buf;
+};
+
+
+// convert array to string
+exports.buf2string = function (buf, max) {
+  var i, out, c, c_len;
+  var len = max || buf.length;
+
+  // Reserve max possible length (2 words per char)
+  // NB: by unknown reasons, Array is significantly faster for
+  //     String.fromCharCode.apply than Uint16Array.
+  var utf16buf = new Array(len * 2);
+
+  for (out = 0, i = 0; i < len;) {
+    c = buf[i++];
+    // quick process ascii
+    if (c < 0x80) { utf16buf[out++] = c; continue; }
+
+    c_len = _utf8len[c];
+    // skip 5 & 6 byte codes
+    if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }
+
+    // apply mask on first byte
+    c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;
+    // join the rest
+    while (c_len > 1 && i < len) {
+      c = (c << 6) | (buf[i++] & 0x3f);
+      c_len--;
+    }
+
+    // terminated by end of string?
+    if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }
+
+    if (c < 0x10000) {
+      utf16buf[out++] = c;
+    } else {
+      c -= 0x10000;
+      utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);
+      utf16buf[out++] = 0xdc00 | (c & 0x3ff);
+    }
+  }
+
+  return buf2binstring(utf16buf, out);
+};
+
+
+// Calculate max possible position in utf8 buffer,
+// that will not break sequence. If that's not possible
+// - (very small limits) return max size as is.
+//
+// buf[] - utf8 bytes array
+// max   - length limit (mandatory);
+exports.utf8border = function (buf, max) {
+  var pos;
+
+  max = max || buf.length;
+  if (max > buf.length) { max = buf.length; }
+
+  // go back from last position, until start of sequence found
+  pos = max - 1;
+  while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }
+
+  // Fuckup - very small and broken sequence,
+  // return max, because we should return something anyway.
+  if (pos < 0) { return max; }
+
+  // If we came to start of buffer - that means vuffer is too small,
+  // return max too.
+  if (pos === 0) { return max; }
+
+  return (pos + _utf8len[buf[pos]] > max) ? pos : max;
+};
+
+},{"./common":41}],43:[function(require,module,exports){
+'use strict';
+
+// Note: adler32 takes 12% for level 0 and 2% for level 6.
+// It doesn't worth to make additional optimizationa as in original.
+// Small size is preferable.
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+function adler32(adler, buf, len, pos) {
+  var s1 = (adler & 0xffff) |0,
+      s2 = ((adler >>> 16) & 0xffff) |0,
+      n = 0;
+
+  while (len !== 0) {
+    // Set limit ~ twice less than 5552, to keep
+    // s2 in 31-bits, because we force signed ints.
+    // in other case %= will fail.
+    n = len > 2000 ? 2000 : len;
+    len -= n;
+
+    do {
+      s1 = (s1 + buf[pos++]) |0;
+      s2 = (s2 + s1) |0;
+    } while (--n);
+
+    s1 %= 65521;
+    s2 %= 65521;
+  }
+
+  return (s1 | (s2 << 16)) |0;
+}
+
+
+module.exports = adler32;
+
+},{}],44:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+module.exports = {
+
+  /* Allowed flush values; see deflate() and inflate() below for details */
+  Z_NO_FLUSH:         0,
+  Z_PARTIAL_FLUSH:    1,
+  Z_SYNC_FLUSH:       2,
+  Z_FULL_FLUSH:       3,
+  Z_FINISH:           4,
+  Z_BLOCK:            5,
+  Z_TREES:            6,
+
+  /* Return codes for the compression/decompression functions. Negative values
+  * are errors, positive values are used for special but normal events.
+  */
+  Z_OK:               0,
+  Z_STREAM_END:       1,
+  Z_NEED_DICT:        2,
+  Z_ERRNO:           -1,
+  Z_STREAM_ERROR:    -2,
+  Z_DATA_ERROR:      -3,
+  //Z_MEM_ERROR:     -4,
+  Z_BUF_ERROR:       -5,
+  //Z_VERSION_ERROR: -6,
+
+  /* compression levels */
+  Z_NO_COMPRESSION:         0,
+  Z_BEST_SPEED:             1,
+  Z_BEST_COMPRESSION:       9,
+  Z_DEFAULT_COMPRESSION:   -1,
+
+
+  Z_FILTERED:               1,
+  Z_HUFFMAN_ONLY:           2,
+  Z_RLE:                    3,
+  Z_FIXED:                  4,
+  Z_DEFAULT_STRATEGY:       0,
+
+  /* Possible values of the data_type field (though see inflate()) */
+  Z_BINARY:                 0,
+  Z_TEXT:                   1,
+  //Z_ASCII:                1, // = Z_TEXT (deprecated)
+  Z_UNKNOWN:                2,
+
+  /* The deflate compression method */
+  Z_DEFLATED:               8
+  //Z_NULL:                 null // Use -1 or null inline, depending on var type
+};
+
+},{}],45:[function(require,module,exports){
+'use strict';
+
+// Note: we can't get significant speed boost here.
+// So write code to minimize size - no pregenerated tables
+// and array tools dependencies.
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+// Use ordinary array, since untyped makes no boost here
+function makeTable() {
+  var c, table = [];
+
+  for (var n = 0; n < 256; n++) {
+    c = n;
+    for (var k = 0; k < 8; k++) {
+      c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
+    }
+    table[n] = c;
+  }
+
+  return table;
+}
+
+// Create table on load. Just 255 signed longs. Not a problem.
+var crcTable = makeTable();
+
+
+function crc32(crc, buf, len, pos) {
+  var t = crcTable,
+      end = pos + len;
+
+  crc ^= -1;
+
+  for (var i = pos; i < end; i++) {
+    crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];
+  }
+
+  return (crc ^ (-1)); // >>> 0;
+}
+
+
+module.exports = crc32;
+
+},{}],46:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+var utils   = require('../utils/common');
+var trees   = require('./trees');
+var adler32 = require('./adler32');
+var crc32   = require('./crc32');
+var msg     = require('./messages');
+
+/* Public constants ==========================================================*/
+/* ===========================================================================*/
+
+
+/* Allowed flush values; see deflate() and inflate() below for details */
+var Z_NO_FLUSH      = 0;
+var Z_PARTIAL_FLUSH = 1;
+//var Z_SYNC_FLUSH    = 2;
+var Z_FULL_FLUSH    = 3;
+var Z_FINISH        = 4;
+var Z_BLOCK         = 5;
+//var Z_TREES         = 6;
+
+
+/* Return codes for the compression/decompression functions. Negative values
+ * are errors, positive values are used for special but normal events.
+ */
+var Z_OK            = 0;
+var Z_STREAM_END    = 1;
+//var Z_NEED_DICT     = 2;
+//var Z_ERRNO         = -1;
+var Z_STREAM_ERROR  = -2;
+var Z_DATA_ERROR    = -3;
+//var Z_MEM_ERROR     = -4;
+var Z_BUF_ERROR     = -5;
+//var Z_VERSION_ERROR = -6;
+
+
+/* compression levels */
+//var Z_NO_COMPRESSION      = 0;
+//var Z_BEST_SPEED          = 1;
+//var Z_BEST_COMPRESSION    = 9;
+var Z_DEFAULT_COMPRESSION = -1;
+
+
+var Z_FILTERED            = 1;
+var Z_HUFFMAN_ONLY        = 2;
+var Z_RLE                 = 3;
+var Z_FIXED               = 4;
+var Z_DEFAULT_STRATEGY    = 0;
+
+/* Possible values of the data_type field (though see inflate()) */
+//var Z_BINARY              = 0;
+//var Z_TEXT                = 1;
+//var Z_ASCII               = 1; // = Z_TEXT
+var Z_UNKNOWN             = 2;
+
+
+/* The deflate compression method */
+var Z_DEFLATED  = 8;
+
+/*============================================================================*/
+
+
+var MAX_MEM_LEVEL = 9;
+/* Maximum value for memLevel in deflateInit2 */
+var MAX_WBITS = 15;
+/* 32K LZ77 window */
+var DEF_MEM_LEVEL = 8;
+
+
+var LENGTH_CODES  = 29;
+/* number of length codes, not counting the special END_BLOCK code */
+var LITERALS      = 256;
+/* number of literal bytes 0..255 */
+var L_CODES       = LITERALS + 1 + LENGTH_CODES;
+/* number of Literal or Length codes, including the END_BLOCK code */
+var D_CODES       = 30;
+/* number of distance codes */
+var BL_CODES      = 19;
+/* number of codes used to transfer the bit lengths */
+var HEAP_SIZE     = 2 * L_CODES + 1;
+/* maximum heap size */
+var MAX_BITS  = 15;
+/* All codes must not exceed MAX_BITS bits */
+
+var MIN_MATCH = 3;
+var MAX_MATCH = 258;
+var MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);
+
+var PRESET_DICT = 0x20;
+
+var INIT_STATE = 42;
+var EXTRA_STATE = 69;
+var NAME_STATE = 73;
+var COMMENT_STATE = 91;
+var HCRC_STATE = 103;
+var BUSY_STATE = 113;
+var FINISH_STATE = 666;
+
+var BS_NEED_MORE      = 1; /* block not completed, need more input or more output */
+var BS_BLOCK_DONE     = 2; /* block flush performed */
+var BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */
+var BS_FINISH_DONE    = 4; /* finish done, accept no more input or output */
+
+var OS_CODE = 0x03; // Unix :) . Don't detect, use this default.
+
+function err(strm, errorCode) {
+  strm.msg = msg[errorCode];
+  return errorCode;
+}
+
+function rank(f) {
+  return ((f) << 1) - ((f) > 4 ? 9 : 0);
+}
+
+function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
+
+
+/* =========================================================================
+ * Flush as much pending output as possible. All deflate() output goes
+ * through this function so some applications may wish to modify it
+ * to avoid allocating a large strm->output buffer and copying into it.
+ * (See also read_buf()).
+ */
+function flush_pending(strm) {
+  var s = strm.state;
+
+  //_tr_flush_bits(s);
+  var len = s.pending;
+  if (len > strm.avail_out) {
+    len = strm.avail_out;
+  }
+  if (len === 0) { return; }
+
+  utils.arraySet(strm.output, s.pending_buf, s.pending_out, len, strm.next_out);
+  strm.next_out += len;
+  s.pending_out += len;
+  strm.total_out += len;
+  strm.avail_out -= len;
+  s.pending -= len;
+  if (s.pending === 0) {
+    s.pending_out = 0;
+  }
+}
+
+
+function flush_block_only(s, last) {
+  trees._tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);
+  s.block_start = s.strstart;
+  flush_pending(s.strm);
+}
+
+
+function put_byte(s, b) {
+  s.pending_buf[s.pending++] = b;
+}
+
+
+/* =========================================================================
+ * Put a short in the pending buffer. The 16-bit value is put in MSB order.
+ * IN assertion: the stream state is correct and there is enough room in
+ * pending_buf.
+ */
+function putShortMSB(s, b) {
+//  put_byte(s, (Byte)(b >> 8));
+//  put_byte(s, (Byte)(b & 0xff));
+  s.pending_buf[s.pending++] = (b >>> 8) & 0xff;
+  s.pending_buf[s.pending++] = b & 0xff;
+}
+
+
+/* ===========================================================================
+ * Read a new buffer from the current input stream, update the adler32
+ * and total number of bytes read.  All deflate() input goes through
+ * this function so some applications may wish to modify it to avoid
+ * allocating a large strm->input buffer and copying from it.
+ * (See also flush_pending()).
+ */
+function read_buf(strm, buf, start, size) {
+  var len = strm.avail_in;
+
+  if (len > size) { len = size; }
+  if (len === 0) { return 0; }
+
+  strm.avail_in -= len;
+
+  // zmemcpy(buf, strm->next_in, len);
+  utils.arraySet(buf, strm.input, strm.next_in, len, start);
+  if (strm.state.wrap === 1) {
+    strm.adler = adler32(strm.adler, buf, len, start);
+  }
+
+  else if (strm.state.wrap === 2) {
+    strm.adler = crc32(strm.adler, buf, len, start);
+  }
+
+  strm.next_in += len;
+  strm.total_in += len;
+
+  return len;
+}
+
+
+/* ===========================================================================
+ * Set match_start to the longest match starting at the given string and
+ * return its length. Matches shorter or equal to prev_length are discarded,
+ * in which case the result is equal to prev_length and match_start is
+ * garbage.
+ * IN assertions: cur_match is the head of the hash chain for the current
+ *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
+ * OUT assertion: the match length is not greater than s->lookahead.
+ */
+function longest_match(s, cur_match) {
+  var chain_length = s.max_chain_length;      /* max hash chain length */
+  var scan = s.strstart; /* current string */
+  var match;                       /* matched string */
+  var len;                           /* length of current match */
+  var best_len = s.prev_length;              /* best match length so far */
+  var nice_match = s.nice_match;             /* stop if match long enough */
+  var limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?
+      s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;
+
+  var _win = s.window; // shortcut
+
+  var wmask = s.w_mask;
+  var prev  = s.prev;
+
+  /* Stop when cur_match becomes <= limit. To simplify the code,
+   * we prevent matches with the string of window index 0.
+   */
+
+  var strend = s.strstart + MAX_MATCH;
+  var scan_end1  = _win[scan + best_len - 1];
+  var scan_end   = _win[scan + best_len];
+
+  /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
+   * It is easy to get rid of this optimization if necessary.
+   */
+  // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");
+
+  /* Do not waste too much time if we already have a good match: */
+  if (s.prev_length >= s.good_match) {
+    chain_length >>= 2;
+  }
+  /* Do not look for matches beyond the end of the input. This is necessary
+   * to make deflate deterministic.
+   */
+  if (nice_match > s.lookahead) { nice_match = s.lookahead; }
+
+  // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
+
+  do {
+    // Assert(cur_match < s->strstart, "no future");
+    match = cur_match;
+
+    /* Skip to next match if the match length cannot increase
+     * or if the match length is less than 2.  Note that the checks below
+     * for insufficient lookahead only occur occasionally for performance
+     * reasons.  Therefore uninitialized memory will be accessed, and
+     * conditional jumps will be made that depend on those values.
+     * However the length of the match is limited to the lookahead, so
+     * the output of deflate is not affected by the uninitialized values.
+     */
+
+    if (_win[match + best_len]     !== scan_end  ||
+        _win[match + best_len - 1] !== scan_end1 ||
+        _win[match]                !== _win[scan] ||
+        _win[++match]              !== _win[scan + 1]) {
+      continue;
+    }
+
+    /* The check at best_len-1 can be removed because it will be made
+     * again later. (This heuristic is not always a win.)
+     * It is not necessary to compare scan[2] and match[2] since they
+     * are always equal when the other bytes match, given that
+     * the hash keys are equal and that HASH_BITS >= 8.
+     */
+    scan += 2;
+    match++;
+    // Assert(*scan == *match, "match[2]?");
+
+    /* We check for insufficient lookahead only every 8th comparison;
+     * the 256th check will be made at strstart+258.
+     */
+    do {
+      /*jshint noempty:false*/
+    } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
+             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
+             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
+             _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
+             scan < strend);
+
+    // Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");
+
+    len = MAX_MATCH - (strend - scan);
+    scan = strend - MAX_MATCH;
+
+    if (len > best_len) {
+      s.match_start = cur_match;
+      best_len = len;
+      if (len >= nice_match) {
+        break;
+      }
+      scan_end1  = _win[scan + best_len - 1];
+      scan_end   = _win[scan + best_len];
+    }
+  } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);
+
+  if (best_len <= s.lookahead) {
+    return best_len;
+  }
+  return s.lookahead;
+}
+
+
+/* ===========================================================================
+ * Fill the window when the lookahead becomes insufficient.
+ * Updates strstart and lookahead.
+ *
+ * IN assertion: lookahead < MIN_LOOKAHEAD
+ * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
+ *    At least one byte has been read, or avail_in == 0; reads are
+ *    performed for at least two bytes (required for the zip translate_eol
+ *    option -- not supported here).
+ */
+function fill_window(s) {
+  var _w_size = s.w_size;
+  var p, n, m, more, str;
+
+  //Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
+
+  do {
+    more = s.window_size - s.lookahead - s.strstart;
+
+    // JS ints have 32 bit, block below not needed
+    /* Deal with !@#$% 64K limit: */
+    //if (sizeof(int) <= 2) {
+    //    if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
+    //        more = wsize;
+    //
+    //  } else if (more == (unsigned)(-1)) {
+    //        /* Very unlikely, but possible on 16 bit machine if
+    //         * strstart == 0 && lookahead == 1 (input done a byte at time)
+    //         */
+    //        more--;
+    //    }
+    //}
+
+
+    /* If the window is almost full and there is insufficient lookahead,
+     * move the upper half to the lower one to make room in the upper half.
+     */
+    if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {
+
+      utils.arraySet(s.window, s.window, _w_size, _w_size, 0);
+      s.match_start -= _w_size;
+      s.strstart -= _w_size;
+      /* we now have strstart >= MAX_DIST */
+      s.block_start -= _w_size;
+
+      /* Slide the hash table (could be avoided with 32 bit values
+       at the expense of memory usage). We slide even when level == 0
+       to keep the hash table consistent if we switch back to level > 0
+       later. (Using level 0 permanently is not an optimal usage of
+       zlib, so we don't care about this pathological case.)
+       */
+
+      n = s.hash_size;
+      p = n;
+      do {
+        m = s.head[--p];
+        s.head[p] = (m >= _w_size ? m - _w_size : 0);
+      } while (--n);
+
+      n = _w_size;
+      p = n;
+      do {
+        m = s.prev[--p];
+        s.prev[p] = (m >= _w_size ? m - _w_size : 0);
+        /* If n is not on any hash chain, prev[n] is garbage but
+         * its value will never be used.
+         */
+      } while (--n);
+
+      more += _w_size;
+    }
+    if (s.strm.avail_in === 0) {
+      break;
+    }
+
+    /* If there was no sliding:
+     *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
+     *    more == window_size - lookahead - strstart
+     * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
+     * => more >= window_size - 2*WSIZE + 2
+     * In the BIG_MEM or MMAP case (not yet supported),
+     *   window_size == input_size + MIN_LOOKAHEAD  &&
+     *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
+     * Otherwise, window_size == 2*WSIZE so more >= 2.
+     * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
+     */
+    //Assert(more >= 2, "more < 2");
+    n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
+    s.lookahead += n;
+
+    /* Initialize the hash value now that we have some input: */
+    if (s.lookahead + s.insert >= MIN_MATCH) {
+      str = s.strstart - s.insert;
+      s.ins_h = s.window[str];
+
+      /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
+      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + 1]) & s.hash_mask;
+//#if MIN_MATCH != 3
+//        Call update_hash() MIN_MATCH-3 more times
+//#endif
+      while (s.insert) {
+        /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
+        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
+
+        s.prev[str & s.w_mask] = s.head[s.ins_h];
+        s.head[s.ins_h] = str;
+        str++;
+        s.insert--;
+        if (s.lookahead + s.insert < MIN_MATCH) {
+          break;
+        }
+      }
+    }
+    /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
+     * but this is not important since only literal bytes will be emitted.
+     */
+
+  } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
+
+  /* If the WIN_INIT bytes after the end of the current data have never been
+   * written, then zero those bytes in order to avoid memory check reports of
+   * the use of uninitialized (or uninitialised as Julian writes) bytes by
+   * the longest match routines.  Update the high water mark for the next
+   * time through here.  WIN_INIT is set to MAX_MATCH since the longest match
+   * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
+   */
+//  if (s.high_water < s.window_size) {
+//    var curr = s.strstart + s.lookahead;
+//    var init = 0;
+//
+//    if (s.high_water < curr) {
+//      /* Previous high water mark below current data -- zero WIN_INIT
+//       * bytes or up to end of window, whichever is less.
+//       */
+//      init = s.window_size - curr;
+//      if (init > WIN_INIT)
+//        init = WIN_INIT;
+//      zmemzero(s->window + curr, (unsigned)init);
+//      s->high_water = curr + init;
+//    }
+//    else if (s->high_water < (ulg)curr + WIN_INIT) {
+//      /* High water mark at or above current data, but below current data
+//       * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
+//       * to end of window, whichever is less.
+//       */
+//      init = (ulg)curr + WIN_INIT - s->high_water;
+//      if (init > s->window_size - s->high_water)
+//        init = s->window_size - s->high_water;
+//      zmemzero(s->window + s->high_water, (unsigned)init);
+//      s->high_water += init;
+//    }
+//  }
+//
+//  Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
+//    "not enough room for search");
+}
+
+/* ===========================================================================
+ * Copy without compression as much as possible from the input stream, return
+ * the current block state.
+ * This function does not insert new strings in the dictionary since
+ * uncompressible data is probably not useful. This function is used
+ * only for the level=0 compression option.
+ * NOTE: this function should be optimized to avoid extra copying from
+ * window to pending_buf.
+ */
+function deflate_stored(s, flush) {
+  /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
+   * to pending_buf_size, and each stored block has a 5 byte header:
+   */
+  var max_block_size = 0xffff;
+
+  if (max_block_size > s.pending_buf_size - 5) {
+    max_block_size = s.pending_buf_size - 5;
+  }
+
+  /* Copy as much as possible from input to output: */
+  for (;;) {
+    /* Fill the window as much as possible: */
+    if (s.lookahead <= 1) {
+
+      //Assert(s->strstart < s->w_size+MAX_DIST(s) ||
+      //  s->block_start >= (long)s->w_size, "slide too late");
+//      if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
+//        s.block_start >= s.w_size)) {
+//        throw  new Error("slide too late");
+//      }
+
+      fill_window(s);
+      if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
+        return BS_NEED_MORE;
+      }
+
+      if (s.lookahead === 0) {
+        break;
+      }
+      /* flush the current block */
+    }
+    //Assert(s->block_start >= 0L, "block gone");
+//    if (s.block_start < 0) throw new Error("block gone");
+
+    s.strstart += s.lookahead;
+    s.lookahead = 0;
+
+    /* Emit a stored block if pending_buf will be full: */
+    var max_start = s.block_start + max_block_size;
+
+    if (s.strstart === 0 || s.strstart >= max_start) {
+      /* strstart == 0 is possible when wraparound on 16-bit machine */
+      s.lookahead = s.strstart - max_start;
+      s.strstart = max_start;
+      /*** FLUSH_BLOCK(s, 0); ***/
+      flush_block_only(s, false);
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+      /***/
+
+
+    }
+    /* Flush if we may have to slide, otherwise block_start may become
+     * negative and the data will be gone:
+     */
+    if (s.strstart - s.block_start >= (s.w_size - MIN_LOOKAHEAD)) {
+      /*** FLUSH_BLOCK(s, 0); ***/
+      flush_block_only(s, false);
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+      /***/
+    }
+  }
+
+  s.insert = 0;
+
+  if (flush === Z_FINISH) {
+    /*** FLUSH_BLOCK(s, 1); ***/
+    flush_block_only(s, true);
+    if (s.strm.avail_out === 0) {
+      return BS_FINISH_STARTED;
+    }
+    /***/
+    return BS_FINISH_DONE;
+  }
+
+  if (s.strstart > s.block_start) {
+    /*** FLUSH_BLOCK(s, 0); ***/
+    flush_block_only(s, false);
+    if (s.strm.avail_out === 0) {
+      return BS_NEED_MORE;
+    }
+    /***/
+  }
+
+  return BS_NEED_MORE;
+}
+
+/* ===========================================================================
+ * Compress as much as possible from the input stream, return the current
+ * block state.
+ * This function does not perform lazy evaluation of matches and inserts
+ * new strings in the dictionary only for unmatched strings or for short
+ * matches. It is used only for the fast compression options.
+ */
+function deflate_fast(s, flush) {
+  var hash_head;        /* head of the hash chain */
+  var bflush;           /* set if current block must be flushed */
+
+  for (;;) {
+    /* Make sure that we always have enough lookahead, except
+     * at the end of the input file. We need MAX_MATCH bytes
+     * for the next match, plus MIN_MATCH bytes to insert the
+     * string following the next match.
+     */
+    if (s.lookahead < MIN_LOOKAHEAD) {
+      fill_window(s);
+      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
+        return BS_NEED_MORE;
+      }
+      if (s.lookahead === 0) {
+        break; /* flush the current block */
+      }
+    }
+
+    /* Insert the string window[strstart .. strstart+2] in the
+     * dictionary, and set hash_head to the head of the hash chain:
+     */
+    hash_head = 0/*NIL*/;
+    if (s.lookahead >= MIN_MATCH) {
+      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
+      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
+      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
+      s.head[s.ins_h] = s.strstart;
+      /***/
+    }
+
+    /* Find the longest match, discarding those <= prev_length.
+     * At this point we have always match_length < MIN_MATCH
+     */
+    if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {
+      /* To simplify the code, we prevent matches with the string
+       * of window index 0 (in particular we have to avoid a match
+       * of the string with itself at the start of the input file).
+       */
+      s.match_length = longest_match(s, hash_head);
+      /* longest_match() sets match_start */
+    }
+    if (s.match_length >= MIN_MATCH) {
+      // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only
+
+      /*** _tr_tally_dist(s, s.strstart - s.match_start,
+                     s.match_length - MIN_MATCH, bflush); ***/
+      bflush = trees._tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);
+
+      s.lookahead -= s.match_length;
+
+      /* Insert new strings in the hash table only if the match length
+       * is not too large. This saves time but degrades compression.
+       */
+      if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
+        s.match_length--; /* string at strstart already in table */
+        do {
+          s.strstart++;
+          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
+          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
+          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
+          s.head[s.ins_h] = s.strstart;
+          /***/
+          /* strstart never exceeds WSIZE-MAX_MATCH, so there are
+           * always MIN_MATCH bytes ahead.
+           */
+        } while (--s.match_length !== 0);
+        s.strstart++;
+      } else
+      {
+        s.strstart += s.match_length;
+        s.match_length = 0;
+        s.ins_h = s.window[s.strstart];
+        /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
+        s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + 1]) & s.hash_mask;
+
+//#if MIN_MATCH != 3
+//                Call UPDATE_HASH() MIN_MATCH-3 more times
+//#endif
+        /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
+         * matter since it will be recomputed at next deflate call.
+         */
+      }
+    } else {
+      /* No match, output a literal byte */
+      //Tracevv((stderr,"%c", s.window[s.strstart]));
+      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
+      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
+
+      s.lookahead--;
+      s.strstart++;
+    }
+    if (bflush) {
+      /*** FLUSH_BLOCK(s, 0); ***/
+      flush_block_only(s, false);
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+      /***/
+    }
+  }
+  s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);
+  if (flush === Z_FINISH) {
+    /*** FLUSH_BLOCK(s, 1); ***/
+    flush_block_only(s, true);
+    if (s.strm.avail_out === 0) {
+      return BS_FINISH_STARTED;
+    }
+    /***/
+    return BS_FINISH_DONE;
+  }
+  if (s.last_lit) {
+    /*** FLUSH_BLOCK(s, 0); ***/
+    flush_block_only(s, false);
+    if (s.strm.avail_out === 0) {
+      return BS_NEED_MORE;
+    }
+    /***/
+  }
+  return BS_BLOCK_DONE;
+}
+
+/* ===========================================================================
+ * Same as above, but achieves better compression. We use a lazy
+ * evaluation for matches: a match is finally adopted only if there is
+ * no better match at the next window position.
+ */
+function deflate_slow(s, flush) {
+  var hash_head;          /* head of hash chain */
+  var bflush;              /* set if current block must be flushed */
+
+  var max_insert;
+
+  /* Process the input block. */
+  for (;;) {
+    /* Make sure that we always have enough lookahead, except
+     * at the end of the input file. We need MAX_MATCH bytes
+     * for the next match, plus MIN_MATCH bytes to insert the
+     * string following the next match.
+     */
+    if (s.lookahead < MIN_LOOKAHEAD) {
+      fill_window(s);
+      if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
+        return BS_NEED_MORE;
+      }
+      if (s.lookahead === 0) { break; } /* flush the current block */
+    }
+
+    /* Insert the string window[strstart .. strstart+2] in the
+     * dictionary, and set hash_head to the head of the hash chain:
+     */
+    hash_head = 0/*NIL*/;
+    if (s.lookahead >= MIN_MATCH) {
+      /*** INSERT_STRING(s, s.strstart, hash_head); ***/
+      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
+      hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
+      s.head[s.ins_h] = s.strstart;
+      /***/
+    }
+
+    /* Find the longest match, discarding those <= prev_length.
+     */
+    s.prev_length = s.match_length;
+    s.prev_match = s.match_start;
+    s.match_length = MIN_MATCH - 1;
+
+    if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&
+        s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
+      /* To simplify the code, we prevent matches with the string
+       * of window index 0 (in particular we have to avoid a match
+       * of the string with itself at the start of the input file).
+       */
+      s.match_length = longest_match(s, hash_head);
+      /* longest_match() sets match_start */
+
+      if (s.match_length <= 5 &&
+         (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {
+
+        /* If prev_match is also MIN_MATCH, match_start is garbage
+         * but we will ignore the current match anyway.
+         */
+        s.match_length = MIN_MATCH - 1;
+      }
+    }
+    /* If there was a match at the previous step and the current
+     * match is not better, output the previous match:
+     */
+    if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
+      max_insert = s.strstart + s.lookahead - MIN_MATCH;
+      /* Do not insert strings in hash table beyond this. */
+
+      //check_match(s, s.strstart-1, s.prev_match, s.prev_length);
+
+      /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
+                     s.prev_length - MIN_MATCH, bflush);***/
+      bflush = trees._tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);
+      /* Insert in hash table all strings up to the end of the match.
+       * strstart-1 and strstart are already inserted. If there is not
+       * enough lookahead, the last two strings are not inserted in
+       * the hash table.
+       */
+      s.lookahead -= s.prev_length - 1;
+      s.prev_length -= 2;
+      do {
+        if (++s.strstart <= max_insert) {
+          /*** INSERT_STRING(s, s.strstart, hash_head); ***/
+          s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart + MIN_MATCH - 1]) & s.hash_mask;
+          hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];
+          s.head[s.ins_h] = s.strstart;
+          /***/
+        }
+      } while (--s.prev_length !== 0);
+      s.match_available = 0;
+      s.match_length = MIN_MATCH - 1;
+      s.strstart++;
+
+      if (bflush) {
+        /*** FLUSH_BLOCK(s, 0); ***/
+        flush_block_only(s, false);
+        if (s.strm.avail_out === 0) {
+          return BS_NEED_MORE;
+        }
+        /***/
+      }
+
+    } else if (s.match_available) {
+      /* If there was no match at the previous position, output a
+       * single literal. If there was a match but the current match
+       * is longer, truncate the previous match to a single literal.
+       */
+      //Tracevv((stderr,"%c", s->window[s->strstart-1]));
+      /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
+      bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
+
+      if (bflush) {
+        /*** FLUSH_BLOCK_ONLY(s, 0) ***/
+        flush_block_only(s, false);
+        /***/
+      }
+      s.strstart++;
+      s.lookahead--;
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+    } else {
+      /* There is no previous match to compare with, wait for
+       * the next step to decide.
+       */
+      s.match_available = 1;
+      s.strstart++;
+      s.lookahead--;
+    }
+  }
+  //Assert (flush != Z_NO_FLUSH, "no flush?");
+  if (s.match_available) {
+    //Tracevv((stderr,"%c", s->window[s->strstart-1]));
+    /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
+    bflush = trees._tr_tally(s, 0, s.window[s.strstart - 1]);
+
+    s.match_available = 0;
+  }
+  s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;
+  if (flush === Z_FINISH) {
+    /*** FLUSH_BLOCK(s, 1); ***/
+    flush_block_only(s, true);
+    if (s.strm.avail_out === 0) {
+      return BS_FINISH_STARTED;
+    }
+    /***/
+    return BS_FINISH_DONE;
+  }
+  if (s.last_lit) {
+    /*** FLUSH_BLOCK(s, 0); ***/
+    flush_block_only(s, false);
+    if (s.strm.avail_out === 0) {
+      return BS_NEED_MORE;
+    }
+    /***/
+  }
+
+  return BS_BLOCK_DONE;
+}
+
+
+/* ===========================================================================
+ * For Z_RLE, simply look for runs of bytes, generate matches only of distance
+ * one.  Do not maintain a hash table.  (It will be regenerated if this run of
+ * deflate switches away from Z_RLE.)
+ */
+function deflate_rle(s, flush) {
+  var bflush;            /* set if current block must be flushed */
+  var prev;              /* byte at distance one to match */
+  var scan, strend;      /* scan goes up to strend for length of run */
+
+  var _win = s.window;
+
+  for (;;) {
+    /* Make sure that we always have enough lookahead, except
+     * at the end of the input file. We need MAX_MATCH bytes
+     * for the longest run, plus one for the unrolled loop.
+     */
+    if (s.lookahead <= MAX_MATCH) {
+      fill_window(s);
+      if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
+        return BS_NEED_MORE;
+      }
+      if (s.lookahead === 0) { break; } /* flush the current block */
+    }
+
+    /* See how many times the previous byte repeats */
+    s.match_length = 0;
+    if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
+      scan = s.strstart - 1;
+      prev = _win[scan];
+      if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
+        strend = s.strstart + MAX_MATCH;
+        do {
+          /*jshint noempty:false*/
+        } while (prev === _win[++scan] && prev === _win[++scan] &&
+                 prev === _win[++scan] && prev === _win[++scan] &&
+                 prev === _win[++scan] && prev === _win[++scan] &&
+                 prev === _win[++scan] && prev === _win[++scan] &&
+                 scan < strend);
+        s.match_length = MAX_MATCH - (strend - scan);
+        if (s.match_length > s.lookahead) {
+          s.match_length = s.lookahead;
+        }
+      }
+      //Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
+    }
+
+    /* Emit match if have run of MIN_MATCH or longer, else emit literal */
+    if (s.match_length >= MIN_MATCH) {
+      //check_match(s, s.strstart, s.strstart - 1, s.match_length);
+
+      /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
+      bflush = trees._tr_tally(s, 1, s.match_length - MIN_MATCH);
+
+      s.lookahead -= s.match_length;
+      s.strstart += s.match_length;
+      s.match_length = 0;
+    } else {
+      /* No match, output a literal byte */
+      //Tracevv((stderr,"%c", s->window[s->strstart]));
+      /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
+      bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
+
+      s.lookahead--;
+      s.strstart++;
+    }
+    if (bflush) {
+      /*** FLUSH_BLOCK(s, 0); ***/
+      flush_block_only(s, false);
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+      /***/
+    }
+  }
+  s.insert = 0;
+  if (flush === Z_FINISH) {
+    /*** FLUSH_BLOCK(s, 1); ***/
+    flush_block_only(s, true);
+    if (s.strm.avail_out === 0) {
+      return BS_FINISH_STARTED;
+    }
+    /***/
+    return BS_FINISH_DONE;
+  }
+  if (s.last_lit) {
+    /*** FLUSH_BLOCK(s, 0); ***/
+    flush_block_only(s, false);
+    if (s.strm.avail_out === 0) {
+      return BS_NEED_MORE;
+    }
+    /***/
+  }
+  return BS_BLOCK_DONE;
+}
+
+/* ===========================================================================
+ * For Z_HUFFMAN_ONLY, do not look for matches.  Do not maintain a hash table.
+ * (It will be regenerated if this run of deflate switches away from Huffman.)
+ */
+function deflate_huff(s, flush) {
+  var bflush;             /* set if current block must be flushed */
+
+  for (;;) {
+    /* Make sure that we have a literal to write. */
+    if (s.lookahead === 0) {
+      fill_window(s);
+      if (s.lookahead === 0) {
+        if (flush === Z_NO_FLUSH) {
+          return BS_NEED_MORE;
+        }
+        break;      /* flush the current block */
+      }
+    }
+
+    /* Output a literal byte */
+    s.match_length = 0;
+    //Tracevv((stderr,"%c", s->window[s->strstart]));
+    /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
+    bflush = trees._tr_tally(s, 0, s.window[s.strstart]);
+    s.lookahead--;
+    s.strstart++;
+    if (bflush) {
+      /*** FLUSH_BLOCK(s, 0); ***/
+      flush_block_only(s, false);
+      if (s.strm.avail_out === 0) {
+        return BS_NEED_MORE;
+      }
+      /***/
+    }
+  }
+  s.insert = 0;
+  if (flush === Z_FINISH) {
+    /*** FLUSH_BLOCK(s, 1); ***/
+    flush_block_only(s, true);
+    if (s.strm.avail_out === 0) {
+      return BS_FINISH_STARTED;
+    }
+    /***/
+    return BS_FINISH_DONE;
+  }
+  if (s.last_lit) {
+    /*** FLUSH_BLOCK(s, 0); ***/
+    flush_block_only(s, false);
+    if (s.strm.avail_out === 0) {
+      return BS_NEED_MORE;
+    }
+    /***/
+  }
+  return BS_BLOCK_DONE;
+}
+
+/* Values for max_lazy_match, good_match and max_chain_length, depending on
+ * the desired pack level (0..9). The values given below have been tuned to
+ * exclude worst case performance for pathological files. Better values may be
+ * found for specific files.
+ */
+function Config(good_length, max_lazy, nice_length, max_chain, func) {
+  this.good_length = good_length;
+  this.max_lazy = max_lazy;
+  this.nice_length = nice_length;
+  this.max_chain = max_chain;
+  this.func = func;
+}
+
+var configuration_table;
+
+configuration_table = [
+  /*      good lazy nice chain */
+  new Config(0, 0, 0, 0, deflate_stored),          /* 0 store only */
+  new Config(4, 4, 8, 4, deflate_fast),            /* 1 max speed, no lazy matches */
+  new Config(4, 5, 16, 8, deflate_fast),           /* 2 */
+  new Config(4, 6, 32, 32, deflate_fast),          /* 3 */
+
+  new Config(4, 4, 16, 16, deflate_slow),          /* 4 lazy matches */
+  new Config(8, 16, 32, 32, deflate_slow),         /* 5 */
+  new Config(8, 16, 128, 128, deflate_slow),       /* 6 */
+  new Config(8, 32, 128, 256, deflate_slow),       /* 7 */
+  new Config(32, 128, 258, 1024, deflate_slow),    /* 8 */
+  new Config(32, 258, 258, 4096, deflate_slow)     /* 9 max compression */
+];
+
+
+/* ===========================================================================
+ * Initialize the "longest match" routines for a new zlib stream
+ */
+function lm_init(s) {
+  s.window_size = 2 * s.w_size;
+
+  /*** CLEAR_HASH(s); ***/
+  zero(s.head); // Fill with NIL (= 0);
+
+  /* Set the default configuration parameters:
+   */
+  s.max_lazy_match = configuration_table[s.level].max_lazy;
+  s.good_match = configuration_table[s.level].good_length;
+  s.nice_match = configuration_table[s.level].nice_length;
+  s.max_chain_length = configuration_table[s.level].max_chain;
+
+  s.strstart = 0;
+  s.block_start = 0;
+  s.lookahead = 0;
+  s.insert = 0;
+  s.match_length = s.prev_length = MIN_MATCH - 1;
+  s.match_available = 0;
+  s.ins_h = 0;
+}
+
+
+function DeflateState() {
+  this.strm = null;            /* pointer back to this zlib stream */
+  this.status = 0;            /* as the name implies */
+  this.pending_buf = null;      /* output still pending */
+  this.pending_buf_size = 0;  /* size of pending_buf */
+  this.pending_out = 0;       /* next pending byte to output to the stream */
+  this.pending = 0;           /* nb of bytes in the pending buffer */
+  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
+  this.gzhead = null;         /* gzip header information to write */
+  this.gzindex = 0;           /* where in extra, name, or comment */
+  this.method = Z_DEFLATED; /* can only be DEFLATED */
+  this.last_flush = -1;   /* value of flush param for previous deflate call */
+
+  this.w_size = 0;  /* LZ77 window size (32K by default) */
+  this.w_bits = 0;  /* log2(w_size)  (8..16) */
+  this.w_mask = 0;  /* w_size - 1 */
+
+  this.window = null;
+  /* Sliding window. Input bytes are read into the second half of the window,
+   * and move to the first half later to keep a dictionary of at least wSize
+   * bytes. With this organization, matches are limited to a distance of
+   * wSize-MAX_MATCH bytes, but this ensures that IO is always
+   * performed with a length multiple of the block size.
+   */
+
+  this.window_size = 0;
+  /* Actual size of window: 2*wSize, except when the user input buffer
+   * is directly used as sliding window.
+   */
+
+  this.prev = null;
+  /* Link to older string with same hash index. To limit the size of this
+   * array to 64K, this link is maintained only for the last 32K strings.
+   * An index in this array is thus a window index modulo 32K.
+   */
+
+  this.head = null;   /* Heads of the hash chains or NIL. */
+
+  this.ins_h = 0;       /* hash index of string to be inserted */
+  this.hash_size = 0;   /* number of elements in hash table */
+  this.hash_bits = 0;   /* log2(hash_size) */
+  this.hash_mask = 0;   /* hash_size-1 */
+
+  this.hash_shift = 0;
+  /* Number of bits by which ins_h must be shifted at each input
+   * step. It must be such that after MIN_MATCH steps, the oldest
+   * byte no longer takes part in the hash key, that is:
+   *   hash_shift * MIN_MATCH >= hash_bits
+   */
+
+  this.block_start = 0;
+  /* Window position at the beginning of the current output block. Gets
+   * negative when the window is moved backwards.
+   */
+
+  this.match_length = 0;      /* length of best match */
+  this.prev_match = 0;        /* previous match */
+  this.match_available = 0;   /* set if previous match exists */
+  this.strstart = 0;          /* start of string to insert */
+  this.match_start = 0;       /* start of matching string */
+  this.lookahead = 0;         /* number of valid bytes ahead in window */
+
+  this.prev_length = 0;
+  /* Length of the best match at previous step. Matches not greater than this
+   * are discarded. This is used in the lazy match evaluation.
+   */
+
+  this.max_chain_length = 0;
+  /* To speed up deflation, hash chains are never searched beyond this
+   * length.  A higher limit improves compression ratio but degrades the
+   * speed.
+   */
+
+  this.max_lazy_match = 0;
+  /* Attempt to find a better match only when the current match is strictly
+   * smaller than this value. This mechanism is used only for compression
+   * levels >= 4.
+   */
+  // That's alias to max_lazy_match, don't use directly
+  //this.max_insert_length = 0;
+  /* Insert new strings in the hash table only if the match length is not
+   * greater than this length. This saves time but degrades compression.
+   * max_insert_length is used only for compression levels <= 3.
+   */
+
+  this.level = 0;     /* compression level (1..9) */
+  this.strategy = 0;  /* favor or force Huffman coding*/
+
+  this.good_match = 0;
+  /* Use a faster search when the previous match is longer than this */
+
+  this.nice_match = 0; /* Stop searching when current match exceeds this */
+
+              /* used by trees.c: */
+
+  /* Didn't use ct_data typedef below to suppress compiler warning */
+
+  // struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
+  // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
+  // struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */
+
+  // Use flat array of DOUBLE size, with interleaved fata,
+  // because JS does not support effective
+  this.dyn_ltree  = new utils.Buf16(HEAP_SIZE * 2);
+  this.dyn_dtree  = new utils.Buf16((2 * D_CODES + 1) * 2);
+  this.bl_tree    = new utils.Buf16((2 * BL_CODES + 1) * 2);
+  zero(this.dyn_ltree);
+  zero(this.dyn_dtree);
+  zero(this.bl_tree);
+
+  this.l_desc   = null;         /* desc. for literal tree */
+  this.d_desc   = null;         /* desc. for distance tree */
+  this.bl_desc  = null;         /* desc. for bit length tree */
+
+  //ush bl_count[MAX_BITS+1];
+  this.bl_count = new utils.Buf16(MAX_BITS + 1);
+  /* number of codes at each bit length for an optimal tree */
+
+  //int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
+  this.heap = new utils.Buf16(2 * L_CODES + 1);  /* heap used to build the Huffman trees */
+  zero(this.heap);
+
+  this.heap_len = 0;               /* number of elements in the heap */
+  this.heap_max = 0;               /* element of largest frequency */
+  /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
+   * The same heap array is used to build all trees.
+   */
+
+  this.depth = new utils.Buf16(2 * L_CODES + 1); //uch depth[2*L_CODES+1];
+  zero(this.depth);
+  /* Depth of each subtree used as tie breaker for trees of equal frequency
+   */
+
+  this.l_buf = 0;          /* buffer index for literals or lengths */
+
+  this.lit_bufsize = 0;
+  /* Size of match buffer for literals/lengths.  There are 4 reasons for
+   * limiting lit_bufsize to 64K:
+   *   - frequencies can be kept in 16 bit counters
+   *   - if compression is not successful for the first block, all input
+   *     data is still in the window so we can still emit a stored block even
+   *     when input comes from standard input.  (This can also be done for
+   *     all blocks if lit_bufsize is not greater than 32K.)
+   *   - if compression is not successful for a file smaller than 64K, we can
+   *     even emit a stored file instead of a stored block (saving 5 bytes).
+   *     This is applicable only for zip (not gzip or zlib).
+   *   - creating new Huffman trees less frequently may not provide fast
+   *     adaptation to changes in the input data statistics. (Take for
+   *     example a binary file with poorly compressible code followed by
+   *     a highly compressible string table.) Smaller buffer sizes give
+   *     fast adaptation but have of course the overhead of transmitting
+   *     trees more frequently.
+   *   - I can't count above 4
+   */
+
+  this.last_lit = 0;      /* running index in l_buf */
+
+  this.d_buf = 0;
+  /* Buffer index for distances. To simplify the code, d_buf and l_buf have
+   * the same number of elements. To use different lengths, an extra flag
+   * array would be necessary.
+   */
+
+  this.opt_len = 0;       /* bit length of current block with optimal trees */
+  this.static_len = 0;    /* bit length of current block with static trees */
+  this.matches = 0;       /* number of string matches in current block */
+  this.insert = 0;        /* bytes at end of window left to insert */
+
+
+  this.bi_buf = 0;
+  /* Output buffer. bits are inserted starting at the bottom (least
+   * significant bits).
+   */
+  this.bi_valid = 0;
+  /* Number of valid bits in bi_buf.  All bits above the last valid bit
+   * are always zero.
+   */
+
+  // Used for window memory init. We safely ignore it for JS. That makes
+  // sense only for pointers and memory check tools.
+  //this.high_water = 0;
+  /* High water mark offset in window for initialized bytes -- bytes above
+   * this are set to zero in order to avoid memory check warnings when
+   * longest match routines access bytes past the input.  This is then
+   * updated to the new high water mark.
+   */
+}
+
+
+function deflateResetKeep(strm) {
+  var s;
+
+  if (!strm || !strm.state) {
+    return err(strm, Z_STREAM_ERROR);
+  }
+
+  strm.total_in = strm.total_out = 0;
+  strm.data_type = Z_UNKNOWN;
+
+  s = strm.state;
+  s.pending = 0;
+  s.pending_out = 0;
+
+  if (s.wrap < 0) {
+    s.wrap = -s.wrap;
+    /* was made negative by deflate(..., Z_FINISH); */
+  }
+  s.status = (s.wrap ? INIT_STATE : BUSY_STATE);
+  strm.adler = (s.wrap === 2) ?
+    0  // crc32(0, Z_NULL, 0)
+  :
+    1; // adler32(0, Z_NULL, 0)
+  s.last_flush = Z_NO_FLUSH;
+  trees._tr_init(s);
+  return Z_OK;
+}
+
+
+function deflateReset(strm) {
+  var ret = deflateResetKeep(strm);
+  if (ret === Z_OK) {
+    lm_init(strm.state);
+  }
+  return ret;
+}
+
+
+function deflateSetHeader(strm, head) {
+  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
+  if (strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
+  strm.state.gzhead = head;
+  return Z_OK;
+}
+
+
+function deflateInit2(strm, level, method, windowBits, memLevel, strategy) {
+  if (!strm) { // === Z_NULL
+    return Z_STREAM_ERROR;
+  }
+  var wrap = 1;
+
+  if (level === Z_DEFAULT_COMPRESSION) {
+    level = 6;
+  }
+
+  if (windowBits < 0) { /* suppress zlib wrapper */
+    wrap = 0;
+    windowBits = -windowBits;
+  }
+
+  else if (windowBits > 15) {
+    wrap = 2;           /* write gzip wrapper instead */
+    windowBits -= 16;
+  }
+
+
+  if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED ||
+    windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||
+    strategy < 0 || strategy > Z_FIXED) {
+    return err(strm, Z_STREAM_ERROR);
+  }
+
+
+  if (windowBits === 8) {
+    windowBits = 9;
+  }
+  /* until 256-byte window bug fixed */
+
+  var s = new DeflateState();
+
+  strm.state = s;
+  s.strm = strm;
+
+  s.wrap = wrap;
+  s.gzhead = null;
+  s.w_bits = windowBits;
+  s.w_size = 1 << s.w_bits;
+  s.w_mask = s.w_size - 1;
+
+  s.hash_bits = memLevel + 7;
+  s.hash_size = 1 << s.hash_bits;
+  s.hash_mask = s.hash_size - 1;
+  s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);
+
+  s.window = new utils.Buf8(s.w_size * 2);
+  s.head = new utils.Buf16(s.hash_size);
+  s.prev = new utils.Buf16(s.w_size);
+
+  // Don't need mem init magic for JS.
+  //s.high_water = 0;  /* nothing written to s->window yet */
+
+  s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */
+
+  s.pending_buf_size = s.lit_bufsize * 4;
+
+  //overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
+  //s->pending_buf = (uchf *) overlay;
+  s.pending_buf = new utils.Buf8(s.pending_buf_size);
+
+  // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)
+  //s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
+  s.d_buf = 1 * s.lit_bufsize;
+
+  //s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
+  s.l_buf = (1 + 2) * s.lit_bufsize;
+
+  s.level = level;
+  s.strategy = strategy;
+  s.method = method;
+
+  return deflateReset(strm);
+}
+
+function deflateInit(strm, level) {
+  return deflateInit2(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
+}
+
+
+function deflate(strm, flush) {
+  var old_flush, s;
+  var beg, val; // for gzip header write only
+
+  if (!strm || !strm.state ||
+    flush > Z_BLOCK || flush < 0) {
+    return strm ? err(strm, Z_STREAM_ERROR) : Z_STREAM_ERROR;
+  }
+
+  s = strm.state;
+
+  if (!strm.output ||
+      (!strm.input && strm.avail_in !== 0) ||
+      (s.status === FINISH_STATE && flush !== Z_FINISH)) {
+    return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR : Z_STREAM_ERROR);
+  }
+
+  s.strm = strm; /* just in case */
+  old_flush = s.last_flush;
+  s.last_flush = flush;
+
+  /* Write the header */
+  if (s.status === INIT_STATE) {
+
+    if (s.wrap === 2) { // GZIP header
+      strm.adler = 0;  //crc32(0L, Z_NULL, 0);
+      put_byte(s, 31);
+      put_byte(s, 139);
+      put_byte(s, 8);
+      if (!s.gzhead) { // s->gzhead == Z_NULL
+        put_byte(s, 0);
+        put_byte(s, 0);
+        put_byte(s, 0);
+        put_byte(s, 0);
+        put_byte(s, 0);
+        put_byte(s, s.level === 9 ? 2 :
+                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
+                     4 : 0));
+        put_byte(s, OS_CODE);
+        s.status = BUSY_STATE;
+      }
+      else {
+        put_byte(s, (s.gzhead.text ? 1 : 0) +
+                    (s.gzhead.hcrc ? 2 : 0) +
+                    (!s.gzhead.extra ? 0 : 4) +
+                    (!s.gzhead.name ? 0 : 8) +
+                    (!s.gzhead.comment ? 0 : 16)
+                );
+        put_byte(s, s.gzhead.time & 0xff);
+        put_byte(s, (s.gzhead.time >> 8) & 0xff);
+        put_byte(s, (s.gzhead.time >> 16) & 0xff);
+        put_byte(s, (s.gzhead.time >> 24) & 0xff);
+        put_byte(s, s.level === 9 ? 2 :
+                    (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?
+                     4 : 0));
+        put_byte(s, s.gzhead.os & 0xff);
+        if (s.gzhead.extra && s.gzhead.extra.length) {
+          put_byte(s, s.gzhead.extra.length & 0xff);
+          put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
+        }
+        if (s.gzhead.hcrc) {
+          strm.adler = crc32(strm.adler, s.pending_buf, s.pending, 0);
+        }
+        s.gzindex = 0;
+        s.status = EXTRA_STATE;
+      }
+    }
+    else // DEFLATE header
+    {
+      var header = (Z_DEFLATED + ((s.w_bits - 8) << 4)) << 8;
+      var level_flags = -1;
+
+      if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {
+        level_flags = 0;
+      } else if (s.level < 6) {
+        level_flags = 1;
+      } else if (s.level === 6) {
+        level_flags = 2;
+      } else {
+        level_flags = 3;
+      }
+      header |= (level_flags << 6);
+      if (s.strstart !== 0) { header |= PRESET_DICT; }
+      header += 31 - (header % 31);
+
+      s.status = BUSY_STATE;
+      putShortMSB(s, header);
+
+      /* Save the adler32 of the preset dictionary: */
+      if (s.strstart !== 0) {
+        putShortMSB(s, strm.adler >>> 16);
+        putShortMSB(s, strm.adler & 0xffff);
+      }
+      strm.adler = 1; // adler32(0L, Z_NULL, 0);
+    }
+  }
+
+//#ifdef GZIP
+  if (s.status === EXTRA_STATE) {
+    if (s.gzhead.extra/* != Z_NULL*/) {
+      beg = s.pending;  /* start of bytes to update crc */
+
+      while (s.gzindex < (s.gzhead.extra.length & 0xffff)) {
+        if (s.pending === s.pending_buf_size) {
+          if (s.gzhead.hcrc && s.pending > beg) {
+            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+          }
+          flush_pending(strm);
+          beg = s.pending;
+          if (s.pending === s.pending_buf_size) {
+            break;
+          }
+        }
+        put_byte(s, s.gzhead.extra[s.gzindex] & 0xff);
+        s.gzindex++;
+      }
+      if (s.gzhead.hcrc && s.pending > beg) {
+        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+      }
+      if (s.gzindex === s.gzhead.extra.length) {
+        s.gzindex = 0;
+        s.status = NAME_STATE;
+      }
+    }
+    else {
+      s.status = NAME_STATE;
+    }
+  }
+  if (s.status === NAME_STATE) {
+    if (s.gzhead.name/* != Z_NULL*/) {
+      beg = s.pending;  /* start of bytes to update crc */
+      //int val;
+
+      do {
+        if (s.pending === s.pending_buf_size) {
+          if (s.gzhead.hcrc && s.pending > beg) {
+            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+          }
+          flush_pending(strm);
+          beg = s.pending;
+          if (s.pending === s.pending_buf_size) {
+            val = 1;
+            break;
+          }
+        }
+        // JS specific: little magic to add zero terminator to end of string
+        if (s.gzindex < s.gzhead.name.length) {
+          val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
+        } else {
+          val = 0;
+        }
+        put_byte(s, val);
+      } while (val !== 0);
+
+      if (s.gzhead.hcrc && s.pending > beg) {
+        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+      }
+      if (val === 0) {
+        s.gzindex = 0;
+        s.status = COMMENT_STATE;
+      }
+    }
+    else {
+      s.status = COMMENT_STATE;
+    }
+  }
+  if (s.status === COMMENT_STATE) {
+    if (s.gzhead.comment/* != Z_NULL*/) {
+      beg = s.pending;  /* start of bytes to update crc */
+      //int val;
+
+      do {
+        if (s.pending === s.pending_buf_size) {
+          if (s.gzhead.hcrc && s.pending > beg) {
+            strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+          }
+          flush_pending(strm);
+          beg = s.pending;
+          if (s.pending === s.pending_buf_size) {
+            val = 1;
+            break;
+          }
+        }
+        // JS specific: little magic to add zero terminator to end of string
+        if (s.gzindex < s.gzhead.comment.length) {
+          val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
+        } else {
+          val = 0;
+        }
+        put_byte(s, val);
+      } while (val !== 0);
+
+      if (s.gzhead.hcrc && s.pending > beg) {
+        strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
+      }
+      if (val === 0) {
+        s.status = HCRC_STATE;
+      }
+    }
+    else {
+      s.status = HCRC_STATE;
+    }
+  }
+  if (s.status === HCRC_STATE) {
+    if (s.gzhead.hcrc) {
+      if (s.pending + 2 > s.pending_buf_size) {
+        flush_pending(strm);
+      }
+      if (s.pending + 2 <= s.pending_buf_size) {
+        put_byte(s, strm.adler & 0xff);
+        put_byte(s, (strm.adler >> 8) & 0xff);
+        strm.adler = 0; //crc32(0L, Z_NULL, 0);
+        s.status = BUSY_STATE;
+      }
+    }
+    else {
+      s.status = BUSY_STATE;
+    }
+  }
+//#endif
+
+  /* Flush as much pending output as possible */
+  if (s.pending !== 0) {
+    flush_pending(strm);
+    if (strm.avail_out === 0) {
+      /* Since avail_out is 0, deflate will be called again with
+       * more output space, but possibly with both pending and
+       * avail_in equal to zero. There won't be anything to do,
+       * but this is not an error situation so make sure we
+       * return OK instead of BUF_ERROR at next call of deflate:
+       */
+      s.last_flush = -1;
+      return Z_OK;
+    }
+
+    /* Make sure there is something to do and avoid duplicate consecutive
+     * flushes. For repeated and useless calls with Z_FINISH, we keep
+     * returning Z_STREAM_END instead of Z_BUF_ERROR.
+     */
+  } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&
+    flush !== Z_FINISH) {
+    return err(strm, Z_BUF_ERROR);
+  }
+
+  /* User must not provide more input after the first FINISH: */
+  if (s.status === FINISH_STATE && strm.avail_in !== 0) {
+    return err(strm, Z_BUF_ERROR);
+  }
+
+  /* Start a new block or continue the current one.
+   */
+  if (strm.avail_in !== 0 || s.lookahead !== 0 ||
+    (flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
+    var bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(s, flush) :
+      (s.strategy === Z_RLE ? deflate_rle(s, flush) :
+        configuration_table[s.level].func(s, flush));
+
+    if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
+      s.status = FINISH_STATE;
+    }
+    if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
+      if (strm.avail_out === 0) {
+        s.last_flush = -1;
+        /* avoid BUF_ERROR next call, see above */
+      }
+      return Z_OK;
+      /* If flush != Z_NO_FLUSH && avail_out == 0, the next call
+       * of deflate should use the same flush parameter to make sure
+       * that the flush is complete. So we don't have to output an
+       * empty block here, this will be done at next call. This also
+       * ensures that for a very small output buffer, we emit at most
+       * one empty block.
+       */
+    }
+    if (bstate === BS_BLOCK_DONE) {
+      if (flush === Z_PARTIAL_FLUSH) {
+        trees._tr_align(s);
+      }
+      else if (flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
+
+        trees._tr_stored_block(s, 0, 0, false);
+        /* For a full flush, this empty block will be recognized
+         * as a special marker by inflate_sync().
+         */
+        if (flush === Z_FULL_FLUSH) {
+          /*** CLEAR_HASH(s); ***/             /* forget history */
+          zero(s.head); // Fill with NIL (= 0);
+
+          if (s.lookahead === 0) {
+            s.strstart = 0;
+            s.block_start = 0;
+            s.insert = 0;
+          }
+        }
+      }
+      flush_pending(strm);
+      if (strm.avail_out === 0) {
+        s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */
+        return Z_OK;
+      }
+    }
+  }
+  //Assert(strm->avail_out > 0, "bug2");
+  //if (strm.avail_out <= 0) { throw new Error("bug2");}
+
+  if (flush !== Z_FINISH) { return Z_OK; }
+  if (s.wrap <= 0) { return Z_STREAM_END; }
+
+  /* Write the trailer */
+  if (s.wrap === 2) {
+    put_byte(s, strm.adler & 0xff);
+    put_byte(s, (strm.adler >> 8) & 0xff);
+    put_byte(s, (strm.adler >> 16) & 0xff);
+    put_byte(s, (strm.adler >> 24) & 0xff);
+    put_byte(s, strm.total_in & 0xff);
+    put_byte(s, (strm.total_in >> 8) & 0xff);
+    put_byte(s, (strm.total_in >> 16) & 0xff);
+    put_byte(s, (strm.total_in >> 24) & 0xff);
+  }
+  else
+  {
+    putShortMSB(s, strm.adler >>> 16);
+    putShortMSB(s, strm.adler & 0xffff);
+  }
+
+  flush_pending(strm);
+  /* If avail_out is zero, the application will call deflate again
+   * to flush the rest.
+   */
+  if (s.wrap > 0) { s.wrap = -s.wrap; }
+  /* write the trailer only once! */
+  return s.pending !== 0 ? Z_OK : Z_STREAM_END;
+}
+
+function deflateEnd(strm) {
+  var status;
+
+  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
+    return Z_STREAM_ERROR;
+  }
+
+  status = strm.state.status;
+  if (status !== INIT_STATE &&
+    status !== EXTRA_STATE &&
+    status !== NAME_STATE &&
+    status !== COMMENT_STATE &&
+    status !== HCRC_STATE &&
+    status !== BUSY_STATE &&
+    status !== FINISH_STATE
+  ) {
+    return err(strm, Z_STREAM_ERROR);
+  }
+
+  strm.state = null;
+
+  return status === BUSY_STATE ? err(strm, Z_DATA_ERROR) : Z_OK;
+}
+
+
+/* =========================================================================
+ * Initializes the compression dictionary from the given byte
+ * sequence without producing any compressed output.
+ */
+function deflateSetDictionary(strm, dictionary) {
+  var dictLength = dictionary.length;
+
+  var s;
+  var str, n;
+  var wrap;
+  var avail;
+  var next;
+  var input;
+  var tmpDict;
+
+  if (!strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
+    return Z_STREAM_ERROR;
+  }
+
+  s = strm.state;
+  wrap = s.wrap;
+
+  if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {
+    return Z_STREAM_ERROR;
+  }
+
+  /* when using zlib wrappers, compute Adler-32 for provided dictionary */
+  if (wrap === 1) {
+    /* adler32(strm->adler, dictionary, dictLength); */
+    strm.adler = adler32(strm.adler, dictionary, dictLength, 0);
+  }
+
+  s.wrap = 0;   /* avoid computing Adler-32 in read_buf */
+
+  /* if dictionary would fill window, just replace the history */
+  if (dictLength >= s.w_size) {
+    if (wrap === 0) {            /* already empty otherwise */
+      /*** CLEAR_HASH(s); ***/
+      zero(s.head); // Fill with NIL (= 0);
+      s.strstart = 0;
+      s.block_start = 0;
+      s.insert = 0;
+    }
+    /* use the tail */
+    // dictionary = dictionary.slice(dictLength - s.w_size);
+    tmpDict = new utils.Buf8(s.w_size);
+    utils.arraySet(tmpDict, dictionary, dictLength - s.w_size, s.w_size, 0);
+    dictionary = tmpDict;
+    dictLength = s.w_size;
+  }
+  /* insert dictionary into window and hash */
+  avail = strm.avail_in;
+  next = strm.next_in;
+  input = strm.input;
+  strm.avail_in = dictLength;
+  strm.next_in = 0;
+  strm.input = dictionary;
+  fill_window(s);
+  while (s.lookahead >= MIN_MATCH) {
+    str = s.strstart;
+    n = s.lookahead - (MIN_MATCH - 1);
+    do {
+      /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
+      s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str + MIN_MATCH - 1]) & s.hash_mask;
+
+      s.prev[str & s.w_mask] = s.head[s.ins_h];
+
+      s.head[s.ins_h] = str;
+      str++;
+    } while (--n);
+    s.strstart = str;
+    s.lookahead = MIN_MATCH - 1;
+    fill_window(s);
+  }
+  s.strstart += s.lookahead;
+  s.block_start = s.strstart;
+  s.insert = s.lookahead;
+  s.lookahead = 0;
+  s.match_length = s.prev_length = MIN_MATCH - 1;
+  s.match_available = 0;
+  strm.next_in = next;
+  strm.input = input;
+  strm.avail_in = avail;
+  s.wrap = wrap;
+  return Z_OK;
+}
+
+
+exports.deflateInit = deflateInit;
+exports.deflateInit2 = deflateInit2;
+exports.deflateReset = deflateReset;
+exports.deflateResetKeep = deflateResetKeep;
+exports.deflateSetHeader = deflateSetHeader;
+exports.deflate = deflate;
+exports.deflateEnd = deflateEnd;
+exports.deflateSetDictionary = deflateSetDictionary;
+exports.deflateInfo = 'pako deflate (from Nodeca project)';
+
+/* Not implemented
+exports.deflateBound = deflateBound;
+exports.deflateCopy = deflateCopy;
+exports.deflateParams = deflateParams;
+exports.deflatePending = deflatePending;
+exports.deflatePrime = deflatePrime;
+exports.deflateTune = deflateTune;
+*/
+
+},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+function GZheader() {
+  /* true if compressed data believed to be text */
+  this.text       = 0;
+  /* modification time */
+  this.time       = 0;
+  /* extra flags (not used when writing a gzip file) */
+  this.xflags     = 0;
+  /* operating system */
+  this.os         = 0;
+  /* pointer to extra field or Z_NULL if none */
+  this.extra      = null;
+  /* extra field length (valid if extra != Z_NULL) */
+  this.extra_len  = 0; // Actually, we don't need it in JS,
+                       // but leave for few code modifications
+
+  //
+  // Setup limits is not necessary because in js we should not preallocate memory
+  // for inflate use constant limit in 65536 bytes
+  //
+
+  /* space at extra (only when reading header) */
+  // this.extra_max  = 0;
+  /* pointer to zero-terminated file name or Z_NULL */
+  this.name       = '';
+  /* space at name (only when reading header) */
+  // this.name_max   = 0;
+  /* pointer to zero-terminated comment or Z_NULL */
+  this.comment    = '';
+  /* space at comment (only when reading header) */
+  // this.comm_max   = 0;
+  /* true if there was or will be a header crc */
+  this.hcrc       = 0;
+  /* true when done reading gzip header (not used when writing a gzip file) */
+  this.done       = false;
+}
+
+module.exports = GZheader;
+
+},{}],48:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+// See state defs from inflate.js
+var BAD = 30;       /* got a data error -- remain here until reset */
+var TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
+
+/*
+   Decode literal, length, and distance codes and write out the resulting
+   literal and match bytes until either not enough input or output is
+   available, an end-of-block is encountered, or a data error is encountered.
+   When large enough input and output buffers are supplied to inflate(), for
+   example, a 16K input buffer and a 64K output buffer, more than 95% of the
+   inflate execution time is spent in this routine.
+
+   Entry assumptions:
+
+        state.mode === LEN
+        strm.avail_in >= 6
+        strm.avail_out >= 258
+        start >= strm.avail_out
+        state.bits < 8
+
+   On return, state.mode is one of:
+
+        LEN -- ran out of enough output space or enough available input
+        TYPE -- reached end of block code, inflate() to interpret next block
+        BAD -- error in block data
+
+   Notes:
+
+    - The maximum input bits used by a length/distance pair is 15 bits for the
+      length code, 5 bits for the length extra, 15 bits for the distance code,
+      and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
+      Therefore if strm.avail_in >= 6, then there is enough input to avoid
+      checking for available input while decoding.
+
+    - The maximum bytes that a single length/distance pair can output is 258
+      bytes, which is the maximum length that can be coded.  inflate_fast()
+      requires strm.avail_out >= 258 for each loop to avoid checking for
+      output space.
+ */
+module.exports = function inflate_fast(strm, start) {
+  var state;
+  var _in;                    /* local strm.input */
+  var last;                   /* have enough input while in < last */
+  var _out;                   /* local strm.output */
+  var beg;                    /* inflate()'s initial strm.output */
+  var end;                    /* while out < end, enough space available */
+//#ifdef INFLATE_STRICT
+  var dmax;                   /* maximum distance from zlib header */
+//#endif
+  var wsize;                  /* window size or zero if not using window */
+  var whave;                  /* valid bytes in the window */
+  var wnext;                  /* window write index */
+  // Use `s_window` instead `window`, avoid conflict with instrumentation tools
+  var s_window;               /* allocated sliding window, if wsize != 0 */
+  var hold;                   /* local strm.hold */
+  var bits;                   /* local strm.bits */
+  var lcode;                  /* local strm.lencode */
+  var dcode;                  /* local strm.distcode */
+  var lmask;                  /* mask for first level of length codes */
+  var dmask;                  /* mask for first level of distance codes */
+  var here;                   /* retrieved table entry */
+  var op;                     /* code bits, operation, extra bits, or */
+                              /*  window position, window bytes to copy */
+  var len;                    /* match length, unused bytes */
+  var dist;                   /* match distance */
+  var from;                   /* where to copy match from */
+  var from_source;
+
+
+  var input, output; // JS specific, because we have no pointers
+
+  /* copy state to local variables */
+  state = strm.state;
+  //here = state.here;
+  _in = strm.next_in;
+  input = strm.input;
+  last = _in + (strm.avail_in - 5);
+  _out = strm.next_out;
+  output = strm.output;
+  beg = _out - (start - strm.avail_out);
+  end = _out + (strm.avail_out - 257);
+//#ifdef INFLATE_STRICT
+  dmax = state.dmax;
+//#endif
+  wsize = state.wsize;
+  whave = state.whave;
+  wnext = state.wnext;
+  s_window = state.window;
+  hold = state.hold;
+  bits = state.bits;
+  lcode = state.lencode;
+  dcode = state.distcode;
+  lmask = (1 << state.lenbits) - 1;
+  dmask = (1 << state.distbits) - 1;
+
+
+  /* decode literals and length/distances until end-of-block or not enough
+     input data or output space */
+
+  top:
+  do {
+    if (bits < 15) {
+      hold += input[_in++] << bits;
+      bits += 8;
+      hold += input[_in++] << bits;
+      bits += 8;
+    }
+
+    here = lcode[hold & lmask];
+
+    dolen:
+    for (;;) { // Goto emulation
+      op = here >>> 24/*here.bits*/;
+      hold >>>= op;
+      bits -= op;
+      op = (here >>> 16) & 0xff/*here.op*/;
+      if (op === 0) {                          /* literal */
+        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
+        //        "inflate:         literal '%c'\n" :
+        //        "inflate:         literal 0x%02x\n", here.val));
+        output[_out++] = here & 0xffff/*here.val*/;
+      }
+      else if (op & 16) {                     /* length base */
+        len = here & 0xffff/*here.val*/;
+        op &= 15;                           /* number of extra bits */
+        if (op) {
+          if (bits < op) {
+            hold += input[_in++] << bits;
+            bits += 8;
+          }
+          len += hold & ((1 << op) - 1);
+          hold >>>= op;
+          bits -= op;
+        }
+        //Tracevv((stderr, "inflate:         length %u\n", len));
+        if (bits < 15) {
+          hold += input[_in++] << bits;
+          bits += 8;
+          hold += input[_in++] << bits;
+          bits += 8;
+        }
+        here = dcode[hold & dmask];
+
+        dodist:
+        for (;;) { // goto emulation
+          op = here >>> 24/*here.bits*/;
+          hold >>>= op;
+          bits -= op;
+          op = (here >>> 16) & 0xff/*here.op*/;
+
+          if (op & 16) {                      /* distance base */
+            dist = here & 0xffff/*here.val*/;
+            op &= 15;                       /* number of extra bits */
+            if (bits < op) {
+              hold += input[_in++] << bits;
+              bits += 8;
+              if (bits < op) {
+                hold += input[_in++] << bits;
+                bits += 8;
+              }
+            }
+            dist += hold & ((1 << op) - 1);
+//#ifdef INFLATE_STRICT
+            if (dist > dmax) {
+              strm.msg = 'invalid distance too far back';
+              state.mode = BAD;
+              break top;
+            }
+//#endif
+            hold >>>= op;
+            bits -= op;
+            //Tracevv((stderr, "inflate:         distance %u\n", dist));
+            op = _out - beg;                /* max distance in output */
+            if (dist > op) {                /* see if copy from window */
+              op = dist - op;               /* distance back in window */
+              if (op > whave) {
+                if (state.sane) {
+                  strm.msg = 'invalid distance too far back';
+                  state.mode = BAD;
+                  break top;
+                }
+
+// (!) This block is disabled in zlib defailts,
+// don't enable it for binary compatibility
+//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
+//                if (len <= op - whave) {
+//                  do {
+//                    output[_out++] = 0;
+//                  } while (--len);
+//                  continue top;
+//                }
+//                len -= op - whave;
+//                do {
+//                  output[_out++] = 0;
+//                } while (--op > whave);
+//                if (op === 0) {
+//                  from = _out - dist;
+//                  do {
+//                    output[_out++] = output[from++];
+//                  } while (--len);
+//                  continue top;
+//                }
+//#endif
+              }
+              from = 0; // window index
+              from_source = s_window;
+              if (wnext === 0) {           /* very common case */
+                from += wsize - op;
+                if (op < len) {         /* some from window */
+                  len -= op;
+                  do {
+                    output[_out++] = s_window[from++];
+                  } while (--op);
+                  from = _out - dist;  /* rest from output */
+                  from_source = output;
+                }
+              }
+              else if (wnext < op) {      /* wrap around window */
+                from += wsize + wnext - op;
+                op -= wnext;
+                if (op < len) {         /* some from end of window */
+                  len -= op;
+                  do {
+                    output[_out++] = s_window[from++];
+                  } while (--op);
+                  from = 0;
+                  if (wnext < len) {  /* some from start of window */
+                    op = wnext;
+                    len -= op;
+                    do {
+                      output[_out++] = s_window[from++];
+                    } while (--op);
+                    from = _out - dist;      /* rest from output */
+                    from_source = output;
+                  }
+                }
+              }
+              else {                      /* contiguous in window */
+                from += wnext - op;
+                if (op < len) {         /* some from window */
+                  len -= op;
+                  do {
+                    output[_out++] = s_window[from++];
+                  } while (--op);
+                  from = _out - dist;  /* rest from output */
+                  from_source = output;
+                }
+              }
+              while (len > 2) {
+                output[_out++] = from_source[from++];
+                output[_out++] = from_source[from++];
+                output[_out++] = from_source[from++];
+                len -= 3;
+              }
+              if (len) {
+                output[_out++] = from_source[from++];
+                if (len > 1) {
+                  output[_out++] = from_source[from++];
+                }
+              }
+            }
+            else {
+              from = _out - dist;          /* copy direct from output */
+              do {                        /* minimum length is three */
+                output[_out++] = output[from++];
+                output[_out++] = output[from++];
+                output[_out++] = output[from++];
+                len -= 3;
+              } while (len > 2);
+              if (len) {
+                output[_out++] = output[from++];
+                if (len > 1) {
+                  output[_out++] = output[from++];
+                }
+              }
+            }
+          }
+          else if ((op & 64) === 0) {          /* 2nd level distance code */
+            here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
+            continue dodist;
+          }
+          else {
+            strm.msg = 'invalid distance code';
+            state.mode = BAD;
+            break top;
+          }
+
+          break; // need to emulate goto via "continue"
+        }
+      }
+      else if ((op & 64) === 0) {              /* 2nd level length code */
+        here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];
+        continue dolen;
+      }
+      else if (op & 32) {                     /* end-of-block */
+        //Tracevv((stderr, "inflate:         end of block\n"));
+        state.mode = TYPE;
+        break top;
+      }
+      else {
+        strm.msg = 'invalid literal/length code';
+        state.mode = BAD;
+        break top;
+      }
+
+      break; // need to emulate goto via "continue"
+    }
+  } while (_in < last && _out < end);
+
+  /* return unused bytes (on entry, bits < 8, so in won't go too far back) */
+  len = bits >> 3;
+  _in -= len;
+  bits -= len << 3;
+  hold &= (1 << bits) - 1;
+
+  /* update state and return */
+  strm.next_in = _in;
+  strm.next_out = _out;
+  strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));
+  strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));
+  state.hold = hold;
+  state.bits = bits;
+  return;
+};
+
+},{}],49:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+var utils         = require('../utils/common');
+var adler32       = require('./adler32');
+var crc32         = require('./crc32');
+var inflate_fast  = require('./inffast');
+var inflate_table = require('./inftrees');
+
+var CODES = 0;
+var LENS = 1;
+var DISTS = 2;
+
+/* Public constants ==========================================================*/
+/* ===========================================================================*/
+
+
+/* Allowed flush values; see deflate() and inflate() below for details */
+//var Z_NO_FLUSH      = 0;
+//var Z_PARTIAL_FLUSH = 1;
+//var Z_SYNC_FLUSH    = 2;
+//var Z_FULL_FLUSH    = 3;
+var Z_FINISH        = 4;
+var Z_BLOCK         = 5;
+var Z_TREES         = 6;
+
+
+/* Return codes for the compression/decompression functions. Negative values
+ * are errors, positive values are used for special but normal events.
+ */
+var Z_OK            = 0;
+var Z_STREAM_END    = 1;
+var Z_NEED_DICT     = 2;
+//var Z_ERRNO         = -1;
+var Z_STREAM_ERROR  = -2;
+var Z_DATA_ERROR    = -3;
+var Z_MEM_ERROR     = -4;
+var Z_BUF_ERROR     = -5;
+//var Z_VERSION_ERROR = -6;
+
+/* The deflate compression method */
+var Z_DEFLATED  = 8;
+
+
+/* STATES ====================================================================*/
+/* ===========================================================================*/
+
+
+var    HEAD = 1;       /* i: waiting for magic header */
+var    FLAGS = 2;      /* i: waiting for method and flags (gzip) */
+var    TIME = 3;       /* i: waiting for modification time (gzip) */
+var    OS = 4;         /* i: waiting for extra flags and operating system (gzip) */
+var    EXLEN = 5;      /* i: waiting for extra length (gzip) */
+var    EXTRA = 6;      /* i: waiting for extra bytes (gzip) */
+var    NAME = 7;       /* i: waiting for end of file name (gzip) */
+var    COMMENT = 8;    /* i: waiting for end of comment (gzip) */
+var    HCRC = 9;       /* i: waiting for header crc (gzip) */
+var    DICTID = 10;    /* i: waiting for dictionary check value */
+var    DICT = 11;      /* waiting for inflateSetDictionary() call */
+var        TYPE = 12;      /* i: waiting for type bits, including last-flag bit */
+var        TYPEDO = 13;    /* i: same, but skip check to exit inflate on new block */
+var        STORED = 14;    /* i: waiting for stored size (length and complement) */
+var        COPY_ = 15;     /* i/o: same as COPY below, but only first time in */
+var        COPY = 16;      /* i/o: waiting for input or output to copy stored block */
+var        TABLE = 17;     /* i: waiting for dynamic block table lengths */
+var        LENLENS = 18;   /* i: waiting for code length code lengths */
+var        CODELENS = 19;  /* i: waiting for length/lit and distance code lengths */
+var            LEN_ = 20;      /* i: same as LEN below, but only first time in */
+var            LEN = 21;       /* i: waiting for length/lit/eob code */
+var            LENEXT = 22;    /* i: waiting for length extra bits */
+var            DIST = 23;      /* i: waiting for distance code */
+var            DISTEXT = 24;   /* i: waiting for distance extra bits */
+var            MATCH = 25;     /* o: waiting for output space to copy string */
+var            LIT = 26;       /* o: waiting for output space to write literal */
+var    CHECK = 27;     /* i: waiting for 32-bit check value */
+var    LENGTH = 28;    /* i: waiting for 32-bit length (gzip) */
+var    DONE = 29;      /* finished check, done -- remain here until reset */
+var    BAD = 30;       /* got a data error -- remain here until reset */
+var    MEM = 31;       /* got an inflate() memory error -- remain here until reset */
+var    SYNC = 32;      /* looking for synchronization bytes to restart inflate() */
+
+/* ===========================================================================*/
+
+
+
+var ENOUGH_LENS = 852;
+var ENOUGH_DISTS = 592;
+//var ENOUGH =  (ENOUGH_LENS+ENOUGH_DISTS);
+
+var MAX_WBITS = 15;
+/* 32K LZ77 window */
+var DEF_WBITS = MAX_WBITS;
+
+
+function zswap32(q) {
+  return  (((q >>> 24) & 0xff) +
+          ((q >>> 8) & 0xff00) +
+          ((q & 0xff00) << 8) +
+          ((q & 0xff) << 24));
+}
+
+
+function InflateState() {
+  this.mode = 0;             /* current inflate mode */
+  this.last = false;          /* true if processing last block */
+  this.wrap = 0;              /* bit 0 true for zlib, bit 1 true for gzip */
+  this.havedict = false;      /* true if dictionary provided */
+  this.flags = 0;             /* gzip header method and flags (0 if zlib) */
+  this.dmax = 0;              /* zlib header max distance (INFLATE_STRICT) */
+  this.check = 0;             /* protected copy of check value */
+  this.total = 0;             /* protected copy of output count */
+  // TODO: may be {}
+  this.head = null;           /* where to save gzip header information */
+
+  /* sliding window */
+  this.wbits = 0;             /* log base 2 of requested window size */
+  this.wsize = 0;             /* window size or zero if not using window */
+  this.whave = 0;             /* valid bytes in the window */
+  this.wnext = 0;             /* window write index */
+  this.window = null;         /* allocated sliding window, if needed */
+
+  /* bit accumulator */
+  this.hold = 0;              /* input bit accumulator */
+  this.bits = 0;              /* number of bits in "in" */
+
+  /* for string and stored block copying */
+  this.length = 0;            /* literal or length of data to copy */
+  this.offset = 0;            /* distance back to copy string from */
+
+  /* for table and code decoding */
+  this.extra = 0;             /* extra bits needed */
+
+  /* fixed and dynamic code tables */
+  this.lencode = null;          /* starting table for length/literal codes */
+  this.distcode = null;         /* starting table for distance codes */
+  this.lenbits = 0;           /* index bits for lencode */
+  this.distbits = 0;          /* index bits for distcode */
+
+  /* dynamic table building */
+  this.ncode = 0;             /* number of code length code lengths */
+  this.nlen = 0;              /* number of length code lengths */
+  this.ndist = 0;             /* number of distance code lengths */
+  this.have = 0;              /* number of code lengths in lens[] */
+  this.next = null;              /* next available space in codes[] */
+
+  this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
+  this.work = new utils.Buf16(288); /* work area for code table building */
+
+  /*
+   because we don't have pointers in js, we use lencode and distcode directly
+   as buffers so we don't need codes
+  */
+  //this.codes = new utils.Buf32(ENOUGH);       /* space for code tables */
+  this.lendyn = null;              /* dynamic table for length/literal codes (JS specific) */
+  this.distdyn = null;             /* dynamic table for distance codes (JS specific) */
+  this.sane = 0;                   /* if false, allow invalid distance too far */
+  this.back = 0;                   /* bits back of last unprocessed length/lit */
+  this.was = 0;                    /* initial length of match */
+}
+
+function inflateResetKeep(strm) {
+  var state;
+
+  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
+  state = strm.state;
+  strm.total_in = strm.total_out = state.total = 0;
+  strm.msg = ''; /*Z_NULL*/
+  if (state.wrap) {       /* to support ill-conceived Java test suite */
+    strm.adler = state.wrap & 1;
+  }
+  state.mode = HEAD;
+  state.last = 0;
+  state.havedict = 0;
+  state.dmax = 32768;
+  state.head = null/*Z_NULL*/;
+  state.hold = 0;
+  state.bits = 0;
+  //state.lencode = state.distcode = state.next = state.codes;
+  state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS);
+  state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS);
+
+  state.sane = 1;
+  state.back = -1;
+  //Tracev((stderr, "inflate: reset\n"));
+  return Z_OK;
+}
+
+function inflateReset(strm) {
+  var state;
+
+  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
+  state = strm.state;
+  state.wsize = 0;
+  state.whave = 0;
+  state.wnext = 0;
+  return inflateResetKeep(strm);
+
+}
+
+function inflateReset2(strm, windowBits) {
+  var wrap;
+  var state;
+
+  /* get the state */
+  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
+  state = strm.state;
+
+  /* extract wrap request from windowBits parameter */
+  if (windowBits < 0) {
+    wrap = 0;
+    windowBits = -windowBits;
+  }
+  else {
+    wrap = (windowBits >> 4) + 1;
+    if (windowBits < 48) {
+      windowBits &= 15;
+    }
+  }
+
+  /* set number of window bits, free window if different */
+  if (windowBits && (windowBits < 8 || windowBits > 15)) {
+    return Z_STREAM_ERROR;
+  }
+  if (state.window !== null && state.wbits !== windowBits) {
+    state.window = null;
+  }
+
+  /* update state and reset the rest of it */
+  state.wrap = wrap;
+  state.wbits = windowBits;
+  return inflateReset(strm);
+}
+
+function inflateInit2(strm, windowBits) {
+  var ret;
+  var state;
+
+  if (!strm) { return Z_STREAM_ERROR; }
+  //strm.msg = Z_NULL;                 /* in case we return an error */
+
+  state = new InflateState();
+
+  //if (state === Z_NULL) return Z_MEM_ERROR;
+  //Tracev((stderr, "inflate: allocated\n"));
+  strm.state = state;
+  state.window = null/*Z_NULL*/;
+  ret = inflateReset2(strm, windowBits);
+  if (ret !== Z_OK) {
+    strm.state = null/*Z_NULL*/;
+  }
+  return ret;
+}
+
+function inflateInit(strm) {
+  return inflateInit2(strm, DEF_WBITS);
+}
+
+
+/*
+ Return state with length and distance decoding tables and index sizes set to
+ fixed code decoding.  Normally this returns fixed tables from inffixed.h.
+ If BUILDFIXED is defined, then instead this routine builds the tables the
+ first time it's called, and returns those tables the first time and
+ thereafter.  This reduces the size of the code by about 2K bytes, in
+ exchange for a little execution time.  However, BUILDFIXED should not be
+ used for threaded applications, since the rewriting of the tables and virgin
+ may not be thread-safe.
+ */
+var virgin = true;
+
+var lenfix, distfix; // We have no pointers in JS, so keep tables separate
+
+function fixedtables(state) {
+  /* build fixed huffman tables if first call (may not be thread safe) */
+  if (virgin) {
+    var sym;
+
+    lenfix = new utils.Buf32(512);
+    distfix = new utils.Buf32(32);
+
+    /* literal/length table */
+    sym = 0;
+    while (sym < 144) { state.lens[sym++] = 8; }
+    while (sym < 256) { state.lens[sym++] = 9; }
+    while (sym < 280) { state.lens[sym++] = 7; }
+    while (sym < 288) { state.lens[sym++] = 8; }
+
+    inflate_table(LENS,  state.lens, 0, 288, lenfix,   0, state.work, { bits: 9 });
+
+    /* distance table */
+    sym = 0;
+    while (sym < 32) { state.lens[sym++] = 5; }
+
+    inflate_table(DISTS, state.lens, 0, 32,   distfix, 0, state.work, { bits: 5 });
+
+    /* do this just once */
+    virgin = false;
+  }
+
+  state.lencode = lenfix;
+  state.lenbits = 9;
+  state.distcode = distfix;
+  state.distbits = 5;
+}
+
+
+/*
+ Update the window with the last wsize (normally 32K) bytes written before
+ returning.  If window does not exist yet, create it.  This is only called
+ when a window is already in use, or when output has been written during this
+ inflate call, but the end of the deflate stream has not been reached yet.
+ It is also called to create a window for dictionary data when a dictionary
+ is loaded.
+
+ Providing output buffers larger than 32K to inflate() should provide a speed
+ advantage, since only the last 32K of output is copied to the sliding window
+ upon return from inflate(), and since all distances after the first 32K of
+ output will fall in the output data, making match copies simpler and faster.
+ The advantage may be dependent on the size of the processor's data caches.
+ */
+function updatewindow(strm, src, end, copy) {
+  var dist;
+  var state = strm.state;
+
+  /* if it hasn't been done already, allocate space for the window */
+  if (state.window === null) {
+    state.wsize = 1 << state.wbits;
+    state.wnext = 0;
+    state.whave = 0;
+
+    state.window = new utils.Buf8(state.wsize);
+  }
+
+  /* copy state->wsize or less output bytes into the circular window */
+  if (copy >= state.wsize) {
+    utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0);
+    state.wnext = 0;
+    state.whave = state.wsize;
+  }
+  else {
+    dist = state.wsize - state.wnext;
+    if (dist > copy) {
+      dist = copy;
+    }
+    //zmemcpy(state->window + state->wnext, end - copy, dist);
+    utils.arraySet(state.window, src, end - copy, dist, state.wnext);
+    copy -= dist;
+    if (copy) {
+      //zmemcpy(state->window, end - copy, copy);
+      utils.arraySet(state.window, src, end - copy, copy, 0);
+      state.wnext = copy;
+      state.whave = state.wsize;
+    }
+    else {
+      state.wnext += dist;
+      if (state.wnext === state.wsize) { state.wnext = 0; }
+      if (state.whave < state.wsize) { state.whave += dist; }
+    }
+  }
+  return 0;
+}
+
+function inflate(strm, flush) {
+  var state;
+  var input, output;          // input/output buffers
+  var next;                   /* next input INDEX */
+  var put;                    /* next output INDEX */
+  var have, left;             /* available input and output */
+  var hold;                   /* bit buffer */
+  var bits;                   /* bits in bit buffer */
+  var _in, _out;              /* save starting available input and output */
+  var copy;                   /* number of stored or match bytes to copy */
+  var from;                   /* where to copy match bytes from */
+  var from_source;
+  var here = 0;               /* current decoding table entry */
+  var here_bits, here_op, here_val; // paked "here" denormalized (JS specific)
+  //var last;                   /* parent table entry */
+  var last_bits, last_op, last_val; // paked "last" denormalized (JS specific)
+  var len;                    /* length to copy for repeats, bits to drop */
+  var ret;                    /* return code */
+  var hbuf = new utils.Buf8(4);    /* buffer for gzip header crc calculation */
+  var opts;
+
+  var n; // temporary var for NEED_BITS
+
+  var order = /* permutation of code lengths */
+    [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ];
+
+
+  if (!strm || !strm.state || !strm.output ||
+      (!strm.input && strm.avail_in !== 0)) {
+    return Z_STREAM_ERROR;
+  }
+
+  state = strm.state;
+  if (state.mode === TYPE) { state.mode = TYPEDO; }    /* skip check */
+
+
+  //--- LOAD() ---
+  put = strm.next_out;
+  output = strm.output;
+  left = strm.avail_out;
+  next = strm.next_in;
+  input = strm.input;
+  have = strm.avail_in;
+  hold = state.hold;
+  bits = state.bits;
+  //---
+
+  _in = have;
+  _out = left;
+  ret = Z_OK;
+
+  inf_leave: // goto emulation
+  for (;;) {
+    switch (state.mode) {
+    case HEAD:
+      if (state.wrap === 0) {
+        state.mode = TYPEDO;
+        break;
+      }
+      //=== NEEDBITS(16);
+      while (bits < 16) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      if ((state.wrap & 2) && hold === 0x8b1f) {  /* gzip header */
+        state.check = 0/*crc32(0L, Z_NULL, 0)*/;
+        //=== CRC2(state.check, hold);
+        hbuf[0] = hold & 0xff;
+        hbuf[1] = (hold >>> 8) & 0xff;
+        state.check = crc32(state.check, hbuf, 2, 0);
+        //===//
+
+        //=== INITBITS();
+        hold = 0;
+        bits = 0;
+        //===//
+        state.mode = FLAGS;
+        break;
+      }
+      state.flags = 0;           /* expect zlib header */
+      if (state.head) {
+        state.head.done = false;
+      }
+      if (!(state.wrap & 1) ||   /* check if zlib header allowed */
+        (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
+        strm.msg = 'incorrect header check';
+        state.mode = BAD;
+        break;
+      }
+      if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
+        strm.msg = 'unknown compression method';
+        state.mode = BAD;
+        break;
+      }
+      //--- DROPBITS(4) ---//
+      hold >>>= 4;
+      bits -= 4;
+      //---//
+      len = (hold & 0x0f)/*BITS(4)*/ + 8;
+      if (state.wbits === 0) {
+        state.wbits = len;
+      }
+      else if (len > state.wbits) {
+        strm.msg = 'invalid window size';
+        state.mode = BAD;
+        break;
+      }
+      state.dmax = 1 << len;
+      //Tracev((stderr, "inflate:   zlib header ok\n"));
+      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
+      state.mode = hold & 0x200 ? DICTID : TYPE;
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      break;
+    case FLAGS:
+      //=== NEEDBITS(16); */
+      while (bits < 16) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      state.flags = hold;
+      if ((state.flags & 0xff) !== Z_DEFLATED) {
+        strm.msg = 'unknown compression method';
+        state.mode = BAD;
+        break;
+      }
+      if (state.flags & 0xe000) {
+        strm.msg = 'unknown header flags set';
+        state.mode = BAD;
+        break;
+      }
+      if (state.head) {
+        state.head.text = ((hold >> 8) & 1);
+      }
+      if (state.flags & 0x0200) {
+        //=== CRC2(state.check, hold);
+        hbuf[0] = hold & 0xff;
+        hbuf[1] = (hold >>> 8) & 0xff;
+        state.check = crc32(state.check, hbuf, 2, 0);
+        //===//
+      }
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      state.mode = TIME;
+      /* falls through */
+    case TIME:
+      //=== NEEDBITS(32); */
+      while (bits < 32) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      if (state.head) {
+        state.head.time = hold;
+      }
+      if (state.flags & 0x0200) {
+        //=== CRC4(state.check, hold)
+        hbuf[0] = hold & 0xff;
+        hbuf[1] = (hold >>> 8) & 0xff;
+        hbuf[2] = (hold >>> 16) & 0xff;
+        hbuf[3] = (hold >>> 24) & 0xff;
+        state.check = crc32(state.check, hbuf, 4, 0);
+        //===
+      }
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      state.mode = OS;
+      /* falls through */
+    case OS:
+      //=== NEEDBITS(16); */
+      while (bits < 16) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      if (state.head) {
+        state.head.xflags = (hold & 0xff);
+        state.head.os = (hold >> 8);
+      }
+      if (state.flags & 0x0200) {
+        //=== CRC2(state.check, hold);
+        hbuf[0] = hold & 0xff;
+        hbuf[1] = (hold >>> 8) & 0xff;
+        state.check = crc32(state.check, hbuf, 2, 0);
+        //===//
+      }
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      state.mode = EXLEN;
+      /* falls through */
+    case EXLEN:
+      if (state.flags & 0x0400) {
+        //=== NEEDBITS(16); */
+        while (bits < 16) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        state.length = hold;
+        if (state.head) {
+          state.head.extra_len = hold;
+        }
+        if (state.flags & 0x0200) {
+          //=== CRC2(state.check, hold);
+          hbuf[0] = hold & 0xff;
+          hbuf[1] = (hold >>> 8) & 0xff;
+          state.check = crc32(state.check, hbuf, 2, 0);
+          //===//
+        }
+        //=== INITBITS();
+        hold = 0;
+        bits = 0;
+        //===//
+      }
+      else if (state.head) {
+        state.head.extra = null/*Z_NULL*/;
+      }
+      state.mode = EXTRA;
+      /* falls through */
+    case EXTRA:
+      if (state.flags & 0x0400) {
+        copy = state.length;
+        if (copy > have) { copy = have; }
+        if (copy) {
+          if (state.head) {
+            len = state.head.extra_len - state.length;
+            if (!state.head.extra) {
+              // Use untyped array for more conveniend processing later
+              state.head.extra = new Array(state.head.extra_len);
+            }
+            utils.arraySet(
+              state.head.extra,
+              input,
+              next,
+              // extra field is limited to 65536 bytes
+              // - no need for additional size check
+              copy,
+              /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
+              len
+            );
+            //zmemcpy(state.head.extra + len, next,
+            //        len + copy > state.head.extra_max ?
+            //        state.head.extra_max - len : copy);
+          }
+          if (state.flags & 0x0200) {
+            state.check = crc32(state.check, input, copy, next);
+          }
+          have -= copy;
+          next += copy;
+          state.length -= copy;
+        }
+        if (state.length) { break inf_leave; }
+      }
+      state.length = 0;
+      state.mode = NAME;
+      /* falls through */
+    case NAME:
+      if (state.flags & 0x0800) {
+        if (have === 0) { break inf_leave; }
+        copy = 0;
+        do {
+          // TODO: 2 or 1 bytes?
+          len = input[next + copy++];
+          /* use constant limit because in js we should not preallocate memory */
+          if (state.head && len &&
+              (state.length < 65536 /*state.head.name_max*/)) {
+            state.head.name += String.fromCharCode(len);
+          }
+        } while (len && copy < have);
+
+        if (state.flags & 0x0200) {
+          state.check = crc32(state.check, input, copy, next);
+        }
+        have -= copy;
+        next += copy;
+        if (len) { break inf_leave; }
+      }
+      else if (state.head) {
+        state.head.name = null;
+      }
+      state.length = 0;
+      state.mode = COMMENT;
+      /* falls through */
+    case COMMENT:
+      if (state.flags & 0x1000) {
+        if (have === 0) { break inf_leave; }
+        copy = 0;
+        do {
+          len = input[next + copy++];
+          /* use constant limit because in js we should not preallocate memory */
+          if (state.head && len &&
+              (state.length < 65536 /*state.head.comm_max*/)) {
+            state.head.comment += String.fromCharCode(len);
+          }
+        } while (len && copy < have);
+        if (state.flags & 0x0200) {
+          state.check = crc32(state.check, input, copy, next);
+        }
+        have -= copy;
+        next += copy;
+        if (len) { break inf_leave; }
+      }
+      else if (state.head) {
+        state.head.comment = null;
+      }
+      state.mode = HCRC;
+      /* falls through */
+    case HCRC:
+      if (state.flags & 0x0200) {
+        //=== NEEDBITS(16); */
+        while (bits < 16) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        if (hold !== (state.check & 0xffff)) {
+          strm.msg = 'header crc mismatch';
+          state.mode = BAD;
+          break;
+        }
+        //=== INITBITS();
+        hold = 0;
+        bits = 0;
+        //===//
+      }
+      if (state.head) {
+        state.head.hcrc = ((state.flags >> 9) & 1);
+        state.head.done = true;
+      }
+      strm.adler = state.check = 0;
+      state.mode = TYPE;
+      break;
+    case DICTID:
+      //=== NEEDBITS(32); */
+      while (bits < 32) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      strm.adler = state.check = zswap32(hold);
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      state.mode = DICT;
+      /* falls through */
+    case DICT:
+      if (state.havedict === 0) {
+        //--- RESTORE() ---
+        strm.next_out = put;
+        strm.avail_out = left;
+        strm.next_in = next;
+        strm.avail_in = have;
+        state.hold = hold;
+        state.bits = bits;
+        //---
+        return Z_NEED_DICT;
+      }
+      strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;
+      state.mode = TYPE;
+      /* falls through */
+    case TYPE:
+      if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
+      /* falls through */
+    case TYPEDO:
+      if (state.last) {
+        //--- BYTEBITS() ---//
+        hold >>>= bits & 7;
+        bits -= bits & 7;
+        //---//
+        state.mode = CHECK;
+        break;
+      }
+      //=== NEEDBITS(3); */
+      while (bits < 3) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      state.last = (hold & 0x01)/*BITS(1)*/;
+      //--- DROPBITS(1) ---//
+      hold >>>= 1;
+      bits -= 1;
+      //---//
+
+      switch ((hold & 0x03)/*BITS(2)*/) {
+      case 0:                             /* stored block */
+        //Tracev((stderr, "inflate:     stored block%s\n",
+        //        state.last ? " (last)" : ""));
+        state.mode = STORED;
+        break;
+      case 1:                             /* fixed block */
+        fixedtables(state);
+        //Tracev((stderr, "inflate:     fixed codes block%s\n",
+        //        state.last ? " (last)" : ""));
+        state.mode = LEN_;             /* decode codes */
+        if (flush === Z_TREES) {
+          //--- DROPBITS(2) ---//
+          hold >>>= 2;
+          bits -= 2;
+          //---//
+          break inf_leave;
+        }
+        break;
+      case 2:                             /* dynamic block */
+        //Tracev((stderr, "inflate:     dynamic codes block%s\n",
+        //        state.last ? " (last)" : ""));
+        state.mode = TABLE;
+        break;
+      case 3:
+        strm.msg = 'invalid block type';
+        state.mode = BAD;
+      }
+      //--- DROPBITS(2) ---//
+      hold >>>= 2;
+      bits -= 2;
+      //---//
+      break;
+    case STORED:
+      //--- BYTEBITS() ---// /* go to byte boundary */
+      hold >>>= bits & 7;
+      bits -= bits & 7;
+      //---//
+      //=== NEEDBITS(32); */
+      while (bits < 32) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
+        strm.msg = 'invalid stored block lengths';
+        state.mode = BAD;
+        break;
+      }
+      state.length = hold & 0xffff;
+      //Tracev((stderr, "inflate:       stored length %u\n",
+      //        state.length));
+      //=== INITBITS();
+      hold = 0;
+      bits = 0;
+      //===//
+      state.mode = COPY_;
+      if (flush === Z_TREES) { break inf_leave; }
+      /* falls through */
+    case COPY_:
+      state.mode = COPY;
+      /* falls through */
+    case COPY:
+      copy = state.length;
+      if (copy) {
+        if (copy > have) { copy = have; }
+        if (copy > left) { copy = left; }
+        if (copy === 0) { break inf_leave; }
+        //--- zmemcpy(put, next, copy); ---
+        utils.arraySet(output, input, next, copy, put);
+        //---//
+        have -= copy;
+        next += copy;
+        left -= copy;
+        put += copy;
+        state.length -= copy;
+        break;
+      }
+      //Tracev((stderr, "inflate:       stored end\n"));
+      state.mode = TYPE;
+      break;
+    case TABLE:
+      //=== NEEDBITS(14); */
+      while (bits < 14) {
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+      }
+      //===//
+      state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;
+      //--- DROPBITS(5) ---//
+      hold >>>= 5;
+      bits -= 5;
+      //---//
+      state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;
+      //--- DROPBITS(5) ---//
+      hold >>>= 5;
+      bits -= 5;
+      //---//
+      state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;
+      //--- DROPBITS(4) ---//
+      hold >>>= 4;
+      bits -= 4;
+      //---//
+//#ifndef PKZIP_BUG_WORKAROUND
+      if (state.nlen > 286 || state.ndist > 30) {
+        strm.msg = 'too many length or distance symbols';
+        state.mode = BAD;
+        break;
+      }
+//#endif
+      //Tracev((stderr, "inflate:       table sizes ok\n"));
+      state.have = 0;
+      state.mode = LENLENS;
+      /* falls through */
+    case LENLENS:
+      while (state.have < state.ncode) {
+        //=== NEEDBITS(3);
+        while (bits < 3) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);
+        //--- DROPBITS(3) ---//
+        hold >>>= 3;
+        bits -= 3;
+        //---//
+      }
+      while (state.have < 19) {
+        state.lens[order[state.have++]] = 0;
+      }
+      // We have separate tables & no pointers. 2 commented lines below not needed.
+      //state.next = state.codes;
+      //state.lencode = state.next;
+      // Switch to use dynamic table
+      state.lencode = state.lendyn;
+      state.lenbits = 7;
+
+      opts = { bits: state.lenbits };
+      ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
+      state.lenbits = opts.bits;
+
+      if (ret) {
+        strm.msg = 'invalid code lengths set';
+        state.mode = BAD;
+        break;
+      }
+      //Tracev((stderr, "inflate:       code lengths ok\n"));
+      state.have = 0;
+      state.mode = CODELENS;
+      /* falls through */
+    case CODELENS:
+      while (state.have < state.nlen + state.ndist) {
+        for (;;) {
+          here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/
+          here_bits = here >>> 24;
+          here_op = (here >>> 16) & 0xff;
+          here_val = here & 0xffff;
+
+          if ((here_bits) <= bits) { break; }
+          //--- PULLBYTE() ---//
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+          //---//
+        }
+        if (here_val < 16) {
+          //--- DROPBITS(here.bits) ---//
+          hold >>>= here_bits;
+          bits -= here_bits;
+          //---//
+          state.lens[state.have++] = here_val;
+        }
+        else {
+          if (here_val === 16) {
+            //=== NEEDBITS(here.bits + 2);
+            n = here_bits + 2;
+            while (bits < n) {
+              if (have === 0) { break inf_leave; }
+              have--;
+              hold += input[next++] << bits;
+              bits += 8;
+            }
+            //===//
+            //--- DROPBITS(here.bits) ---//
+            hold >>>= here_bits;
+            bits -= here_bits;
+            //---//
+            if (state.have === 0) {
+              strm.msg = 'invalid bit length repeat';
+              state.mode = BAD;
+              break;
+            }
+            len = state.lens[state.have - 1];
+            copy = 3 + (hold & 0x03);//BITS(2);
+            //--- DROPBITS(2) ---//
+            hold >>>= 2;
+            bits -= 2;
+            //---//
+          }
+          else if (here_val === 17) {
+            //=== NEEDBITS(here.bits + 3);
+            n = here_bits + 3;
+            while (bits < n) {
+              if (have === 0) { break inf_leave; }
+              have--;
+              hold += input[next++] << bits;
+              bits += 8;
+            }
+            //===//
+            //--- DROPBITS(here.bits) ---//
+            hold >>>= here_bits;
+            bits -= here_bits;
+            //---//
+            len = 0;
+            copy = 3 + (hold & 0x07);//BITS(3);
+            //--- DROPBITS(3) ---//
+            hold >>>= 3;
+            bits -= 3;
+            //---//
+          }
+          else {
+            //=== NEEDBITS(here.bits + 7);
+            n = here_bits + 7;
+            while (bits < n) {
+              if (have === 0) { break inf_leave; }
+              have--;
+              hold += input[next++] << bits;
+              bits += 8;
+            }
+            //===//
+            //--- DROPBITS(here.bits) ---//
+            hold >>>= here_bits;
+            bits -= here_bits;
+            //---//
+            len = 0;
+            copy = 11 + (hold & 0x7f);//BITS(7);
+            //--- DROPBITS(7) ---//
+            hold >>>= 7;
+            bits -= 7;
+            //---//
+          }
+          if (state.have + copy > state.nlen + state.ndist) {
+            strm.msg = 'invalid bit length repeat';
+            state.mode = BAD;
+            break;
+          }
+          while (copy--) {
+            state.lens[state.have++] = len;
+          }
+        }
+      }
+
+      /* handle error breaks in while */
+      if (state.mode === BAD) { break; }
+
+      /* check for end-of-block code (better have one) */
+      if (state.lens[256] === 0) {
+        strm.msg = 'invalid code -- missing end-of-block';
+        state.mode = BAD;
+        break;
+      }
+
+      /* build code tables -- note: do not change the lenbits or distbits
+         values here (9 and 6) without reading the comments in inftrees.h
+         concerning the ENOUGH constants, which depend on those values */
+      state.lenbits = 9;
+
+      opts = { bits: state.lenbits };
+      ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);
+      // We have separate tables & no pointers. 2 commented lines below not needed.
+      // state.next_index = opts.table_index;
+      state.lenbits = opts.bits;
+      // state.lencode = state.next;
+
+      if (ret) {
+        strm.msg = 'invalid literal/lengths set';
+        state.mode = BAD;
+        break;
+      }
+
+      state.distbits = 6;
+      //state.distcode.copy(state.codes);
+      // Switch to use dynamic table
+      state.distcode = state.distdyn;
+      opts = { bits: state.distbits };
+      ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);
+      // We have separate tables & no pointers. 2 commented lines below not needed.
+      // state.next_index = opts.table_index;
+      state.distbits = opts.bits;
+      // state.distcode = state.next;
+
+      if (ret) {
+        strm.msg = 'invalid distances set';
+        state.mode = BAD;
+        break;
+      }
+      //Tracev((stderr, 'inflate:       codes ok\n'));
+      state.mode = LEN_;
+      if (flush === Z_TREES) { break inf_leave; }
+      /* falls through */
+    case LEN_:
+      state.mode = LEN;
+      /* falls through */
+    case LEN:
+      if (have >= 6 && left >= 258) {
+        //--- RESTORE() ---
+        strm.next_out = put;
+        strm.avail_out = left;
+        strm.next_in = next;
+        strm.avail_in = have;
+        state.hold = hold;
+        state.bits = bits;
+        //---
+        inflate_fast(strm, _out);
+        //--- LOAD() ---
+        put = strm.next_out;
+        output = strm.output;
+        left = strm.avail_out;
+        next = strm.next_in;
+        input = strm.input;
+        have = strm.avail_in;
+        hold = state.hold;
+        bits = state.bits;
+        //---
+
+        if (state.mode === TYPE) {
+          state.back = -1;
+        }
+        break;
+      }
+      state.back = 0;
+      for (;;) {
+        here = state.lencode[hold & ((1 << state.lenbits) - 1)];  /*BITS(state.lenbits)*/
+        here_bits = here >>> 24;
+        here_op = (here >>> 16) & 0xff;
+        here_val = here & 0xffff;
+
+        if (here_bits <= bits) { break; }
+        //--- PULLBYTE() ---//
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+        //---//
+      }
+      if (here_op && (here_op & 0xf0) === 0) {
+        last_bits = here_bits;
+        last_op = here_op;
+        last_val = here_val;
+        for (;;) {
+          here = state.lencode[last_val +
+                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
+          here_bits = here >>> 24;
+          here_op = (here >>> 16) & 0xff;
+          here_val = here & 0xffff;
+
+          if ((last_bits + here_bits) <= bits) { break; }
+          //--- PULLBYTE() ---//
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+          //---//
+        }
+        //--- DROPBITS(last.bits) ---//
+        hold >>>= last_bits;
+        bits -= last_bits;
+        //---//
+        state.back += last_bits;
+      }
+      //--- DROPBITS(here.bits) ---//
+      hold >>>= here_bits;
+      bits -= here_bits;
+      //---//
+      state.back += here_bits;
+      state.length = here_val;
+      if (here_op === 0) {
+        //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
+        //        "inflate:         literal '%c'\n" :
+        //        "inflate:         literal 0x%02x\n", here.val));
+        state.mode = LIT;
+        break;
+      }
+      if (here_op & 32) {
+        //Tracevv((stderr, "inflate:         end of block\n"));
+        state.back = -1;
+        state.mode = TYPE;
+        break;
+      }
+      if (here_op & 64) {
+        strm.msg = 'invalid literal/length code';
+        state.mode = BAD;
+        break;
+      }
+      state.extra = here_op & 15;
+      state.mode = LENEXT;
+      /* falls through */
+    case LENEXT:
+      if (state.extra) {
+        //=== NEEDBITS(state.extra);
+        n = state.extra;
+        while (bits < n) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
+        //--- DROPBITS(state.extra) ---//
+        hold >>>= state.extra;
+        bits -= state.extra;
+        //---//
+        state.back += state.extra;
+      }
+      //Tracevv((stderr, "inflate:         length %u\n", state.length));
+      state.was = state.length;
+      state.mode = DIST;
+      /* falls through */
+    case DIST:
+      for (;;) {
+        here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/
+        here_bits = here >>> 24;
+        here_op = (here >>> 16) & 0xff;
+        here_val = here & 0xffff;
+
+        if ((here_bits) <= bits) { break; }
+        //--- PULLBYTE() ---//
+        if (have === 0) { break inf_leave; }
+        have--;
+        hold += input[next++] << bits;
+        bits += 8;
+        //---//
+      }
+      if ((here_op & 0xf0) === 0) {
+        last_bits = here_bits;
+        last_op = here_op;
+        last_val = here_val;
+        for (;;) {
+          here = state.distcode[last_val +
+                  ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];
+          here_bits = here >>> 24;
+          here_op = (here >>> 16) & 0xff;
+          here_val = here & 0xffff;
+
+          if ((last_bits + here_bits) <= bits) { break; }
+          //--- PULLBYTE() ---//
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+          //---//
+        }
+        //--- DROPBITS(last.bits) ---//
+        hold >>>= last_bits;
+        bits -= last_bits;
+        //---//
+        state.back += last_bits;
+      }
+      //--- DROPBITS(here.bits) ---//
+      hold >>>= here_bits;
+      bits -= here_bits;
+      //---//
+      state.back += here_bits;
+      if (here_op & 64) {
+        strm.msg = 'invalid distance code';
+        state.mode = BAD;
+        break;
+      }
+      state.offset = here_val;
+      state.extra = (here_op) & 15;
+      state.mode = DISTEXT;
+      /* falls through */
+    case DISTEXT:
+      if (state.extra) {
+        //=== NEEDBITS(state.extra);
+        n = state.extra;
+        while (bits < n) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;
+        //--- DROPBITS(state.extra) ---//
+        hold >>>= state.extra;
+        bits -= state.extra;
+        //---//
+        state.back += state.extra;
+      }
+//#ifdef INFLATE_STRICT
+      if (state.offset > state.dmax) {
+        strm.msg = 'invalid distance too far back';
+        state.mode = BAD;
+        break;
+      }
+//#endif
+      //Tracevv((stderr, "inflate:         distance %u\n", state.offset));
+      state.mode = MATCH;
+      /* falls through */
+    case MATCH:
+      if (left === 0) { break inf_leave; }
+      copy = _out - left;
+      if (state.offset > copy) {         /* copy from window */
+        copy = state.offset - copy;
+        if (copy > state.whave) {
+          if (state.sane) {
+            strm.msg = 'invalid distance too far back';
+            state.mode = BAD;
+            break;
+          }
+// (!) This block is disabled in zlib defailts,
+// don't enable it for binary compatibility
+//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
+//          Trace((stderr, "inflate.c too far\n"));
+//          copy -= state.whave;
+//          if (copy > state.length) { copy = state.length; }
+//          if (copy > left) { copy = left; }
+//          left -= copy;
+//          state.length -= copy;
+//          do {
+//            output[put++] = 0;
+//          } while (--copy);
+//          if (state.length === 0) { state.mode = LEN; }
+//          break;
+//#endif
+        }
+        if (copy > state.wnext) {
+          copy -= state.wnext;
+          from = state.wsize - copy;
+        }
+        else {
+          from = state.wnext - copy;
+        }
+        if (copy > state.length) { copy = state.length; }
+        from_source = state.window;
+      }
+      else {                              /* copy from output */
+        from_source = output;
+        from = put - state.offset;
+        copy = state.length;
+      }
+      if (copy > left) { copy = left; }
+      left -= copy;
+      state.length -= copy;
+      do {
+        output[put++] = from_source[from++];
+      } while (--copy);
+      if (state.length === 0) { state.mode = LEN; }
+      break;
+    case LIT:
+      if (left === 0) { break inf_leave; }
+      output[put++] = state.length;
+      left--;
+      state.mode = LEN;
+      break;
+    case CHECK:
+      if (state.wrap) {
+        //=== NEEDBITS(32);
+        while (bits < 32) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          // Use '|' insdead of '+' to make sure that result is signed
+          hold |= input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        _out -= left;
+        strm.total_out += _out;
+        state.total += _out;
+        if (_out) {
+          strm.adler = state.check =
+              /*UPDATE(state.check, put - _out, _out);*/
+              (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out));
+
+        }
+        _out = left;
+        // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too
+        if ((state.flags ? hold : zswap32(hold)) !== state.check) {
+          strm.msg = 'incorrect data check';
+          state.mode = BAD;
+          break;
+        }
+        //=== INITBITS();
+        hold = 0;
+        bits = 0;
+        //===//
+        //Tracev((stderr, "inflate:   check matches trailer\n"));
+      }
+      state.mode = LENGTH;
+      /* falls through */
+    case LENGTH:
+      if (state.wrap && state.flags) {
+        //=== NEEDBITS(32);
+        while (bits < 32) {
+          if (have === 0) { break inf_leave; }
+          have--;
+          hold += input[next++] << bits;
+          bits += 8;
+        }
+        //===//
+        if (hold !== (state.total & 0xffffffff)) {
+          strm.msg = 'incorrect length check';
+          state.mode = BAD;
+          break;
+        }
+        //=== INITBITS();
+        hold = 0;
+        bits = 0;
+        //===//
+        //Tracev((stderr, "inflate:   length matches trailer\n"));
+      }
+      state.mode = DONE;
+      /* falls through */
+    case DONE:
+      ret = Z_STREAM_END;
+      break inf_leave;
+    case BAD:
+      ret = Z_DATA_ERROR;
+      break inf_leave;
+    case MEM:
+      return Z_MEM_ERROR;
+    case SYNC:
+      /* falls through */
+    default:
+      return Z_STREAM_ERROR;
+    }
+  }
+
+  // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"
+
+  /*
+     Return from inflate(), updating the total counts and the check value.
+     If there was no progress during the inflate() call, return a buffer
+     error.  Call updatewindow() to create and/or update the window state.
+     Note: a memory error from inflate() is non-recoverable.
+   */
+
+  //--- RESTORE() ---
+  strm.next_out = put;
+  strm.avail_out = left;
+  strm.next_in = next;
+  strm.avail_in = have;
+  state.hold = hold;
+  state.bits = bits;
+  //---
+
+  if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&
+                      (state.mode < CHECK || flush !== Z_FINISH))) {
+    if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) {
+      state.mode = MEM;
+      return Z_MEM_ERROR;
+    }
+  }
+  _in -= strm.avail_in;
+  _out -= strm.avail_out;
+  strm.total_in += _in;
+  strm.total_out += _out;
+  state.total += _out;
+  if (state.wrap && _out) {
+    strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/
+      (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out));
+  }
+  strm.data_type = state.bits + (state.last ? 64 : 0) +
+                    (state.mode === TYPE ? 128 : 0) +
+                    (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);
+  if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
+    ret = Z_BUF_ERROR;
+  }
+  return ret;
+}
+
+function inflateEnd(strm) {
+
+  if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
+    return Z_STREAM_ERROR;
+  }
+
+  var state = strm.state;
+  if (state.window) {
+    state.window = null;
+  }
+  strm.state = null;
+  return Z_OK;
+}
+
+function inflateGetHeader(strm, head) {
+  var state;
+
+  /* check state */
+  if (!strm || !strm.state) { return Z_STREAM_ERROR; }
+  state = strm.state;
+  if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; }
+
+  /* save header structure */
+  state.head = head;
+  head.done = false;
+  return Z_OK;
+}
+
+function inflateSetDictionary(strm, dictionary) {
+  var dictLength = dictionary.length;
+
+  var state;
+  var dictid;
+  var ret;
+
+  /* check state */
+  if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; }
+  state = strm.state;
+
+  if (state.wrap !== 0 && state.mode !== DICT) {
+    return Z_STREAM_ERROR;
+  }
+
+  /* check for correct dictionary identifier */
+  if (state.mode === DICT) {
+    dictid = 1; /* adler32(0, null, 0)*/
+    /* dictid = adler32(dictid, dictionary, dictLength); */
+    dictid = adler32(dictid, dictionary, dictLength, 0);
+    if (dictid !== state.check) {
+      return Z_DATA_ERROR;
+    }
+  }
+  /* copy dictionary to window using updatewindow(), which will amend the
+   existing dictionary if appropriate */
+  ret = updatewindow(strm, dictionary, dictLength, dictLength);
+  if (ret) {
+    state.mode = MEM;
+    return Z_MEM_ERROR;
+  }
+  state.havedict = 1;
+  // Tracev((stderr, "inflate:   dictionary set\n"));
+  return Z_OK;
+}
+
+exports.inflateReset = inflateReset;
+exports.inflateReset2 = inflateReset2;
+exports.inflateResetKeep = inflateResetKeep;
+exports.inflateInit = inflateInit;
+exports.inflateInit2 = inflateInit2;
+exports.inflate = inflate;
+exports.inflateEnd = inflateEnd;
+exports.inflateGetHeader = inflateGetHeader;
+exports.inflateSetDictionary = inflateSetDictionary;
+exports.inflateInfo = 'pako inflate (from Nodeca project)';
+
+/* Not implemented
+exports.inflateCopy = inflateCopy;
+exports.inflateGetDictionary = inflateGetDictionary;
+exports.inflateMark = inflateMark;
+exports.inflatePrime = inflatePrime;
+exports.inflateSync = inflateSync;
+exports.inflateSyncPoint = inflateSyncPoint;
+exports.inflateUndermine = inflateUndermine;
+*/
+
+},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+var utils = require('../utils/common');
+
+var MAXBITS = 15;
+var ENOUGH_LENS = 852;
+var ENOUGH_DISTS = 592;
+//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);
+
+var CODES = 0;
+var LENS = 1;
+var DISTS = 2;
+
+var lbase = [ /* Length codes 257..285 base */
+  3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,
+  35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0
+];
+
+var lext = [ /* Length codes 257..285 extra */
+  16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,
+  19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78
+];
+
+var dbase = [ /* Distance codes 0..29 base */
+  1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
+  257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,
+  8193, 12289, 16385, 24577, 0, 0
+];
+
+var dext = [ /* Distance codes 0..29 extra */
+  16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,
+  23, 23, 24, 24, 25, 25, 26, 26, 27, 27,
+  28, 28, 29, 29, 64, 64
+];
+
+module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts)
+{
+  var bits = opts.bits;
+      //here = opts.here; /* table entry for duplication */
+
+  var len = 0;               /* a code's length in bits */
+  var sym = 0;               /* index of code symbols */
+  var min = 0, max = 0;          /* minimum and maximum code lengths */
+  var root = 0;              /* number of index bits for root table */
+  var curr = 0;              /* number of index bits for current table */
+  var drop = 0;              /* code bits to drop for sub-table */
+  var left = 0;                   /* number of prefix codes available */
+  var used = 0;              /* code entries in table used */
+  var huff = 0;              /* Huffman code */
+  var incr;              /* for incrementing code, index */
+  var fill;              /* index for replicating entries */
+  var low;               /* low bits for current root entry */
+  var mask;              /* mask for low root bits */
+  var next;             /* next available space in table */
+  var base = null;     /* base value table to use */
+  var base_index = 0;
+//  var shoextra;    /* extra bits table to use */
+  var end;                    /* use base and extra for symbol > end */
+  var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];    /* number of codes of each length */
+  var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1];     /* offsets in table for each length */
+  var extra = null;
+  var extra_index = 0;
+
+  var here_bits, here_op, here_val;
+
+  /*
+   Process a set of code lengths to create a canonical Huffman code.  The
+   code lengths are lens[0..codes-1].  Each length corresponds to the
+   symbols 0..codes-1.  The Huffman code is generated by first sorting the
+   symbols by length from short to long, and retaining the symbol order
+   for codes with equal lengths.  Then the code starts with all zero bits
+   for the first code of the shortest length, and the codes are integer
+   increments for the same length, and zeros are appended as the length
+   increases.  For the deflate format, these bits are stored backwards
+   from their more natural integer increment ordering, and so when the
+   decoding tables are built in the large loop below, the integer codes
+   are incremented backwards.
+
+   This routine assumes, but does not check, that all of the entries in
+   lens[] are in the range 0..MAXBITS.  The caller must assure this.
+   1..MAXBITS is interpreted as that code length.  zero means that that
+   symbol does not occur in this code.
+
+   The codes are sorted by computing a count of codes for each length,
+   creating from that a table of starting indices for each length in the
+   sorted table, and then entering the symbols in order in the sorted
+   table.  The sorted table is work[], with that space being provided by
+   the caller.
+
+   The length counts are used for other purposes as well, i.e. finding
+   the minimum and maximum length codes, determining if there are any
+   codes at all, checking for a valid set of lengths, and looking ahead
+   at length counts to determine sub-table sizes when building the
+   decoding tables.
+   */
+
+  /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
+  for (len = 0; len <= MAXBITS; len++) {
+    count[len] = 0;
+  }
+  for (sym = 0; sym < codes; sym++) {
+    count[lens[lens_index + sym]]++;
+  }
+
+  /* bound code lengths, force root to be within code lengths */
+  root = bits;
+  for (max = MAXBITS; max >= 1; max--) {
+    if (count[max] !== 0) { break; }
+  }
+  if (root > max) {
+    root = max;
+  }
+  if (max === 0) {                     /* no symbols to code at all */
+    //table.op[opts.table_index] = 64;  //here.op = (var char)64;    /* invalid code marker */
+    //table.bits[opts.table_index] = 1;   //here.bits = (var char)1;
+    //table.val[opts.table_index++] = 0;   //here.val = (var short)0;
+    table[table_index++] = (1 << 24) | (64 << 16) | 0;
+
+
+    //table.op[opts.table_index] = 64;
+    //table.bits[opts.table_index] = 1;
+    //table.val[opts.table_index++] = 0;
+    table[table_index++] = (1 << 24) | (64 << 16) | 0;
+
+    opts.bits = 1;
+    return 0;     /* no symbols, but wait for decoding to report error */
+  }
+  for (min = 1; min < max; min++) {
+    if (count[min] !== 0) { break; }
+  }
+  if (root < min) {
+    root = min;
+  }
+
+  /* check for an over-subscribed or incomplete set of lengths */
+  left = 1;
+  for (len = 1; len <= MAXBITS; len++) {
+    left <<= 1;
+    left -= count[len];
+    if (left < 0) {
+      return -1;
+    }        /* over-subscribed */
+  }
+  if (left > 0 && (type === CODES || max !== 1)) {
+    return -1;                      /* incomplete set */
+  }
+
+  /* generate offsets into symbol table for each length for sorting */
+  offs[1] = 0;
+  for (len = 1; len < MAXBITS; len++) {
+    offs[len + 1] = offs[len] + count[len];
+  }
+
+  /* sort symbols by length, by symbol order within each length */
+  for (sym = 0; sym < codes; sym++) {
+    if (lens[lens_index + sym] !== 0) {
+      work[offs[lens[lens_index + sym]]++] = sym;
+    }
+  }
+
+  /*
+   Create and fill in decoding tables.  In this loop, the table being
+   filled is at next and has curr index bits.  The code being used is huff
+   with length len.  That code is converted to an index by dropping drop
+   bits off of the bottom.  For codes where len is less than drop + curr,
+   those top drop + curr - len bits are incremented through all values to
+   fill the table with replicated entries.
+
+   root is the number of index bits for the root table.  When len exceeds
+   root, sub-tables are created pointed to by the root entry with an index
+   of the low root bits of huff.  This is saved in low to check for when a
+   new sub-table should be started.  drop is zero when the root table is
+   being filled, and drop is root when sub-tables are being filled.
+
+   When a new sub-table is needed, it is necessary to look ahead in the
+   code lengths to determine what size sub-table is needed.  The length
+   counts are used for this, and so count[] is decremented as codes are
+   entered in the tables.
+
+   used keeps track of how many table entries have been allocated from the
+   provided *table space.  It is checked for LENS and DIST tables against
+   the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
+   the initial root table size constants.  See the comments in inftrees.h
+   for more information.
+
+   sym increments through all symbols, and the loop terminates when
+   all codes of length max, i.e. all codes, have been processed.  This
+   routine permits incomplete codes, so another loop after this one fills
+   in the rest of the decoding tables with invalid code markers.
+   */
+
+  /* set up for code type */
+  // poor man optimization - use if-else instead of switch,
+  // to avoid deopts in old v8
+  if (type === CODES) {
+    base = extra = work;    /* dummy value--not used */
+    end = 19;
+
+  } else if (type === LENS) {
+    base = lbase;
+    base_index -= 257;
+    extra = lext;
+    extra_index -= 257;
+    end = 256;
+
+  } else {                    /* DISTS */
+    base = dbase;
+    extra = dext;
+    end = -1;
+  }
+
+  /* initialize opts for loop */
+  huff = 0;                   /* starting code */
+  sym = 0;                    /* starting code symbol */
+  len = min;                  /* starting code length */
+  next = table_index;              /* current table to fill in */
+  curr = root;                /* current table index bits */
+  drop = 0;                   /* current bits to drop from code for index */
+  low = -1;                   /* trigger new sub-table when len > root */
+  used = 1 << root;          /* use root table entries */
+  mask = used - 1;            /* mask for comparing low */
+
+  /* check available table space */
+  if ((type === LENS && used > ENOUGH_LENS) ||
+    (type === DISTS && used > ENOUGH_DISTS)) {
+    return 1;
+  }
+
+  /* process all codes and make table entries */
+  for (;;) {
+    /* create table entry */
+    here_bits = len - drop;
+    if (work[sym] < end) {
+      here_op = 0;
+      here_val = work[sym];
+    }
+    else if (work[sym] > end) {
+      here_op = extra[extra_index + work[sym]];
+      here_val = base[base_index + work[sym]];
+    }
+    else {
+      here_op = 32 + 64;         /* end of block */
+      here_val = 0;
+    }
+
+    /* replicate for those indices with low len bits equal to huff */
+    incr = 1 << (len - drop);
+    fill = 1 << curr;
+    min = fill;                 /* save offset to next table */
+    do {
+      fill -= incr;
+      table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
+    } while (fill !== 0);
+
+    /* backwards increment the len-bit code huff */
+    incr = 1 << (len - 1);
+    while (huff & incr) {
+      incr >>= 1;
+    }
+    if (incr !== 0) {
+      huff &= incr - 1;
+      huff += incr;
+    } else {
+      huff = 0;
+    }
+
+    /* go to next symbol, update count, len */
+    sym++;
+    if (--count[len] === 0) {
+      if (len === max) { break; }
+      len = lens[lens_index + work[sym]];
+    }
+
+    /* create new sub-table if needed */
+    if (len > root && (huff & mask) !== low) {
+      /* if first time, transition to sub-tables */
+      if (drop === 0) {
+        drop = root;
+      }
+
+      /* increment past last table */
+      next += min;            /* here min is 1 << curr */
+
+      /* determine length of next table */
+      curr = len - drop;
+      left = 1 << curr;
+      while (curr + drop < max) {
+        left -= count[curr + drop];
+        if (left <= 0) { break; }
+        curr++;
+        left <<= 1;
+      }
+
+      /* check for enough space */
+      used += 1 << curr;
+      if ((type === LENS && used > ENOUGH_LENS) ||
+        (type === DISTS && used > ENOUGH_DISTS)) {
+        return 1;
+      }
+
+      /* point entry in root table to sub-table */
+      low = huff & mask;
+      /*table.op[low] = curr;
+      table.bits[low] = root;
+      table.val[low] = next - opts.table_index;*/
+      table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;
+    }
+  }
+
+  /* fill in remaining table entry if code is incomplete (guaranteed to have
+   at most one remaining entry, since if the code is incomplete, the
+   maximum code length that was allowed to get this far is one bit) */
+  if (huff !== 0) {
+    //table.op[next + huff] = 64;            /* invalid code marker */
+    //table.bits[next + huff] = len - drop;
+    //table.val[next + huff] = 0;
+    table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;
+  }
+
+  /* set return parameters */
+  //opts.table_index += used;
+  opts.bits = root;
+  return 0;
+};
+
+},{"../utils/common":41}],51:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+module.exports = {
+  2:      'need dictionary',     /* Z_NEED_DICT       2  */
+  1:      'stream end',          /* Z_STREAM_END      1  */
+  0:      '',                    /* Z_OK              0  */
+  '-1':   'file error',          /* Z_ERRNO         (-1) */
+  '-2':   'stream error',        /* Z_STREAM_ERROR  (-2) */
+  '-3':   'data error',          /* Z_DATA_ERROR    (-3) */
+  '-4':   'insufficient memory', /* Z_MEM_ERROR     (-4) */
+  '-5':   'buffer error',        /* Z_BUF_ERROR     (-5) */
+  '-6':   'incompatible version' /* Z_VERSION_ERROR (-6) */
+};
+
+},{}],52:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+var utils = require('../utils/common');
+
+/* Public constants ==========================================================*/
+/* ===========================================================================*/
+
+
+//var Z_FILTERED          = 1;
+//var Z_HUFFMAN_ONLY      = 2;
+//var Z_RLE               = 3;
+var Z_FIXED               = 4;
+//var Z_DEFAULT_STRATEGY  = 0;
+
+/* Possible values of the data_type field (though see inflate()) */
+var Z_BINARY              = 0;
+var Z_TEXT                = 1;
+//var Z_ASCII             = 1; // = Z_TEXT
+var Z_UNKNOWN             = 2;
+
+/*============================================================================*/
+
+
+function zero(buf) { var len = buf.length; while (--len >= 0) { buf[len] = 0; } }
+
+// From zutil.h
+
+var STORED_BLOCK = 0;
+var STATIC_TREES = 1;
+var DYN_TREES    = 2;
+/* The three kinds of block type */
+
+var MIN_MATCH    = 3;
+var MAX_MATCH    = 258;
+/* The minimum and maximum match lengths */
+
+// From deflate.h
+/* ===========================================================================
+ * Internal compression state.
+ */
+
+var LENGTH_CODES  = 29;
+/* number of length codes, not counting the special END_BLOCK code */
+
+var LITERALS      = 256;
+/* number of literal bytes 0..255 */
+
+var L_CODES       = LITERALS + 1 + LENGTH_CODES;
+/* number of Literal or Length codes, including the END_BLOCK code */
+
+var D_CODES       = 30;
+/* number of distance codes */
+
+var BL_CODES      = 19;
+/* number of codes used to transfer the bit lengths */
+
+var HEAP_SIZE     = 2 * L_CODES + 1;
+/* maximum heap size */
+
+var MAX_BITS      = 15;
+/* All codes must not exceed MAX_BITS bits */
+
+var Buf_size      = 16;
+/* size of bit buffer in bi_buf */
+
+
+/* ===========================================================================
+ * Constants
+ */
+
+var MAX_BL_BITS = 7;
+/* Bit length codes must not exceed MAX_BL_BITS bits */
+
+var END_BLOCK   = 256;
+/* end of block literal code */
+
+var REP_3_6     = 16;
+/* repeat previous bit length 3-6 times (2 bits of repeat count) */
+
+var REPZ_3_10   = 17;
+/* repeat a zero length 3-10 times  (3 bits of repeat count) */
+
+var REPZ_11_138 = 18;
+/* repeat a zero length 11-138 times  (7 bits of repeat count) */
+
+/* eslint-disable comma-spacing,array-bracket-spacing */
+var extra_lbits =   /* extra bits for each length code */
+  [0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0];
+
+var extra_dbits =   /* extra bits for each distance code */
+  [0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];
+
+var extra_blbits =  /* extra bits for each bit length code */
+  [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7];
+
+var bl_order =
+  [16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
+/* eslint-enable comma-spacing,array-bracket-spacing */
+
+/* The lengths of the bit length codes are sent in order of decreasing
+ * probability, to avoid transmitting the lengths for unused bit length codes.
+ */
+
+/* ===========================================================================
+ * Local data. These are initialized only once.
+ */
+
+// We pre-fill arrays with 0 to avoid uninitialized gaps
+
+var DIST_CODE_LEN = 512; /* see definition of array dist_code below */
+
+// !!!! Use flat array insdead of structure, Freq = i*2, Len = i*2+1
+var static_ltree  = new Array((L_CODES + 2) * 2);
+zero(static_ltree);
+/* The static literal tree. Since the bit lengths are imposed, there is no
+ * need for the L_CODES extra codes used during heap construction. However
+ * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
+ * below).
+ */
+
+var static_dtree  = new Array(D_CODES * 2);
+zero(static_dtree);
+/* The static distance tree. (Actually a trivial tree since all codes use
+ * 5 bits.)
+ */
+
+var _dist_code    = new Array(DIST_CODE_LEN);
+zero(_dist_code);
+/* Distance codes. The first 256 values correspond to the distances
+ * 3 .. 258, the last 256 values correspond to the top 8 bits of
+ * the 15 bit distances.
+ */
+
+var _length_code  = new Array(MAX_MATCH - MIN_MATCH + 1);
+zero(_length_code);
+/* length code for each normalized match length (0 == MIN_MATCH) */
+
+var base_length   = new Array(LENGTH_CODES);
+zero(base_length);
+/* First normalized length for each code (0 = MIN_MATCH) */
+
+var base_dist     = new Array(D_CODES);
+zero(base_dist);
+/* First normalized distance for each code (0 = distance of 1) */
+
+
+function StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {
+
+  this.static_tree  = static_tree;  /* static tree or NULL */
+  this.extra_bits   = extra_bits;   /* extra bits for each code or NULL */
+  this.extra_base   = extra_base;   /* base index for extra_bits */
+  this.elems        = elems;        /* max number of elements in the tree */
+  this.max_length   = max_length;   /* max bit length for the codes */
+
+  // show if `static_tree` has data or dummy - needed for monomorphic objects
+  this.has_stree    = static_tree && static_tree.length;
+}
+
+
+var static_l_desc;
+var static_d_desc;
+var static_bl_desc;
+
+
+function TreeDesc(dyn_tree, stat_desc) {
+  this.dyn_tree = dyn_tree;     /* the dynamic tree */
+  this.max_code = 0;            /* largest code with non zero frequency */
+  this.stat_desc = stat_desc;   /* the corresponding static tree */
+}
+
+
+
+function d_code(dist) {
+  return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];
+}
+
+
+/* ===========================================================================
+ * Output a short LSB first on the stream.
+ * IN assertion: there is enough room in pendingBuf.
+ */
+function put_short(s, w) {
+//    put_byte(s, (uch)((w) & 0xff));
+//    put_byte(s, (uch)((ush)(w) >> 8));
+  s.pending_buf[s.pending++] = (w) & 0xff;
+  s.pending_buf[s.pending++] = (w >>> 8) & 0xff;
+}
+
+
+/* ===========================================================================
+ * Send a value on a given number of bits.
+ * IN assertion: length <= 16 and value fits in length bits.
+ */
+function send_bits(s, value, length) {
+  if (s.bi_valid > (Buf_size - length)) {
+    s.bi_buf |= (value << s.bi_valid) & 0xffff;
+    put_short(s, s.bi_buf);
+    s.bi_buf = value >> (Buf_size - s.bi_valid);
+    s.bi_valid += length - Buf_size;
+  } else {
+    s.bi_buf |= (value << s.bi_valid) & 0xffff;
+    s.bi_valid += length;
+  }
+}
+
+
+function send_code(s, c, tree) {
+  send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);
+}
+
+
+/* ===========================================================================
+ * Reverse the first len bits of a code, using straightforward code (a faster
+ * method would use a table)
+ * IN assertion: 1 <= len <= 15
+ */
+function bi_reverse(code, len) {
+  var res = 0;
+  do {
+    res |= code & 1;
+    code >>>= 1;
+    res <<= 1;
+  } while (--len > 0);
+  return res >>> 1;
+}
+
+
+/* ===========================================================================
+ * Flush the bit buffer, keeping at most 7 bits in it.
+ */
+function bi_flush(s) {
+  if (s.bi_valid === 16) {
+    put_short(s, s.bi_buf);
+    s.bi_buf = 0;
+    s.bi_valid = 0;
+
+  } else if (s.bi_valid >= 8) {
+    s.pending_buf[s.pending++] = s.bi_buf & 0xff;
+    s.bi_buf >>= 8;
+    s.bi_valid -= 8;
+  }
+}
+
+
+/* ===========================================================================
+ * Compute the optimal bit lengths for a tree and update the total bit length
+ * for the current block.
+ * IN assertion: the fields freq and dad are set, heap[heap_max] and
+ *    above are the tree nodes sorted by increasing frequency.
+ * OUT assertions: the field len is set to the optimal bit length, the
+ *     array bl_count contains the frequencies for each bit length.
+ *     The length opt_len is updated; static_len is also updated if stree is
+ *     not null.
+ */
+function gen_bitlen(s, desc)
+//    deflate_state *s;
+//    tree_desc *desc;    /* the tree descriptor */
+{
+  var tree            = desc.dyn_tree;
+  var max_code        = desc.max_code;
+  var stree           = desc.stat_desc.static_tree;
+  var has_stree       = desc.stat_desc.has_stree;
+  var extra           = desc.stat_desc.extra_bits;
+  var base            = desc.stat_desc.extra_base;
+  var max_length      = desc.stat_desc.max_length;
+  var h;              /* heap index */
+  var n, m;           /* iterate over the tree elements */
+  var bits;           /* bit length */
+  var xbits;          /* extra bits */
+  var f;              /* frequency */
+  var overflow = 0;   /* number of elements with bit length too large */
+
+  for (bits = 0; bits <= MAX_BITS; bits++) {
+    s.bl_count[bits] = 0;
+  }
+
+  /* In a first pass, compute the optimal bit lengths (which may
+   * overflow in the case of the bit length tree).
+   */
+  tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */
+
+  for (h = s.heap_max + 1; h < HEAP_SIZE; h++) {
+    n = s.heap[h];
+    bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;
+    if (bits > max_length) {
+      bits = max_length;
+      overflow++;
+    }
+    tree[n * 2 + 1]/*.Len*/ = bits;
+    /* We overwrite tree[n].Dad which is no longer needed */
+
+    if (n > max_code) { continue; } /* not a leaf node */
+
+    s.bl_count[bits]++;
+    xbits = 0;
+    if (n >= base) {
+      xbits = extra[n - base];
+    }
+    f = tree[n * 2]/*.Freq*/;
+    s.opt_len += f * (bits + xbits);
+    if (has_stree) {
+      s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);
+    }
+  }
+  if (overflow === 0) { return; }
+
+  // Trace((stderr,"\nbit length overflow\n"));
+  /* This happens for example on obj2 and pic of the Calgary corpus */
+
+  /* Find the first bit length which could increase: */
+  do {
+    bits = max_length - 1;
+    while (s.bl_count[bits] === 0) { bits--; }
+    s.bl_count[bits]--;      /* move one leaf down the tree */
+    s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */
+    s.bl_count[max_length]--;
+    /* The brother of the overflow item also moves one step up,
+     * but this does not affect bl_count[max_length]
+     */
+    overflow -= 2;
+  } while (overflow > 0);
+
+  /* Now recompute all bit lengths, scanning in increasing frequency.
+   * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
+   * lengths instead of fixing only the wrong ones. This idea is taken
+   * from 'ar' written by Haruhiko Okumura.)
+   */
+  for (bits = max_length; bits !== 0; bits--) {
+    n = s.bl_count[bits];
+    while (n !== 0) {
+      m = s.heap[--h];
+      if (m > max_code) { continue; }
+      if (tree[m * 2 + 1]/*.Len*/ !== bits) {
+        // Trace((stderr,"code %d bits %d->%d\n", m, tree[m].Len, bits));
+        s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;
+        tree[m * 2 + 1]/*.Len*/ = bits;
+      }
+      n--;
+    }
+  }
+}
+
+
+/* ===========================================================================
+ * Generate the codes for a given tree and bit counts (which need not be
+ * optimal).
+ * IN assertion: the array bl_count contains the bit length statistics for
+ * the given tree and the field len is set for all tree elements.
+ * OUT assertion: the field code is set for all tree elements of non
+ *     zero code length.
+ */
+function gen_codes(tree, max_code, bl_count)
+//    ct_data *tree;             /* the tree to decorate */
+//    int max_code;              /* largest code with non zero frequency */
+//    ushf *bl_count;            /* number of codes at each bit length */
+{
+  var next_code = new Array(MAX_BITS + 1); /* next code value for each bit length */
+  var code = 0;              /* running code value */
+  var bits;                  /* bit index */
+  var n;                     /* code index */
+
+  /* The distribution counts are first used to generate the code values
+   * without bit reversal.
+   */
+  for (bits = 1; bits <= MAX_BITS; bits++) {
+    next_code[bits] = code = (code + bl_count[bits - 1]) << 1;
+  }
+  /* Check that the bit counts in bl_count are consistent. The last code
+   * must be all ones.
+   */
+  //Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
+  //        "inconsistent bit counts");
+  //Tracev((stderr,"\ngen_codes: max_code %d ", max_code));
+
+  for (n = 0;  n <= max_code; n++) {
+    var len = tree[n * 2 + 1]/*.Len*/;
+    if (len === 0) { continue; }
+    /* Now reverse the bits */
+    tree[n * 2]/*.Code*/ = bi_reverse(next_code[len]++, len);
+
+    //Tracecv(tree != static_ltree, (stderr,"\nn %3d %c l %2d c %4x (%x) ",
+    //     n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
+  }
+}
+
+
+/* ===========================================================================
+ * Initialize the various 'constant' tables.
+ */
+function tr_static_init() {
+  var n;        /* iterates over tree elements */
+  var bits;     /* bit counter */
+  var length;   /* length value */
+  var code;     /* code value */
+  var dist;     /* distance index */
+  var bl_count = new Array(MAX_BITS + 1);
+  /* number of codes at each bit length for an optimal tree */
+
+  // do check in _tr_init()
+  //if (static_init_done) return;
+
+  /* For some embedded targets, global variables are not initialized: */
+/*#ifdef NO_INIT_GLOBAL_POINTERS
+  static_l_desc.static_tree = static_ltree;
+  static_l_desc.extra_bits = extra_lbits;
+  static_d_desc.static_tree = static_dtree;
+  static_d_desc.extra_bits = extra_dbits;
+  static_bl_desc.extra_bits = extra_blbits;
+#endif*/
+
+  /* Initialize the mapping length (0..255) -> length code (0..28) */
+  length = 0;
+  for (code = 0; code < LENGTH_CODES - 1; code++) {
+    base_length[code] = length;
+    for (n = 0; n < (1 << extra_lbits[code]); n++) {
+      _length_code[length++] = code;
+    }
+  }
+  //Assert (length == 256, "tr_static_init: length != 256");
+  /* Note that the length 255 (match length 258) can be represented
+   * in two different ways: code 284 + 5 bits or code 285, so we
+   * overwrite length_code[255] to use the best encoding:
+   */
+  _length_code[length - 1] = code;
+
+  /* Initialize the mapping dist (0..32K) -> dist code (0..29) */
+  dist = 0;
+  for (code = 0; code < 16; code++) {
+    base_dist[code] = dist;
+    for (n = 0; n < (1 << extra_dbits[code]); n++) {
+      _dist_code[dist++] = code;
+    }
+  }
+  //Assert (dist == 256, "tr_static_init: dist != 256");
+  dist >>= 7; /* from now on, all distances are divided by 128 */
+  for (; code < D_CODES; code++) {
+    base_dist[code] = dist << 7;
+    for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {
+      _dist_code[256 + dist++] = code;
+    }
+  }
+  //Assert (dist == 256, "tr_static_init: 256+dist != 512");
+
+  /* Construct the codes of the static literal tree */
+  for (bits = 0; bits <= MAX_BITS; bits++) {
+    bl_count[bits] = 0;
+  }
+
+  n = 0;
+  while (n <= 143) {
+    static_ltree[n * 2 + 1]/*.Len*/ = 8;
+    n++;
+    bl_count[8]++;
+  }
+  while (n <= 255) {
+    static_ltree[n * 2 + 1]/*.Len*/ = 9;
+    n++;
+    bl_count[9]++;
+  }
+  while (n <= 279) {
+    static_ltree[n * 2 + 1]/*.Len*/ = 7;
+    n++;
+    bl_count[7]++;
+  }
+  while (n <= 287) {
+    static_ltree[n * 2 + 1]/*.Len*/ = 8;
+    n++;
+    bl_count[8]++;
+  }
+  /* Codes 286 and 287 do not exist, but we must include them in the
+   * tree construction to get a canonical Huffman tree (longest code
+   * all ones)
+   */
+  gen_codes(static_ltree, L_CODES + 1, bl_count);
+
+  /* The static distance tree is trivial: */
+  for (n = 0; n < D_CODES; n++) {
+    static_dtree[n * 2 + 1]/*.Len*/ = 5;
+    static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);
+  }
+
+  // Now data ready and we can init static trees
+  static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS + 1, L_CODES, MAX_BITS);
+  static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0,          D_CODES, MAX_BITS);
+  static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0,         BL_CODES, MAX_BL_BITS);
+
+  //static_init_done = true;
+}
+
+
+/* ===========================================================================
+ * Initialize a new block.
+ */
+function init_block(s) {
+  var n; /* iterates over tree elements */
+
+  /* Initialize the trees. */
+  for (n = 0; n < L_CODES;  n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }
+  for (n = 0; n < D_CODES;  n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }
+  for (n = 0; n < BL_CODES; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }
+
+  s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;
+  s.opt_len = s.static_len = 0;
+  s.last_lit = s.matches = 0;
+}
+
+
+/* ===========================================================================
+ * Flush the bit buffer and align the output on a byte boundary
+ */
+function bi_windup(s)
+{
+  if (s.bi_valid > 8) {
+    put_short(s, s.bi_buf);
+  } else if (s.bi_valid > 0) {
+    //put_byte(s, (Byte)s->bi_buf);
+    s.pending_buf[s.pending++] = s.bi_buf;
+  }
+  s.bi_buf = 0;
+  s.bi_valid = 0;
+}
+
+/* ===========================================================================
+ * Copy a stored block, storing first the length and its
+ * one's complement if requested.
+ */
+function copy_block(s, buf, len, header)
+//DeflateState *s;
+//charf    *buf;    /* the input data */
+//unsigned len;     /* its length */
+//int      header;  /* true if block header must be written */
+{
+  bi_windup(s);        /* align on byte boundary */
+
+  if (header) {
+    put_short(s, len);
+    put_short(s, ~len);
+  }
+//  while (len--) {
+//    put_byte(s, *buf++);
+//  }
+  utils.arraySet(s.pending_buf, s.window, buf, len, s.pending);
+  s.pending += len;
+}
+
+/* ===========================================================================
+ * Compares to subtrees, using the tree depth as tie breaker when
+ * the subtrees have equal frequency. This minimizes the worst case length.
+ */
+function smaller(tree, n, m, depth) {
+  var _n2 = n * 2;
+  var _m2 = m * 2;
+  return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||
+         (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
+}
+
+/* ===========================================================================
+ * Restore the heap property by moving down the tree starting at node k,
+ * exchanging a node with the smallest of its two sons if necessary, stopping
+ * when the heap property is re-established (each father smaller than its
+ * two sons).
+ */
+function pqdownheap(s, tree, k)
+//    deflate_state *s;
+//    ct_data *tree;  /* the tree to restore */
+//    int k;               /* node to move down */
+{
+  var v = s.heap[k];
+  var j = k << 1;  /* left son of k */
+  while (j <= s.heap_len) {
+    /* Set j to the smallest of the two sons: */
+    if (j < s.heap_len &&
+      smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {
+      j++;
+    }
+    /* Exit if v is smaller than both sons */
+    if (smaller(tree, v, s.heap[j], s.depth)) { break; }
+
+    /* Exchange v with the smallest son */
+    s.heap[k] = s.heap[j];
+    k = j;
+
+    /* And continue down the tree, setting j to the left son of k */
+    j <<= 1;
+  }
+  s.heap[k] = v;
+}
+
+
+// inlined manually
+// var SMALLEST = 1;
+
+/* ===========================================================================
+ * Send the block data compressed using the given Huffman trees
+ */
+function compress_block(s, ltree, dtree)
+//    deflate_state *s;
+//    const ct_data *ltree; /* literal tree */
+//    const ct_data *dtree; /* distance tree */
+{
+  var dist;           /* distance of matched string */
+  var lc;             /* match length or unmatched char (if dist == 0) */
+  var lx = 0;         /* running index in l_buf */
+  var code;           /* the code to send */
+  var extra;          /* number of extra bits to send */
+
+  if (s.last_lit !== 0) {
+    do {
+      dist = (s.pending_buf[s.d_buf + lx * 2] << 8) | (s.pending_buf[s.d_buf + lx * 2 + 1]);
+      lc = s.pending_buf[s.l_buf + lx];
+      lx++;
+
+      if (dist === 0) {
+        send_code(s, lc, ltree); /* send a literal byte */
+        //Tracecv(isgraph(lc), (stderr," '%c' ", lc));
+      } else {
+        /* Here, lc is the match length - MIN_MATCH */
+        code = _length_code[lc];
+        send_code(s, code + LITERALS + 1, ltree); /* send the length code */
+        extra = extra_lbits[code];
+        if (extra !== 0) {
+          lc -= base_length[code];
+          send_bits(s, lc, extra);       /* send the extra length bits */
+        }
+        dist--; /* dist is now the match distance - 1 */
+        code = d_code(dist);
+        //Assert (code < D_CODES, "bad d_code");
+
+        send_code(s, code, dtree);       /* send the distance code */
+        extra = extra_dbits[code];
+        if (extra !== 0) {
+          dist -= base_dist[code];
+          send_bits(s, dist, extra);   /* send the extra distance bits */
+        }
+      } /* literal or match pair ? */
+
+      /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
+      //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
+      //       "pendingBuf overflow");
+
+    } while (lx < s.last_lit);
+  }
+
+  send_code(s, END_BLOCK, ltree);
+}
+
+
+/* ===========================================================================
+ * Construct one Huffman tree and assigns the code bit strings and lengths.
+ * Update the total bit length for the current block.
+ * IN assertion: the field freq is set for all tree elements.
+ * OUT assertions: the fields len and code are set to the optimal bit length
+ *     and corresponding code. The length opt_len is updated; static_len is
+ *     also updated if stree is not null. The field max_code is set.
+ */
+function build_tree(s, desc)
+//    deflate_state *s;
+//    tree_desc *desc; /* the tree descriptor */
+{
+  var tree     = desc.dyn_tree;
+  var stree    = desc.stat_desc.static_tree;
+  var has_stree = desc.stat_desc.has_stree;
+  var elems    = desc.stat_desc.elems;
+  var n, m;          /* iterate over heap elements */
+  var max_code = -1; /* largest code with non zero frequency */
+  var node;          /* new node being created */
+
+  /* Construct the initial heap, with least frequent element in
+   * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
+   * heap[0] is not used.
+   */
+  s.heap_len = 0;
+  s.heap_max = HEAP_SIZE;
+
+  for (n = 0; n < elems; n++) {
+    if (tree[n * 2]/*.Freq*/ !== 0) {
+      s.heap[++s.heap_len] = max_code = n;
+      s.depth[n] = 0;
+
+    } else {
+      tree[n * 2 + 1]/*.Len*/ = 0;
+    }
+  }
+
+  /* The pkzip format requires that at least one distance code exists,
+   * and that at least one bit should be sent even if there is only one
+   * possible code. So to avoid special checks later on we force at least
+   * two codes of non zero frequency.
+   */
+  while (s.heap_len < 2) {
+    node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);
+    tree[node * 2]/*.Freq*/ = 1;
+    s.depth[node] = 0;
+    s.opt_len--;
+
+    if (has_stree) {
+      s.static_len -= stree[node * 2 + 1]/*.Len*/;
+    }
+    /* node is 0 or 1 so it does not have extra bits */
+  }
+  desc.max_code = max_code;
+
+  /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
+   * establish sub-heaps of increasing lengths:
+   */
+  for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }
+
+  /* Construct the Huffman tree by repeatedly combining the least two
+   * frequent nodes.
+   */
+  node = elems;              /* next internal node of the tree */
+  do {
+    //pqremove(s, tree, n);  /* n = node of least frequency */
+    /*** pqremove ***/
+    n = s.heap[1/*SMALLEST*/];
+    s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];
+    pqdownheap(s, tree, 1/*SMALLEST*/);
+    /***/
+
+    m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */
+
+    s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */
+    s.heap[--s.heap_max] = m;
+
+    /* Create a new node father of n and m */
+    tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;
+    s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
+    tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;
+
+    /* and insert the new node in the heap */
+    s.heap[1/*SMALLEST*/] = node++;
+    pqdownheap(s, tree, 1/*SMALLEST*/);
+
+  } while (s.heap_len >= 2);
+
+  s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];
+
+  /* At this point, the fields freq and dad are set. We can now
+   * generate the bit lengths.
+   */
+  gen_bitlen(s, desc);
+
+  /* The field len is now set, we can generate the bit codes */
+  gen_codes(tree, max_code, s.bl_count);
+}
+
+
+/* ===========================================================================
+ * Scan a literal or distance tree to determine the frequencies of the codes
+ * in the bit length tree.
+ */
+function scan_tree(s, tree, max_code)
+//    deflate_state *s;
+//    ct_data *tree;   /* the tree to be scanned */
+//    int max_code;    /* and its largest code of non zero frequency */
+{
+  var n;                     /* iterates over all tree elements */
+  var prevlen = -1;          /* last emitted length */
+  var curlen;                /* length of current code */
+
+  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
+
+  var count = 0;             /* repeat count of the current code */
+  var max_count = 7;         /* max repeat count */
+  var min_count = 4;         /* min repeat count */
+
+  if (nextlen === 0) {
+    max_count = 138;
+    min_count = 3;
+  }
+  tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */
+
+  for (n = 0; n <= max_code; n++) {
+    curlen = nextlen;
+    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
+
+    if (++count < max_count && curlen === nextlen) {
+      continue;
+
+    } else if (count < min_count) {
+      s.bl_tree[curlen * 2]/*.Freq*/ += count;
+
+    } else if (curlen !== 0) {
+
+      if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }
+      s.bl_tree[REP_3_6 * 2]/*.Freq*/++;
+
+    } else if (count <= 10) {
+      s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;
+
+    } else {
+      s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;
+    }
+
+    count = 0;
+    prevlen = curlen;
+
+    if (nextlen === 0) {
+      max_count = 138;
+      min_count = 3;
+
+    } else if (curlen === nextlen) {
+      max_count = 6;
+      min_count = 3;
+
+    } else {
+      max_count = 7;
+      min_count = 4;
+    }
+  }
+}
+
+
+/* ===========================================================================
+ * Send a literal or distance tree in compressed form, using the codes in
+ * bl_tree.
+ */
+function send_tree(s, tree, max_code)
+//    deflate_state *s;
+//    ct_data *tree; /* the tree to be scanned */
+//    int max_code;       /* and its largest code of non zero frequency */
+{
+  var n;                     /* iterates over all tree elements */
+  var prevlen = -1;          /* last emitted length */
+  var curlen;                /* length of current code */
+
+  var nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */
+
+  var count = 0;             /* repeat count of the current code */
+  var max_count = 7;         /* max repeat count */
+  var min_count = 4;         /* min repeat count */
+
+  /* tree[max_code+1].Len = -1; */  /* guard already set */
+  if (nextlen === 0) {
+    max_count = 138;
+    min_count = 3;
+  }
+
+  for (n = 0; n <= max_code; n++) {
+    curlen = nextlen;
+    nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;
+
+    if (++count < max_count && curlen === nextlen) {
+      continue;
+
+    } else if (count < min_count) {
+      do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);
+
+    } else if (curlen !== 0) {
+      if (curlen !== prevlen) {
+        send_code(s, curlen, s.bl_tree);
+        count--;
+      }
+      //Assert(count >= 3 && count <= 6, " 3_6?");
+      send_code(s, REP_3_6, s.bl_tree);
+      send_bits(s, count - 3, 2);
+
+    } else if (count <= 10) {
+      send_code(s, REPZ_3_10, s.bl_tree);
+      send_bits(s, count - 3, 3);
+
+    } else {
+      send_code(s, REPZ_11_138, s.bl_tree);
+      send_bits(s, count - 11, 7);
+    }
+
+    count = 0;
+    prevlen = curlen;
+    if (nextlen === 0) {
+      max_count = 138;
+      min_count = 3;
+
+    } else if (curlen === nextlen) {
+      max_count = 6;
+      min_count = 3;
+
+    } else {
+      max_count = 7;
+      min_count = 4;
+    }
+  }
+}
+
+
+/* ===========================================================================
+ * Construct the Huffman tree for the bit lengths and return the index in
+ * bl_order of the last bit length code to send.
+ */
+function build_bl_tree(s) {
+  var max_blindex;  /* index of last bit length code of non zero freq */
+
+  /* Determine the bit length frequencies for literal and distance trees */
+  scan_tree(s, s.dyn_ltree, s.l_desc.max_code);
+  scan_tree(s, s.dyn_dtree, s.d_desc.max_code);
+
+  /* Build the bit length tree: */
+  build_tree(s, s.bl_desc);
+  /* opt_len now includes the length of the tree representations, except
+   * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
+   */
+
+  /* Determine the number of bit length codes to send. The pkzip format
+   * requires that at least 4 bit length codes be sent. (appnote.txt says
+   * 3 but the actual value used is 4.)
+   */
+  for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) {
+    if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {
+      break;
+    }
+  }
+  /* Update opt_len to include the bit length tree and counts */
+  s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;
+  //Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld",
+  //        s->opt_len, s->static_len));
+
+  return max_blindex;
+}
+
+
+/* ===========================================================================
+ * Send the header for a block using dynamic Huffman trees: the counts, the
+ * lengths of the bit length codes, the literal tree and the distance tree.
+ * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
+ */
+function send_all_trees(s, lcodes, dcodes, blcodes)
+//    deflate_state *s;
+//    int lcodes, dcodes, blcodes; /* number of codes for each tree */
+{
+  var rank;                    /* index in bl_order */
+
+  //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
+  //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
+  //        "too many codes");
+  //Tracev((stderr, "\nbl counts: "));
+  send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */
+  send_bits(s, dcodes - 1,   5);
+  send_bits(s, blcodes - 4,  4); /* not -3 as stated in appnote.txt */
+  for (rank = 0; rank < blcodes; rank++) {
+    //Tracev((stderr, "\nbl code %2d ", bl_order[rank]));
+    send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);
+  }
+  //Tracev((stderr, "\nbl tree: sent %ld", s->bits_sent));
+
+  send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */
+  //Tracev((stderr, "\nlit tree: sent %ld", s->bits_sent));
+
+  send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */
+  //Tracev((stderr, "\ndist tree: sent %ld", s->bits_sent));
+}
+
+
+/* ===========================================================================
+ * Check if the data type is TEXT or BINARY, using the following algorithm:
+ * - TEXT if the two conditions below are satisfied:
+ *    a) There are no non-portable control characters belonging to the
+ *       "black list" (0..6, 14..25, 28..31).
+ *    b) There is at least one printable character belonging to the
+ *       "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).
+ * - BINARY otherwise.
+ * - The following partially-portable control characters form a
+ *   "gray list" that is ignored in this detection algorithm:
+ *   (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).
+ * IN assertion: the fields Freq of dyn_ltree are set.
+ */
+function detect_data_type(s) {
+  /* black_mask is the bit mask of black-listed bytes
+   * set bits 0..6, 14..25, and 28..31
+   * 0xf3ffc07f = binary 11110011111111111100000001111111
+   */
+  var black_mask = 0xf3ffc07f;
+  var n;
+
+  /* Check for non-textual ("black-listed") bytes. */
+  for (n = 0; n <= 31; n++, black_mask >>>= 1) {
+    if ((black_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {
+      return Z_BINARY;
+    }
+  }
+
+  /* Check for textual ("white-listed") bytes. */
+  if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||
+      s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {
+    return Z_TEXT;
+  }
+  for (n = 32; n < LITERALS; n++) {
+    if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {
+      return Z_TEXT;
+    }
+  }
+
+  /* There are no "black-listed" or "white-listed" bytes:
+   * this stream either is empty or has tolerated ("gray-listed") bytes only.
+   */
+  return Z_BINARY;
+}
+
+
+var static_init_done = false;
+
+/* ===========================================================================
+ * Initialize the tree data structures for a new zlib stream.
+ */
+function _tr_init(s)
+{
+
+  if (!static_init_done) {
+    tr_static_init();
+    static_init_done = true;
+  }
+
+  s.l_desc  = new TreeDesc(s.dyn_ltree, static_l_desc);
+  s.d_desc  = new TreeDesc(s.dyn_dtree, static_d_desc);
+  s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);
+
+  s.bi_buf = 0;
+  s.bi_valid = 0;
+
+  /* Initialize the first block of the first file: */
+  init_block(s);
+}
+
+
+/* ===========================================================================
+ * Send a stored block
+ */
+function _tr_stored_block(s, buf, stored_len, last)
+//DeflateState *s;
+//charf *buf;       /* input block */
+//ulg stored_len;   /* length of input block */
+//int last;         /* one if this is the last block for a file */
+{
+  send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3);    /* send block type */
+  copy_block(s, buf, stored_len, true); /* with header */
+}
+
+
+/* ===========================================================================
+ * Send one empty static block to give enough lookahead for inflate.
+ * This takes 10 bits, of which 7 may remain in the bit buffer.
+ */
+function _tr_align(s) {
+  send_bits(s, STATIC_TREES << 1, 3);
+  send_code(s, END_BLOCK, static_ltree);
+  bi_flush(s);
+}
+
+
+/* ===========================================================================
+ * Determine the best encoding for the current block: dynamic trees, static
+ * trees or store, and output the encoded block to the zip file.
+ */
+function _tr_flush_block(s, buf, stored_len, last)
+//DeflateState *s;
+//charf *buf;       /* input block, or NULL if too old */
+//ulg stored_len;   /* length of input block */
+//int last;         /* one if this is the last block for a file */
+{
+  var opt_lenb, static_lenb;  /* opt_len and static_len in bytes */
+  var max_blindex = 0;        /* index of last bit length code of non zero freq */
+
+  /* Build the Huffman trees unless a stored block is forced */
+  if (s.level > 0) {
+
+    /* Check if the file is binary or text */
+    if (s.strm.data_type === Z_UNKNOWN) {
+      s.strm.data_type = detect_data_type(s);
+    }
+
+    /* Construct the literal and distance trees */
+    build_tree(s, s.l_desc);
+    // Tracev((stderr, "\nlit data: dyn %ld, stat %ld", s->opt_len,
+    //        s->static_len));
+
+    build_tree(s, s.d_desc);
+    // Tracev((stderr, "\ndist data: dyn %ld, stat %ld", s->opt_len,
+    //        s->static_len));
+    /* At this point, opt_len and static_len are the total bit lengths of
+     * the compressed block data, excluding the tree representations.
+     */
+
+    /* Build the bit length tree for the above two trees, and get the index
+     * in bl_order of the last bit length code to send.
+     */
+    max_blindex = build_bl_tree(s);
+
+    /* Determine the best encoding. Compute the block lengths in bytes. */
+    opt_lenb = (s.opt_len + 3 + 7) >>> 3;
+    static_lenb = (s.static_len + 3 + 7) >>> 3;
+
+    // Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
+    //        opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
+    //        s->last_lit));
+
+    if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }
+
+  } else {
+    // Assert(buf != (char*)0, "lost buf");
+    opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
+  }
+
+  if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {
+    /* 4: two words for the lengths */
+
+    /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
+     * Otherwise we can't have processed more than WSIZE input bytes since
+     * the last block flush, because compression would have been
+     * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
+     * transform a block into a stored block.
+     */
+    _tr_stored_block(s, buf, stored_len, last);
+
+  } else if (s.strategy === Z_FIXED || static_lenb === opt_lenb) {
+
+    send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);
+    compress_block(s, static_ltree, static_dtree);
+
+  } else {
+    send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);
+    send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);
+    compress_block(s, s.dyn_ltree, s.dyn_dtree);
+  }
+  // Assert (s->compressed_len == s->bits_sent, "bad compressed size");
+  /* The above check is made mod 2^32, for files larger than 512 MB
+   * and uLong implemented on 32 bits.
+   */
+  init_block(s);
+
+  if (last) {
+    bi_windup(s);
+  }
+  // Tracev((stderr,"\ncomprlen %lu(%lu) ", s->compressed_len>>3,
+  //       s->compressed_len-7*last));
+}
+
+/* ===========================================================================
+ * Save the match info and tally the frequency counts. Return true if
+ * the current block must be flushed.
+ */
+function _tr_tally(s, dist, lc)
+//    deflate_state *s;
+//    unsigned dist;  /* distance of matched string */
+//    unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
+{
+  //var out_length, in_length, dcode;
+
+  s.pending_buf[s.d_buf + s.last_lit * 2]     = (dist >>> 8) & 0xff;
+  s.pending_buf[s.d_buf + s.last_lit * 2 + 1] = dist & 0xff;
+
+  s.pending_buf[s.l_buf + s.last_lit] = lc & 0xff;
+  s.last_lit++;
+
+  if (dist === 0) {
+    /* lc is the unmatched char */
+    s.dyn_ltree[lc * 2]/*.Freq*/++;
+  } else {
+    s.matches++;
+    /* Here, lc is the match length - MIN_MATCH */
+    dist--;             /* dist = match distance - 1 */
+    //Assert((ush)dist < (ush)MAX_DIST(s) &&
+    //       (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
+    //       (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");
+
+    s.dyn_ltree[(_length_code[lc] + LITERALS + 1) * 2]/*.Freq*/++;
+    s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;
+  }
+
+// (!) This block is disabled in zlib defailts,
+// don't enable it for binary compatibility
+
+//#ifdef TRUNCATE_BLOCK
+//  /* Try to guess if it is profitable to stop the current block here */
+//  if ((s.last_lit & 0x1fff) === 0 && s.level > 2) {
+//    /* Compute an upper bound for the compressed length */
+//    out_length = s.last_lit*8;
+//    in_length = s.strstart - s.block_start;
+//
+//    for (dcode = 0; dcode < D_CODES; dcode++) {
+//      out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]);
+//    }
+//    out_length >>>= 3;
+//    //Tracev((stderr,"\nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
+//    //       s->last_lit, in_length, out_length,
+//    //       100L - out_length*100L/in_length));
+//    if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) {
+//      return true;
+//    }
+//  }
+//#endif
+
+  return (s.last_lit === s.lit_bufsize - 1);
+  /* We avoid equality with lit_bufsize because of wraparound at 64K
+   * on 16 bit machines and because stored blocks are restricted to
+   * 64K-1 bytes.
+   */
+}
+
+exports._tr_init  = _tr_init;
+exports._tr_stored_block = _tr_stored_block;
+exports._tr_flush_block  = _tr_flush_block;
+exports._tr_tally = _tr_tally;
+exports._tr_align = _tr_align;
+
+},{"../utils/common":41}],53:[function(require,module,exports){
+'use strict';
+
+// (C) 1995-2013 Jean-loup Gailly and Mark Adler
+// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+//
+// This software is provided 'as-is', without any express or implied
+// warranty. In no event will the authors be held liable for any damages
+// arising from the use of this software.
+//
+// Permission is granted to anyone to use this software for any purpose,
+// including commercial applications, and to alter it and redistribute it
+// freely, subject to the following restrictions:
+//
+// 1. The origin of this software must not be misrepresented; you must not
+//   claim that you wrote the original software. If you use this software
+//   in a product, an acknowledgment in the product documentation would be
+//   appreciated but is not required.
+// 2. Altered source versions must be plainly marked as such, and must not be
+//   misrepresented as being the original software.
+// 3. This notice may not be removed or altered from any source distribution.
+
+function ZStream() {
+  /* next input byte */
+  this.input = null; // JS specific, because we have no pointers
+  this.next_in = 0;
+  /* number of bytes available at input */
+  this.avail_in = 0;
+  /* total number of input bytes read so far */
+  this.total_in = 0;
+  /* next output byte should be put there */
+  this.output = null; // JS specific, because we have no pointers
+  this.next_out = 0;
+  /* remaining free space at output */
+  this.avail_out = 0;
+  /* total number of bytes output so far */
+  this.total_out = 0;
+  /* last error message, NULL if no error */
+  this.msg = ''/*Z_NULL*/;
+  /* not visible by applications */
+  this.state = null;
+  /* best guess about the data type: binary or text */
+  this.data_type = 2/*Z_UNKNOWN*/;
+  /* adler32 value of the uncompressed data */
+  this.adler = 0;
+}
+
+module.exports = ZStream;
+
+},{}],54:[function(require,module,exports){
+'use strict';
+module.exports = typeof setImmediate === 'function' ? setImmediate :
+	function setImmediate() {
+		var args = [].slice.apply(arguments);
+		args.splice(1, 0, 0);
+		setTimeout.apply(null, args);
+	};
+
+},{}]},{},[10])(10)
+});
\ No newline at end of file
diff --git a/api/jquery/jszip/dist/jszip.min.js b/api/jquery/jszip/dist/jszip.min.js
new file mode 100644
index 0000000000..6c4645c1bb
--- /dev/null
+++ b/api/jquery/jszip/dist/jszip.min.js
@@ -0,0 +1,13 @@
+/*!
+
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
+<http://stuartk.com/jszip>
+
+(c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
+
+JSZip uses the library pako released under the MIT license :
+https://github.com/nodeca/pako/blob/master/LICENSE
+*/
+
+!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).JSZip=t()}}(function(){return function s(a,o,h){function u(r,t){if(!o[r]){if(!a[r]){var e="function"==typeof require&&require;if(!t&&e)return e(r,!0);if(l)return l(r,!0);var i=new Error("Cannot find module '"+r+"'");throw i.code="MODULE_NOT_FOUND",i}var n=o[r]={exports:{}};a[r][0].call(n.exports,function(t){var e=a[r][1][t];return u(e||t)},n,n.exports,s,a,o,h)}return o[r].exports}for(var l="function"==typeof require&&require,t=0;t<h.length;t++)u(h[t]);return u}({1:[function(t,e,r){"use strict";var c=t("./utils"),d=t("./support"),p="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";r.encode=function(t){for(var e,r,i,n,s,a,o,h=[],u=0,l=t.length,f=l,d="string"!==c.getTypeOf(t);u<t.length;)f=l-u,i=d?(e=t[u++],r=u<l?t[u++]:0,u<l?t[u++]:0):(e=t.charCodeAt(u++),r=u<l?t.charCodeAt(u++):0,u<l?t.charCodeAt(u++):0),n=e>>2,s=(3&e)<<4|r>>4,a=1<f?(15&r)<<2|i>>6:64,o=2<f?63&i:64,h.push(p.charAt(n)+p.charAt(s)+p.charAt(a)+p.charAt(o));return h.join("")},r.decode=function(t){var e,r,i,n,s,a,o=0,h=0,u="data:";if(t.substr(0,u.length)===u)throw new Error("Invalid base64 input, it looks like a data url.");var l,f=3*(t=t.replace(/[^A-Za-z0-9\+\/\=]/g,"")).length/4;if(t.charAt(t.length-1)===p.charAt(64)&&f--,t.charAt(t.length-2)===p.charAt(64)&&f--,f%1!=0)throw new Error("Invalid base64 input, bad content length.");for(l=d.uint8array?new Uint8Array(0|f):new Array(0|f);o<t.length;)e=p.indexOf(t.charAt(o++))<<2|(n=p.indexOf(t.charAt(o++)))>>4,r=(15&n)<<4|(s=p.indexOf(t.charAt(o++)))>>2,i=(3&s)<<6|(a=p.indexOf(t.charAt(o++))),l[h++]=e,64!==s&&(l[h++]=r),64!==a&&(l[h++]=i);return l}},{"./support":30,"./utils":32}],2:[function(t,e,r){"use strict";var i=t("./external"),n=t("./stream/DataWorker"),s=t("./stream/Crc32Probe"),a=t("./stream/DataLengthProbe");function o(t,e,r,i,n){this.compressedSize=t,this.uncompressedSize=e,this.crc32=r,this.compression=i,this.compressedContent=n}o.prototype={getContentWorker:function(){var t=new n(i.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new a("data_length")),e=this;return t.on("end",function(){if(this.streamInfo.data_length!==e.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),t},getCompressedWorker:function(){return new n(i.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},o.createWorkerFrom=function(t,e,r){return t.pipe(new s).pipe(new a("uncompressedSize")).pipe(e.compressWorker(r)).pipe(new a("compressedSize")).withStreamInfo("compression",e)},e.exports=o},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(t,e,r){"use strict";var i=t("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(t){return new i("STORE compression")},uncompressWorker:function(){return new i("STORE decompression")}},r.DEFLATE=t("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(t,e,r){"use strict";var i=t("./utils");var o=function(){for(var t,e=[],r=0;r<256;r++){t=r;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e){return void 0!==t&&t.length?"string"!==i.getTypeOf(t)?function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e[a])];return-1^t}(0|e,t,t.length,0):function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e.charCodeAt(a))];return-1^t}(0|e,t,t.length,0):0}},{"./utils":32}],5:[function(t,e,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(t,e,r){"use strict";var i=null;i="undefined"!=typeof Promise?Promise:t("lie"),e.exports={Promise:i}},{lie:37}],7:[function(t,e,r){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,n=t("pako"),s=t("./utils"),a=t("./stream/GenericWorker"),o=i?"uint8array":"array";function h(t,e){a.call(this,"FlateWorker/"+t),this._pako=null,this._pakoAction=t,this._pakoOptions=e,this.meta={}}r.magic="\b\0",s.inherits(h,a),h.prototype.processChunk=function(t){this.meta=t.meta,null===this._pako&&this._createPako(),this._pako.push(s.transformTo(o,t.data),!1)},h.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},h.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},h.prototype._createPako=function(){this._pako=new n[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(t){return new h("Deflate",t)},r.uncompressWorker=function(){return new h("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(t,e,r){"use strict";function A(t,e){var r,i="";for(r=0;r<e;r++)i+=String.fromCharCode(255&t),t>>>=8;return i}function i(t,e,r,i,n,s){var a,o,h=t.file,u=t.compression,l=s!==O.utf8encode,f=I.transformTo("string",s(h.name)),d=I.transformTo("string",O.utf8encode(h.name)),c=h.comment,p=I.transformTo("string",s(c)),m=I.transformTo("string",O.utf8encode(c)),_=d.length!==h.name.length,g=m.length!==c.length,b="",v="",y="",w=h.dir,k=h.date,x={crc32:0,compressedSize:0,uncompressedSize:0};e&&!r||(x.crc32=t.crc32,x.compressedSize=t.compressedSize,x.uncompressedSize=t.uncompressedSize);var S=0;e&&(S|=8),l||!_&&!g||(S|=2048);var z=0,C=0;w&&(z|=16),"UNIX"===n?(C=798,z|=function(t,e){var r=t;return t||(r=e?16893:33204),(65535&r)<<16}(h.unixPermissions,w)):(C=20,z|=function(t){return 63&(t||0)}(h.dosPermissions)),a=k.getUTCHours(),a<<=6,a|=k.getUTCMinutes(),a<<=5,a|=k.getUTCSeconds()/2,o=k.getUTCFullYear()-1980,o<<=4,o|=k.getUTCMonth()+1,o<<=5,o|=k.getUTCDate(),_&&(v=A(1,1)+A(B(f),4)+d,b+="up"+A(v.length,2)+v),g&&(y=A(1,1)+A(B(p),4)+m,b+="uc"+A(y.length,2)+y);var E="";return E+="\n\0",E+=A(S,2),E+=u.magic,E+=A(a,2),E+=A(o,2),E+=A(x.crc32,4),E+=A(x.compressedSize,4),E+=A(x.uncompressedSize,4),E+=A(f.length,2),E+=A(b.length,2),{fileRecord:R.LOCAL_FILE_HEADER+E+f+b,dirRecord:R.CENTRAL_FILE_HEADER+A(C,2)+E+A(p.length,2)+"\0\0\0\0"+A(z,4)+A(i,4)+f+b+p}}var I=t("../utils"),n=t("../stream/GenericWorker"),O=t("../utf8"),B=t("../crc32"),R=t("../signature");function s(t,e,r,i){n.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=e,this.zipPlatform=r,this.encodeFileName=i,this.streamFiles=t,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}I.inherits(s,n),s.prototype.push=function(t){var e=t.meta.percent||0,r=this.entriesCount,i=this._sources.length;this.accumulate?this.contentBuffer.push(t):(this.bytesWritten+=t.data.length,n.prototype.push.call(this,{data:t.data,meta:{currentFile:this.currentFile,percent:r?(e+100*(r-i-1))/r:100}}))},s.prototype.openedSource=function(t){this.currentSourceOffset=this.bytesWritten,this.currentFile=t.file.name;var e=this.streamFiles&&!t.file.dir;if(e){var r=i(t,e,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);this.push({data:r.fileRecord,meta:{percent:0}})}else this.accumulate=!0},s.prototype.closedSource=function(t){this.accumulate=!1;var e=this.streamFiles&&!t.file.dir,r=i(t,e,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),e)this.push({data:function(t){return R.DATA_DESCRIPTOR+A(t.crc32,4)+A(t.compressedSize,4)+A(t.uncompressedSize,4)}(t),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},s.prototype.flush=function(){for(var t=this.bytesWritten,e=0;e<this.dirRecords.length;e++)this.push({data:this.dirRecords[e],meta:{percent:100}});var r=this.bytesWritten-t,i=function(t,e,r,i,n){var s=I.transformTo("string",n(i));return R.CENTRAL_DIRECTORY_END+"\0\0\0\0"+A(t,2)+A(t,2)+A(e,4)+A(r,4)+A(s.length,2)+s}(this.dirRecords.length,r,t,this.zipComment,this.encodeFileName);this.push({data:i,meta:{percent:100}})},s.prototype.prepareNextSource=function(){this.previous=this._sources.shift(),this.openedSource(this.previous.streamInfo),this.isPaused?this.previous.pause():this.previous.resume()},s.prototype.registerPrevious=function(t){this._sources.push(t);var e=this;return t.on("data",function(t){e.processChunk(t)}),t.on("end",function(){e.closedSource(e.previous.streamInfo),e._sources.length?e.prepareNextSource():e.end()}),t.on("error",function(t){e.error(t)}),this},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this.previous&&this._sources.length?(this.prepareNextSource(),!0):this.previous||this._sources.length||this.generatedError?void 0:(this.end(),!0))},s.prototype.error=function(t){var e=this._sources;if(!n.prototype.error.call(this,t))return!1;for(var r=0;r<e.length;r++)try{e[r].error(t)}catch(t){}return!0},s.prototype.lock=function(){n.prototype.lock.call(this);for(var t=this._sources,e=0;e<t.length;e++)t[e].lock()},e.exports=s},{"../crc32":4,"../signature":23,"../stream/GenericWorker":28,"../utf8":31,"../utils":32}],9:[function(t,e,r){"use strict";var u=t("../compressions"),i=t("./ZipFileWorker");r.generateWorker=function(t,a,e){var o=new i(a.streamFiles,e,a.platform,a.encodeFileName),h=0;try{t.forEach(function(t,e){h++;var r=function(t,e){var r=t||e,i=u[r];if(!i)throw new Error(r+" is not a valid compression method !");return i}(e.options.compression,a.compression),i=e.options.compressionOptions||a.compressionOptions||{},n=e.dir,s=e.date;e._compressWorker(r,i).withStreamInfo("file",{name:t,dir:n,date:s,comment:e.comment||"",unixPermissions:e.unixPermissions,dosPermissions:e.dosPermissions}).pipe(o)}),o.entriesCount=h}catch(t){o.error(t)}return o}},{"../compressions":3,"./ZipFileWorker":8}],10:[function(t,e,r){"use strict";function i(){if(!(this instanceof i))return new i;if(arguments.length)throw new Error("The constructor with parameters has been removed in JSZip 3.0, please check the upgrade guide.");this.files=Object.create(null),this.comment=null,this.root="",this.clone=function(){var t=new i;for(var e in this)"function"!=typeof this[e]&&(t[e]=this[e]);return t}}(i.prototype=t("./object")).loadAsync=t("./load"),i.support=t("./support"),i.defaults=t("./defaults"),i.version="3.7.1",i.loadAsync=function(t,e){return(new i).loadAsync(t,e)},i.external=t("./external"),e.exports=i},{"./defaults":5,"./external":6,"./load":11,"./object":15,"./support":30}],11:[function(t,e,r){"use strict";var i=t("./utils"),n=t("./external"),o=t("./utf8"),h=t("./zipEntries"),s=t("./stream/Crc32Probe"),u=t("./nodejsUtils");function l(i){return new n.Promise(function(t,e){var r=i.decompressed.getContentWorker().pipe(new s);r.on("error",function(t){e(t)}).on("end",function(){r.streamInfo.crc32!==i.decompressed.crc32?e(new Error("Corrupted zip : CRC32 mismatch")):t()}).resume()})}e.exports=function(t,s){var a=this;return s=i.extend(s||{},{base64:!1,checkCRC32:!1,optimizedBinaryString:!1,createFolders:!1,decodeFileName:o.utf8decode}),u.isNode&&u.isStream(t)?n.Promise.reject(new Error("JSZip can't accept a stream when loading a zip file.")):i.prepareContent("the loaded zip file",t,!0,s.optimizedBinaryString,s.base64).then(function(t){var e=new h(s);return e.load(t),e}).then(function(t){var e=[n.Promise.resolve(t)],r=t.files;if(s.checkCRC32)for(var i=0;i<r.length;i++)e.push(l(r[i]));return n.Promise.all(e)}).then(function(t){for(var e=t.shift(),r=e.files,i=0;i<r.length;i++){var n=r[i];a.file(n.fileNameStr,n.decompressed,{binary:!0,optimizedBinaryString:!0,date:n.date,dir:n.dir,comment:n.fileCommentStr.length?n.fileCommentStr:null,unixPermissions:n.unixPermissions,dosPermissions:n.dosPermissions,createFolders:s.createFolders})}return e.zipComment.length&&(a.comment=e.zipComment),a})}},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(t,e,r){"use strict";var i=t("../utils"),n=t("../stream/GenericWorker");function s(t,e){n.call(this,"Nodejs stream input adapter for "+t),this._upstreamEnded=!1,this._bindStream(e)}i.inherits(s,n),s.prototype._bindStream=function(t){var e=this;(this._stream=t).pause(),t.on("data",function(t){e.push({data:t,meta:{percent:0}})}).on("error",function(t){e.isPaused?this.generatedError=t:e.error(t)}).on("end",function(){e.isPaused?e._upstreamEnded=!0:e.end()})},s.prototype.pause=function(){return!!n.prototype.pause.call(this)&&(this._stream.pause(),!0)},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(this._upstreamEnded?this.end():this._stream.resume(),!0)},e.exports=s},{"../stream/GenericWorker":28,"../utils":32}],13:[function(t,e,r){"use strict";var n=t("readable-stream").Readable;function i(t,e,r){n.call(this,e),this._helper=t;var i=this;t.on("data",function(t,e){i.push(t)||i._helper.pause(),r&&r(e)}).on("error",function(t){i.emit("error",t)}).on("end",function(){i.push(null)})}t("../utils").inherits(i,n),i.prototype._read=function(){this._helper.resume()},e.exports=i},{"../utils":32,"readable-stream":16}],14:[function(t,e,r){"use strict";e.exports={isNode:"undefined"!=typeof Buffer,newBufferFrom:function(t,e){if(Buffer.from&&Buffer.from!==Uint8Array.from)return Buffer.from(t,e);if("number"==typeof t)throw new Error('The "data" argument must not be a number');return new Buffer(t,e)},allocBuffer:function(t){if(Buffer.alloc)return Buffer.alloc(t);var e=new Buffer(t);return e.fill(0),e},isBuffer:function(t){return Buffer.isBuffer(t)},isStream:function(t){return t&&"function"==typeof t.on&&"function"==typeof t.pause&&"function"==typeof t.resume}}},{}],15:[function(t,e,r){"use strict";function s(t,e,r){var i,n=u.getTypeOf(e),s=u.extend(r||{},f);s.date=s.date||new Date,null!==s.compression&&(s.compression=s.compression.toUpperCase()),"string"==typeof s.unixPermissions&&(s.unixPermissions=parseInt(s.unixPermissions,8)),s.unixPermissions&&16384&s.unixPermissions&&(s.dir=!0),s.dosPermissions&&16&s.dosPermissions&&(s.dir=!0),s.dir&&(t=g(t)),s.createFolders&&(i=_(t))&&b.call(this,i,!0);var a="string"===n&&!1===s.binary&&!1===s.base64;r&&void 0!==r.binary||(s.binary=!a),(e instanceof d&&0===e.uncompressedSize||s.dir||!e||0===e.length)&&(s.base64=!1,s.binary=!0,e="",s.compression="STORE",n="string");var o=null;o=e instanceof d||e instanceof l?e:p.isNode&&p.isStream(e)?new m(t,e):u.prepareContent(t,e,s.binary,s.optimizedBinaryString,s.base64);var h=new c(t,o,s);this.files[t]=h}var n=t("./utf8"),u=t("./utils"),l=t("./stream/GenericWorker"),a=t("./stream/StreamHelper"),f=t("./defaults"),d=t("./compressedObject"),c=t("./zipObject"),o=t("./generate"),p=t("./nodejsUtils"),m=t("./nodejs/NodejsStreamInputAdapter"),_=function(t){"/"===t.slice(-1)&&(t=t.substring(0,t.length-1));var e=t.lastIndexOf("/");return 0<e?t.substring(0,e):""},g=function(t){return"/"!==t.slice(-1)&&(t+="/"),t},b=function(t,e){return e=void 0!==e?e:f.createFolders,t=g(t),this.files[t]||s.call(this,t,null,{dir:!0,createFolders:e}),this.files[t]};function h(t){return"[object RegExp]"===Object.prototype.toString.call(t)}var i={load:function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},forEach:function(t){var e,r,i;for(e in this.files)i=this.files[e],(r=e.slice(this.root.length,e.length))&&e.slice(0,this.root.length)===this.root&&t(r,i)},filter:function(r){var i=[];return this.forEach(function(t,e){r(t,e)&&i.push(e)}),i},file:function(t,e,r){if(1!==arguments.length)return t=this.root+t,s.call(this,t,e,r),this;if(h(t)){var i=t;return this.filter(function(t,e){return!e.dir&&i.test(t)})}var n=this.files[this.root+t];return n&&!n.dir?n:null},folder:function(r){if(!r)return this;if(h(r))return this.filter(function(t,e){return e.dir&&r.test(t)});var t=this.root+r,e=b.call(this,t),i=this.clone();return i.root=e.name,i},remove:function(r){r=this.root+r;var t=this.files[r];if(t||("/"!==r.slice(-1)&&(r+="/"),t=this.files[r]),t&&!t.dir)delete this.files[r];else for(var e=this.filter(function(t,e){return e.name.slice(0,r.length)===r}),i=0;i<e.length;i++)delete this.files[e[i].name];return this},generate:function(t){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},generateInternalStream:function(t){var e,r={};try{if((r=u.extend(t||{},{streamFiles:!1,compression:"STORE",compressionOptions:null,type:"",platform:"DOS",comment:null,mimeType:"application/zip",encodeFileName:n.utf8encode})).type=r.type.toLowerCase(),r.compression=r.compression.toUpperCase(),"binarystring"===r.type&&(r.type="string"),!r.type)throw new Error("No output type specified.");u.checkSupport(r.type),"darwin"!==r.platform&&"freebsd"!==r.platform&&"linux"!==r.platform&&"sunos"!==r.platform||(r.platform="UNIX"),"win32"===r.platform&&(r.platform="DOS");var i=r.comment||this.comment||"";e=o.generateWorker(this,r,i)}catch(t){(e=new l("error")).error(t)}return new a(e,r.type||"string",r.mimeType)},generateAsync:function(t,e){return this.generateInternalStream(t).accumulate(e)},generateNodeStream:function(t,e){return(t=t||{}).type||(t.type="nodebuffer"),this.generateInternalStream(t).toNodejsStream(e)}};e.exports=i},{"./compressedObject":2,"./defaults":5,"./generate":9,"./nodejs/NodejsStreamInputAdapter":12,"./nodejsUtils":14,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31,"./utils":32,"./zipObject":35}],16:[function(t,e,r){e.exports=t("stream")},{stream:void 0}],17:[function(t,e,r){"use strict";var i=t("./DataReader");function n(t){i.call(this,t);for(var e=0;e<this.data.length;e++)t[e]=255&t[e]}t("../utils").inherits(n,i),n.prototype.byteAt=function(t){return this.data[this.zero+t]},n.prototype.lastIndexOfSignature=function(t){for(var e=t.charCodeAt(0),r=t.charCodeAt(1),i=t.charCodeAt(2),n=t.charCodeAt(3),s=this.length-4;0<=s;--s)if(this.data[s]===e&&this.data[s+1]===r&&this.data[s+2]===i&&this.data[s+3]===n)return s-this.zero;return-1},n.prototype.readAndCheckSignature=function(t){var e=t.charCodeAt(0),r=t.charCodeAt(1),i=t.charCodeAt(2),n=t.charCodeAt(3),s=this.readData(4);return e===s[0]&&r===s[1]&&i===s[2]&&n===s[3]},n.prototype.readData=function(t){if(this.checkOffset(t),0===t)return[];var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./DataReader":18}],18:[function(t,e,r){"use strict";var i=t("../utils");function n(t){this.data=t,this.length=t.length,this.index=0,this.zero=0}n.prototype={checkOffset:function(t){this.checkIndex(this.index+t)},checkIndex:function(t){if(this.length<this.zero+t||t<0)throw new Error("End of data reached (data length = "+this.length+", asked index = "+t+"). Corrupted zip ?")},setIndex:function(t){this.checkIndex(t),this.index=t},skip:function(t){this.setIndex(this.index+t)},byteAt:function(t){},readInt:function(t){var e,r=0;for(this.checkOffset(t),e=this.index+t-1;e>=this.index;e--)r=(r<<8)+this.byteAt(e);return this.index+=t,r},readString:function(t){return i.transformTo("string",this.readData(t))},readData:function(t){},lastIndexOfSignature:function(t){},readAndCheckSignature:function(t){},readDate:function(){var t=this.readInt(4);return new Date(Date.UTC(1980+(t>>25&127),(t>>21&15)-1,t>>16&31,t>>11&31,t>>5&63,(31&t)<<1))}},e.exports=n},{"../utils":32}],19:[function(t,e,r){"use strict";var i=t("./Uint8ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(t,e,r){"use strict";var i=t("./DataReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.byteAt=function(t){return this.data.charCodeAt(this.zero+t)},n.prototype.lastIndexOfSignature=function(t){return this.data.lastIndexOf(t)-this.zero},n.prototype.readAndCheckSignature=function(t){return t===this.readData(4)},n.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./DataReader":18}],21:[function(t,e,r){"use strict";var i=t("./ArrayReader");function n(t){i.call(this,t)}t("../utils").inherits(n,i),n.prototype.readData=function(t){if(this.checkOffset(t),0===t)return new Uint8Array(0);var e=this.data.subarray(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=n},{"../utils":32,"./ArrayReader":17}],22:[function(t,e,r){"use strict";var i=t("../utils"),n=t("../support"),s=t("./ArrayReader"),a=t("./StringReader"),o=t("./NodeBufferReader"),h=t("./Uint8ArrayReader");e.exports=function(t){var e=i.getTypeOf(t);return i.checkSupport(e),"string"!==e||n.uint8array?"nodebuffer"===e?new o(t):n.uint8array?new h(i.transformTo("uint8array",t)):new s(i.transformTo("array",t)):new a(t)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(t,e,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../utils");function s(t){i.call(this,"ConvertWorker to "+t),this.destType=t}n.inherits(s,i),s.prototype.processChunk=function(t){this.push({data:n.transformTo(this.destType,t.data),meta:t.meta})},e.exports=s},{"../utils":32,"./GenericWorker":28}],25:[function(t,e,r){"use strict";var i=t("./GenericWorker"),n=t("../crc32");function s(){i.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}t("../utils").inherits(s,i),s.prototype.processChunk=function(t){this.streamInfo.crc32=n(t.data,this.streamInfo.crc32||0),this.push(t)},e.exports=s},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataLengthProbe for "+t),this.propName=t,this.withStreamInfo(t,0)}i.inherits(s,n),s.prototype.processChunk=function(t){if(t){var e=this.streamInfo[this.propName]||0;this.streamInfo[this.propName]=e+t.data.length}n.prototype.processChunk.call(this,t)},e.exports=s},{"../utils":32,"./GenericWorker":28}],27:[function(t,e,r){"use strict";var i=t("../utils"),n=t("./GenericWorker");function s(t){n.call(this,"DataWorker");var e=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,t.then(function(t){e.dataIsReady=!0,e.data=t,e.max=t&&t.length||0,e.type=i.getTypeOf(t),e.isPaused||e._tickAndRepeat()},function(t){e.error(t)})}i.inherits(s,n),s.prototype.cleanUp=function(){n.prototype.cleanUp.call(this),this.data=null},s.prototype.resume=function(){return!!n.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,i.delay(this._tickAndRepeat,[],this)),!0)},s.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(i.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},s.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var t=null,e=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,e);break;case"uint8array":t=this.data.subarray(this.index,e);break;case"array":case"nodebuffer":t=this.data.slice(this.index,e)}return this.index=e,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},e.exports=s},{"../utils":32,"./GenericWorker":28}],28:[function(t,e,r){"use strict";function i(t){this.name=t||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}i.prototype={push:function(t){this.emit("data",t)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(t){this.emit("error",t)}return!0},error:function(t){return!this.isFinished&&(this.isPaused?this.generatedError=t:(this.isFinished=!0,this.emit("error",t),this.previous&&this.previous.error(t),this.cleanUp()),!0)},on:function(t,e){return this._listeners[t].push(e),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(t,e){if(this._listeners[t])for(var r=0;r<this._listeners[t].length;r++)this._listeners[t][r].call(this,e)},pipe:function(t){return t.registerPrevious(this)},registerPrevious:function(t){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.streamInfo=t.streamInfo,this.mergeStreamInfo(),this.previous=t;var e=this;return t.on("data",function(t){e.processChunk(t)}),t.on("end",function(){e.end()}),t.on("error",function(t){e.error(t)}),this},pause:function(){return!this.isPaused&&!this.isFinished&&(this.isPaused=!0,this.previous&&this.previous.pause(),!0)},resume:function(){if(!this.isPaused||this.isFinished)return!1;var t=this.isPaused=!1;return this.generatedError&&(this.error(this.generatedError),t=!0),this.previous&&this.previous.resume(),!t},flush:function(){},processChunk:function(t){this.push(t)},withStreamInfo:function(t,e){return this.extraStreamInfo[t]=e,this.mergeStreamInfo(),this},mergeStreamInfo:function(){for(var t in this.extraStreamInfo)this.extraStreamInfo.hasOwnProperty(t)&&(this.streamInfo[t]=this.extraStreamInfo[t])},lock:function(){if(this.isLocked)throw new Error("The stream '"+this+"' has already been used.");this.isLocked=!0,this.previous&&this.previous.lock()},toString:function(){var t="Worker "+this.name;return this.previous?this.previous+" -> "+t:t}},e.exports=i},{}],29:[function(t,e,r){"use strict";var h=t("../utils"),n=t("./ConvertWorker"),s=t("./GenericWorker"),u=t("../base64"),i=t("../support"),a=t("../external"),o=null;if(i.nodestream)try{o=t("../nodejs/NodejsStreamOutputAdapter")}catch(t){}function l(t,o){return new a.Promise(function(e,r){var i=[],n=t._internalType,s=t._outputType,a=t._mimeType;t.on("data",function(t,e){i.push(t),o&&o(e)}).on("error",function(t){i=[],r(t)}).on("end",function(){try{var t=function(t,e,r){switch(t){case"blob":return h.newBlob(h.transformTo("arraybuffer",e),r);case"base64":return u.encode(e);default:return h.transformTo(t,e)}}(s,function(t,e){var r,i=0,n=null,s=0;for(r=0;r<e.length;r++)s+=e[r].length;switch(t){case"string":return e.join("");case"array":return Array.prototype.concat.apply([],e);case"uint8array":for(n=new Uint8Array(s),r=0;r<e.length;r++)n.set(e[r],i),i+=e[r].length;return n;case"nodebuffer":return Buffer.concat(e);default:throw new Error("concat : unsupported type '"+t+"'")}}(n,i),a);e(t)}catch(t){r(t)}i=[]}).resume()})}function f(t,e,r){var i=e;switch(e){case"blob":case"arraybuffer":i="uint8array";break;case"base64":i="string"}try{this._internalType=i,this._outputType=e,this._mimeType=r,h.checkSupport(i),this._worker=t.pipe(new n(i)),t.lock()}catch(t){this._worker=new s("error"),this._worker.error(t)}}f.prototype={accumulate:function(t){return l(this,t)},on:function(t,e){var r=this;return"data"===t?this._worker.on(t,function(t){e.call(r,t.data,t.meta)}):this._worker.on(t,function(){h.delay(e,arguments,r)}),this},resume:function(){return h.delay(this._worker.resume,[],this._worker),this},pause:function(){return this._worker.pause(),this},toNodejsStream:function(t){if(h.checkSupport("nodestream"),"nodebuffer"!==this._outputType)throw new Error(this._outputType+" is not supported by this method");return new o(this,{objectMode:"nodebuffer"!==this._outputType},t)}},e.exports=f},{"../base64":1,"../external":6,"../nodejs/NodejsStreamOutputAdapter":13,"../support":30,"../utils":32,"./ConvertWorker":24,"./GenericWorker":28}],30:[function(t,e,r){"use strict";if(r.base64=!0,r.array=!0,r.string=!0,r.arraybuffer="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof Uint8Array,r.nodebuffer="undefined"!=typeof Buffer,r.uint8array="undefined"!=typeof Uint8Array,"undefined"==typeof ArrayBuffer)r.blob=!1;else{var i=new ArrayBuffer(0);try{r.blob=0===new Blob([i],{type:"application/zip"}).size}catch(t){try{var n=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);n.append(i),r.blob=0===n.getBlob("application/zip").size}catch(t){r.blob=!1}}}try{r.nodestream=!!t("readable-stream").Readable}catch(t){r.nodestream=!1}},{"readable-stream":16}],31:[function(t,e,s){"use strict";for(var o=t("./utils"),h=t("./support"),r=t("./nodejsUtils"),i=t("./stream/GenericWorker"),u=new Array(256),n=0;n<256;n++)u[n]=252<=n?6:248<=n?5:240<=n?4:224<=n?3:192<=n?2:1;u[254]=u[254]=1;function a(){i.call(this,"utf-8 decode"),this.leftOver=null}function l(){i.call(this,"utf-8 encode")}s.utf8encode=function(t){return h.nodebuffer?r.newBufferFrom(t,"utf-8"):function(t){var e,r,i,n,s,a=t.length,o=0;for(n=0;n<a;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),o+=r<128?1:r<2048?2:r<65536?3:4;for(e=h.uint8array?new Uint8Array(o):new Array(o),n=s=0;s<o;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),r<128?e[s++]=r:(r<2048?e[s++]=192|r>>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e}(t)},s.utf8decode=function(t){return h.nodebuffer?o.transformTo("nodebuffer",t).toString("utf-8"):function(t){var e,r,i,n,s=t.length,a=new Array(2*s);for(e=r=0;e<s;)if((i=t[e++])<128)a[r++]=i;else if(4<(n=u[i]))a[r++]=65533,e+=n-1;else{for(i&=2===n?31:3===n?15:7;1<n&&e<s;)i=i<<6|63&t[e++],n--;1<n?a[r++]=65533:i<65536?a[r++]=i:(i-=65536,a[r++]=55296|i>>10&1023,a[r++]=56320|1023&i)}return a.length!==r&&(a.subarray?a=a.subarray(0,r):a.length=r),o.applyFromCharCode(a)}(t=o.transformTo(h.uint8array?"uint8array":"array",t))},o.inherits(a,i),a.prototype.processChunk=function(t){var e=o.transformTo(h.uint8array?"uint8array":"array",t.data);if(this.leftOver&&this.leftOver.length){if(h.uint8array){var r=e;(e=new Uint8Array(r.length+this.leftOver.length)).set(this.leftOver,0),e.set(r,this.leftOver.length)}else e=this.leftOver.concat(e);this.leftOver=null}var i=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}(e),n=e;i!==e.length&&(h.uint8array?(n=e.subarray(0,i),this.leftOver=e.subarray(i,e.length)):(n=e.slice(0,i),this.leftOver=e.slice(i,e.length))),this.push({data:s.utf8decode(n),meta:t.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:s.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},s.Utf8DecodeWorker=a,o.inherits(l,i),l.prototype.processChunk=function(t){this.push({data:s.utf8encode(t.data),meta:t.meta})},s.Utf8EncodeWorker=l},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(t,e,a){"use strict";var o=t("./support"),h=t("./base64"),r=t("./nodejsUtils"),i=t("set-immediate-shim"),u=t("./external");function n(t){return t}function l(t,e){for(var r=0;r<t.length;++r)e[r]=255&t.charCodeAt(r);return e}a.newBlob=function(e,r){a.checkSupport("blob");try{return new Blob([e],{type:r})}catch(t){try{var i=new(self.BlobBuilder||self.WebKitBlobBuilder||self.MozBlobBuilder||self.MSBlobBuilder);return i.append(e),i.getBlob(r)}catch(t){throw new Error("Bug : can't construct the Blob.")}}};var s={stringifyByChunk:function(t,e,r){var i=[],n=0,s=t.length;if(s<=r)return String.fromCharCode.apply(null,t);for(;n<s;)"array"===e||"nodebuffer"===e?i.push(String.fromCharCode.apply(null,t.slice(n,Math.min(n+r,s)))):i.push(String.fromCharCode.apply(null,t.subarray(n,Math.min(n+r,s)))),n+=r;return i.join("")},stringifyByChar:function(t){for(var e="",r=0;r<t.length;r++)e+=String.fromCharCode(t[r]);return e},applyCanBeUsed:{uint8array:function(){try{return o.uint8array&&1===String.fromCharCode.apply(null,new Uint8Array(1)).length}catch(t){return!1}}(),nodebuffer:function(){try{return o.nodebuffer&&1===String.fromCharCode.apply(null,r.allocBuffer(1)).length}catch(t){return!1}}()}};function f(t){var e=65536,r=a.getTypeOf(t),i=!0;if("uint8array"===r?i=s.applyCanBeUsed.uint8array:"nodebuffer"===r&&(i=s.applyCanBeUsed.nodebuffer),i)for(;1<e;)try{return s.stringifyByChunk(t,r,e)}catch(t){e=Math.floor(e/2)}return s.stringifyByChar(t)}function d(t,e){for(var r=0;r<t.length;r++)e[r]=t[r];return e}a.applyFromCharCode=f;var c={};c.string={string:n,array:function(t){return l(t,new Array(t.length))},arraybuffer:function(t){return c.string.uint8array(t).buffer},uint8array:function(t){return l(t,new Uint8Array(t.length))},nodebuffer:function(t){return l(t,r.allocBuffer(t.length))}},c.array={string:f,array:n,arraybuffer:function(t){return new Uint8Array(t).buffer},uint8array:function(t){return new Uint8Array(t)},nodebuffer:function(t){return r.newBufferFrom(t)}},c.arraybuffer={string:function(t){return f(new Uint8Array(t))},array:function(t){return d(new Uint8Array(t),new Array(t.byteLength))},arraybuffer:n,uint8array:function(t){return new Uint8Array(t)},nodebuffer:function(t){return r.newBufferFrom(new Uint8Array(t))}},c.uint8array={string:f,array:function(t){return d(t,new Array(t.length))},arraybuffer:function(t){return t.buffer},uint8array:n,nodebuffer:function(t){return r.newBufferFrom(t)}},c.nodebuffer={string:f,array:function(t){return d(t,new Array(t.length))},arraybuffer:function(t){return c.nodebuffer.uint8array(t).buffer},uint8array:function(t){return d(t,new Uint8Array(t.length))},nodebuffer:n},a.transformTo=function(t,e){if(e=e||"",!t)return e;a.checkSupport(t);var r=a.getTypeOf(e);return c[r][t](e)},a.getTypeOf=function(t){return"string"==typeof t?"string":"[object Array]"===Object.prototype.toString.call(t)?"array":o.nodebuffer&&r.isBuffer(t)?"nodebuffer":o.uint8array&&t instanceof Uint8Array?"uint8array":o.arraybuffer&&t instanceof ArrayBuffer?"arraybuffer":void 0},a.checkSupport=function(t){if(!o[t.toLowerCase()])throw new Error(t+" is not supported by this platform")},a.MAX_VALUE_16BITS=65535,a.MAX_VALUE_32BITS=-1,a.pretty=function(t){var e,r,i="";for(r=0;r<(t||"").length;r++)i+="\\x"+((e=t.charCodeAt(r))<16?"0":"")+e.toString(16).toUpperCase();return i},a.delay=function(t,e,r){i(function(){t.apply(r||null,e||[])})},a.inherits=function(t,e){function r(){}r.prototype=e.prototype,t.prototype=new r},a.extend=function(){var t,e,r={};for(t=0;t<arguments.length;t++)for(e in arguments[t])arguments[t].hasOwnProperty(e)&&void 0===r[e]&&(r[e]=arguments[t][e]);return r},a.prepareContent=function(r,t,i,n,s){return u.Promise.resolve(t).then(function(i){return o.blob&&(i instanceof Blob||-1!==["[object File]","[object Blob]"].indexOf(Object.prototype.toString.call(i)))&&"undefined"!=typeof FileReader?new u.Promise(function(e,r){var t=new FileReader;t.onload=function(t){e(t.target.result)},t.onerror=function(t){r(t.target.error)},t.readAsArrayBuffer(i)}):i}).then(function(t){var e=a.getTypeOf(t);return e?("arraybuffer"===e?t=a.transformTo("uint8array",t):"string"===e&&(s?t=h.decode(t):i&&!0!==n&&(t=function(t){return l(t,o.uint8array?new Uint8Array(t.length):new Array(t.length))}(t))),t):u.Promise.reject(new Error("Can't read the data of '"+r+"'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?"))})}},{"./base64":1,"./external":6,"./nodejsUtils":14,"./support":30,"set-immediate-shim":54}],33:[function(t,e,r){"use strict";var i=t("./reader/readerFor"),n=t("./utils"),s=t("./signature"),a=t("./zipEntry"),o=(t("./utf8"),t("./support"));function h(t){this.files=[],this.loadOptions=t}h.prototype={checkSignature:function(t){if(!this.reader.readAndCheckSignature(t)){this.reader.index-=4;var e=this.reader.readString(4);throw new Error("Corrupted zip or bug: unexpected signature ("+n.pretty(e)+", expected "+n.pretty(t)+")")}},isSignature:function(t,e){var r=this.reader.index;this.reader.setIndex(t);var i=this.reader.readString(4)===e;return this.reader.setIndex(r),i},readBlockEndOfCentral:function(){this.diskNumber=this.reader.readInt(2),this.diskWithCentralDirStart=this.reader.readInt(2),this.centralDirRecordsOnThisDisk=this.reader.readInt(2),this.centralDirRecords=this.reader.readInt(2),this.centralDirSize=this.reader.readInt(4),this.centralDirOffset=this.reader.readInt(4),this.zipCommentLength=this.reader.readInt(2);var t=this.reader.readData(this.zipCommentLength),e=o.uint8array?"uint8array":"array",r=n.transformTo(e,t);this.zipComment=this.loadOptions.decodeFileName(r)},readBlockZip64EndOfCentral:function(){this.zip64EndOfCentralSize=this.reader.readInt(8),this.reader.skip(4),this.diskNumber=this.reader.readInt(4),this.diskWithCentralDirStart=this.reader.readInt(4),this.centralDirRecordsOnThisDisk=this.reader.readInt(8),this.centralDirRecords=this.reader.readInt(8),this.centralDirSize=this.reader.readInt(8),this.centralDirOffset=this.reader.readInt(8),this.zip64ExtensibleData={};for(var t,e,r,i=this.zip64EndOfCentralSize-44;0<i;)t=this.reader.readInt(2),e=this.reader.readInt(4),r=this.reader.readData(e),this.zip64ExtensibleData[t]={id:t,length:e,value:r}},readBlockZip64EndOfCentralLocator:function(){if(this.diskWithZip64CentralDirStart=this.reader.readInt(4),this.relativeOffsetEndOfZip64CentralDir=this.reader.readInt(8),this.disksCount=this.reader.readInt(4),1<this.disksCount)throw new Error("Multi-volumes zip are not supported")},readLocalFiles:function(){var t,e;for(t=0;t<this.files.length;t++)e=this.files[t],this.reader.setIndex(e.localHeaderOffset),this.checkSignature(s.LOCAL_FILE_HEADER),e.readLocalPart(this.reader),e.handleUTF8(),e.processAttributes()},readCentralDir:function(){var t;for(this.reader.setIndex(this.centralDirOffset);this.reader.readAndCheckSignature(s.CENTRAL_FILE_HEADER);)(t=new a({zip64:this.zip64},this.loadOptions)).readCentralPart(this.reader),this.files.push(t);if(this.centralDirRecords!==this.files.length&&0!==this.centralDirRecords&&0===this.files.length)throw new Error("Corrupted zip or bug: expected "+this.centralDirRecords+" records in central dir, got "+this.files.length)},readEndOfCentral:function(){var t=this.reader.lastIndexOfSignature(s.CENTRAL_DIRECTORY_END);if(t<0)throw!this.isSignature(0,s.LOCAL_FILE_HEADER)?new Error("Can't find end of central directory : is this a zip file ? If it is, see https://stuk.github.io/jszip/documentation/howto/read_zip.html"):new Error("Corrupted zip: can't find end of central directory");this.reader.setIndex(t);var e=t;if(this.checkSignature(s.CENTRAL_DIRECTORY_END),this.readBlockEndOfCentral(),this.diskNumber===n.MAX_VALUE_16BITS||this.diskWithCentralDirStart===n.MAX_VALUE_16BITS||this.centralDirRecordsOnThisDisk===n.MAX_VALUE_16BITS||this.centralDirRecords===n.MAX_VALUE_16BITS||this.centralDirSize===n.MAX_VALUE_32BITS||this.centralDirOffset===n.MAX_VALUE_32BITS){if(this.zip64=!0,(t=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR))<0)throw new Error("Corrupted zip: can't find the ZIP64 end of central directory locator");if(this.reader.setIndex(t),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_LOCATOR),this.readBlockZip64EndOfCentralLocator(),!this.isSignature(this.relativeOffsetEndOfZip64CentralDir,s.ZIP64_CENTRAL_DIRECTORY_END)&&(this.relativeOffsetEndOfZip64CentralDir=this.reader.lastIndexOfSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.relativeOffsetEndOfZip64CentralDir<0))throw new Error("Corrupted zip: can't find the ZIP64 end of central directory");this.reader.setIndex(this.relativeOffsetEndOfZip64CentralDir),this.checkSignature(s.ZIP64_CENTRAL_DIRECTORY_END),this.readBlockZip64EndOfCentral()}var r=this.centralDirOffset+this.centralDirSize;this.zip64&&(r+=20,r+=12+this.zip64EndOfCentralSize);var i=e-r;if(0<i)this.isSignature(e,s.CENTRAL_FILE_HEADER)||(this.reader.zero=i);else if(i<0)throw new Error("Corrupted zip: missing "+Math.abs(i)+" bytes.")},prepareReader:function(t){this.reader=i(t)},load:function(t){this.prepareReader(t),this.readEndOfCentral(),this.readCentralDir(),this.readLocalFiles()}},e.exports=h},{"./reader/readerFor":22,"./signature":23,"./support":30,"./utf8":31,"./utils":32,"./zipEntry":34}],34:[function(t,e,r){"use strict";var i=t("./reader/readerFor"),s=t("./utils"),n=t("./compressedObject"),a=t("./crc32"),o=t("./utf8"),h=t("./compressions"),u=t("./support");function l(t,e){this.options=t,this.loadOptions=e}l.prototype={isEncrypted:function(){return 1==(1&this.bitFlag)},useUTF8:function(){return 2048==(2048&this.bitFlag)},readLocalPart:function(t){var e,r;if(t.skip(22),this.fileNameLength=t.readInt(2),r=t.readInt(2),this.fileName=t.readData(this.fileNameLength),t.skip(r),-1===this.compressedSize||-1===this.uncompressedSize)throw new Error("Bug or corrupted zip : didn't get enough information from the central directory (compressedSize === -1 || uncompressedSize === -1)");if(null===(e=function(t){for(var e in h)if(h.hasOwnProperty(e)&&h[e].magic===t)return h[e];return null}(this.compressionMethod)))throw new Error("Corrupted zip : compression "+s.pretty(this.compressionMethod)+" unknown (inner file : "+s.transformTo("string",this.fileName)+")");this.decompressed=new n(this.compressedSize,this.uncompressedSize,this.crc32,e,t.readData(this.compressedSize))},readCentralPart:function(t){this.versionMadeBy=t.readInt(2),t.skip(2),this.bitFlag=t.readInt(2),this.compressionMethod=t.readString(2),this.date=t.readDate(),this.crc32=t.readInt(4),this.compressedSize=t.readInt(4),this.uncompressedSize=t.readInt(4);var e=t.readInt(2);if(this.extraFieldsLength=t.readInt(2),this.fileCommentLength=t.readInt(2),this.diskNumberStart=t.readInt(2),this.internalFileAttributes=t.readInt(2),this.externalFileAttributes=t.readInt(4),this.localHeaderOffset=t.readInt(4),this.isEncrypted())throw new Error("Encrypted zip are not supported");t.skip(e),this.readExtraFields(t),this.parseZIP64ExtraField(t),this.fileComment=t.readData(this.fileCommentLength)},processAttributes:function(){this.unixPermissions=null,this.dosPermissions=null;var t=this.versionMadeBy>>8;this.dir=!!(16&this.externalFileAttributes),0==t&&(this.dosPermissions=63&this.externalFileAttributes),3==t&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(t){if(this.extraFields[1]){var e=i(this.extraFields[1].value);this.uncompressedSize===s.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===s.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===s.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===s.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4))}},readExtraFields:function(t){var e,r,i,n=t.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});t.index+4<n;)e=t.readInt(2),r=t.readInt(2),i=t.readData(r),this.extraFields[e]={id:e,length:r,value:i};t.setIndex(n)},handleUTF8:function(){var t=u.uint8array?"uint8array":"array";if(this.useUTF8())this.fileNameStr=o.utf8decode(this.fileName),this.fileCommentStr=o.utf8decode(this.fileComment);else{var e=this.findExtraFieldUnicodePath();if(null!==e)this.fileNameStr=e;else{var r=s.transformTo(t,this.fileName);this.fileNameStr=this.loadOptions.decodeFileName(r)}var i=this.findExtraFieldUnicodeComment();if(null!==i)this.fileCommentStr=i;else{var n=s.transformTo(t,this.fileComment);this.fileCommentStr=this.loadOptions.decodeFileName(n)}}},findExtraFieldUnicodePath:function(){var t=this.extraFields[28789];if(t){var e=i(t.value);return 1!==e.readInt(1)?null:a(this.fileName)!==e.readInt(4)?null:o.utf8decode(e.readData(t.length-5))}return null},findExtraFieldUnicodeComment:function(){var t=this.extraFields[25461];if(t){var e=i(t.value);return 1!==e.readInt(1)?null:a(this.fileComment)!==e.readInt(4)?null:o.utf8decode(e.readData(t.length-5))}return null}},e.exports=l},{"./compressedObject":2,"./compressions":3,"./crc32":4,"./reader/readerFor":22,"./support":30,"./utf8":31,"./utils":32}],35:[function(t,e,r){"use strict";function i(t,e,r){this.name=t,this.dir=r.dir,this.date=r.date,this.comment=r.comment,this.unixPermissions=r.unixPermissions,this.dosPermissions=r.dosPermissions,this._data=e,this._dataBinary=r.binary,this.options={compression:r.compression,compressionOptions:r.compressionOptions}}var s=t("./stream/StreamHelper"),n=t("./stream/DataWorker"),a=t("./utf8"),o=t("./compressedObject"),h=t("./stream/GenericWorker");i.prototype={internalStream:function(t){var e=null,r="string";try{if(!t)throw new Error("No output type specified.");var i="string"===(r=t.toLowerCase())||"text"===r;"binarystring"!==r&&"text"!==r||(r="string"),e=this._decompressWorker();var n=!this._dataBinary;n&&!i&&(e=e.pipe(new a.Utf8EncodeWorker)),!n&&i&&(e=e.pipe(new a.Utf8DecodeWorker))}catch(t){(e=new h("error")).error(t)}return new s(e,r,"")},async:function(t,e){return this.internalStream(t).accumulate(e)},nodeStream:function(t,e){return this.internalStream(t||"nodebuffer").toNodejsStream(e)},_compressWorker:function(t,e){if(this._data instanceof o&&this._data.compression.magic===t.magic)return this._data.getCompressedWorker();var r=this._decompressWorker();return this._dataBinary||(r=r.pipe(new a.Utf8EncodeWorker)),o.createWorkerFrom(r,t,e)},_decompressWorker:function(){return this._data instanceof o?this._data.getContentWorker():this._data instanceof h?this._data:new n(this._data)}};for(var u=["asText","asBinary","asNodeBuffer","asUint8Array","asArrayBuffer"],l=function(){throw new Error("This method has been removed in JSZip 3.0, please check the upgrade guide.")},f=0;f<u.length;f++)i.prototype[u[f]]=l;e.exports=i},{"./compressedObject":2,"./stream/DataWorker":27,"./stream/GenericWorker":28,"./stream/StreamHelper":29,"./utf8":31}],36:[function(t,l,e){(function(e){"use strict";var r,i,t=e.MutationObserver||e.WebKitMutationObserver;if(t){var n=0,s=new t(u),a=e.document.createTextNode("");s.observe(a,{characterData:!0}),r=function(){a.data=n=++n%2}}else if(e.setImmediate||void 0===e.MessageChannel)r="document"in e&&"onreadystatechange"in e.document.createElement("script")?function(){var t=e.document.createElement("script");t.onreadystatechange=function(){u(),t.onreadystatechange=null,t.parentNode.removeChild(t),t=null},e.document.documentElement.appendChild(t)}:function(){setTimeout(u,0)};else{var o=new e.MessageChannel;o.port1.onmessage=u,r=function(){o.port2.postMessage(0)}}var h=[];function u(){var t,e;i=!0;for(var r=h.length;r;){for(e=h,h=[],t=-1;++t<r;)e[t]();r=h.length}i=!1}l.exports=function(t){1!==h.push(t)||i||r()}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],37:[function(t,e,r){"use strict";var n=t("immediate");function u(){}var l={},s=["REJECTED"],a=["FULFILLED"],i=["PENDING"];function o(t){if("function"!=typeof t)throw new TypeError("resolver must be a function");this.state=i,this.queue=[],this.outcome=void 0,t!==u&&c(this,t)}function h(t,e,r){this.promise=t,"function"==typeof e&&(this.onFulfilled=e,this.callFulfilled=this.otherCallFulfilled),"function"==typeof r&&(this.onRejected=r,this.callRejected=this.otherCallRejected)}function f(e,r,i){n(function(){var t;try{t=r(i)}catch(t){return l.reject(e,t)}t===e?l.reject(e,new TypeError("Cannot resolve promise with itself")):l.resolve(e,t)})}function d(t){var e=t&&t.then;if(t&&("object"==typeof t||"function"==typeof t)&&"function"==typeof e)return function(){e.apply(t,arguments)}}function c(e,t){var r=!1;function i(t){r||(r=!0,l.reject(e,t))}function n(t){r||(r=!0,l.resolve(e,t))}var s=p(function(){t(n,i)});"error"===s.status&&i(s.value)}function p(t,e){var r={};try{r.value=t(e),r.status="success"}catch(t){r.status="error",r.value=t}return r}(e.exports=o).prototype.finally=function(e){if("function"!=typeof e)return this;var r=this.constructor;return this.then(function(t){return r.resolve(e()).then(function(){return t})},function(t){return r.resolve(e()).then(function(){throw t})})},o.prototype.catch=function(t){return this.then(null,t)},o.prototype.then=function(t,e){if("function"!=typeof t&&this.state===a||"function"!=typeof e&&this.state===s)return this;var r=new this.constructor(u);this.state!==i?f(r,this.state===a?t:e,this.outcome):this.queue.push(new h(r,t,e));return r},h.prototype.callFulfilled=function(t){l.resolve(this.promise,t)},h.prototype.otherCallFulfilled=function(t){f(this.promise,this.onFulfilled,t)},h.prototype.callRejected=function(t){l.reject(this.promise,t)},h.prototype.otherCallRejected=function(t){f(this.promise,this.onRejected,t)},l.resolve=function(t,e){var r=p(d,e);if("error"===r.status)return l.reject(t,r.value);var i=r.value;if(i)c(t,i);else{t.state=a,t.outcome=e;for(var n=-1,s=t.queue.length;++n<s;)t.queue[n].callFulfilled(e)}return t},l.reject=function(t,e){t.state=s,t.outcome=e;for(var r=-1,i=t.queue.length;++r<i;)t.queue[r].callRejected(e);return t},o.resolve=function(t){if(t instanceof this)return t;return l.resolve(new this(u),t)},o.reject=function(t){var e=new this(u);return l.reject(e,t)},o.all=function(t){var r=this;if("[object Array]"!==Object.prototype.toString.call(t))return this.reject(new TypeError("must be an array"));var i=t.length,n=!1;if(!i)return this.resolve([]);var s=new Array(i),a=0,e=-1,o=new this(u);for(;++e<i;)h(t[e],e);return o;function h(t,e){r.resolve(t).then(function(t){s[e]=t,++a!==i||n||(n=!0,l.resolve(o,s))},function(t){n||(n=!0,l.reject(o,t))})}},o.race=function(t){var e=this;if("[object Array]"!==Object.prototype.toString.call(t))return this.reject(new TypeError("must be an array"));var r=t.length,i=!1;if(!r)return this.resolve([]);var n=-1,s=new this(u);for(;++n<r;)a=t[n],e.resolve(a).then(function(t){i||(i=!0,l.resolve(s,t))},function(t){i||(i=!0,l.reject(s,t))});var a;return s}},{immediate:36}],38:[function(t,e,r){"use strict";var i={};(0,t("./lib/utils/common").assign)(i,t("./lib/deflate"),t("./lib/inflate"),t("./lib/zlib/constants")),e.exports=i},{"./lib/deflate":39,"./lib/inflate":40,"./lib/utils/common":41,"./lib/zlib/constants":44}],39:[function(t,e,r){"use strict";var a=t("./zlib/deflate"),o=t("./utils/common"),h=t("./utils/strings"),n=t("./zlib/messages"),s=t("./zlib/zstream"),u=Object.prototype.toString,l=0,f=-1,d=0,c=8;function p(t){if(!(this instanceof p))return new p(t);this.options=o.assign({level:f,method:c,chunkSize:16384,windowBits:15,memLevel:8,strategy:d,to:""},t||{});var e=this.options;e.raw&&0<e.windowBits?e.windowBits=-e.windowBits:e.gzip&&0<e.windowBits&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new s,this.strm.avail_out=0;var r=a.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(r!==l)throw new Error(n[r]);if(e.header&&a.deflateSetHeader(this.strm,e.header),e.dictionary){var i;if(i="string"==typeof e.dictionary?h.string2buf(e.dictionary):"[object ArrayBuffer]"===u.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,(r=a.deflateSetDictionary(this.strm,i))!==l)throw new Error(n[r]);this._dict_set=!0}}function i(t,e){var r=new p(e);if(r.push(t,!0),r.err)throw r.msg||n[r.err];return r.result}p.prototype.push=function(t,e){var r,i,n=this.strm,s=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:!0===e?4:0,"string"==typeof t?n.input=h.string2buf(t):"[object ArrayBuffer]"===u.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new o.Buf8(s),n.next_out=0,n.avail_out=s),1!==(r=a.deflate(n,i))&&r!==l)return this.onEnd(r),!(this.ended=!0);0!==n.avail_out&&(0!==n.avail_in||4!==i&&2!==i)||("string"===this.options.to?this.onData(h.buf2binstring(o.shrinkBuf(n.output,n.next_out))):this.onData(o.shrinkBuf(n.output,n.next_out)))}while((0<n.avail_in||0===n.avail_out)&&1!==r);return 4===i?(r=a.deflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===l):2!==i||(this.onEnd(l),!(n.avail_out=0))},p.prototype.onData=function(t){this.chunks.push(t)},p.prototype.onEnd=function(t){t===l&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},r.Deflate=p,r.deflate=i,r.deflateRaw=function(t,e){return(e=e||{}).raw=!0,i(t,e)},r.gzip=function(t,e){return(e=e||{}).gzip=!0,i(t,e)}},{"./utils/common":41,"./utils/strings":42,"./zlib/deflate":46,"./zlib/messages":51,"./zlib/zstream":53}],40:[function(t,e,r){"use strict";var d=t("./zlib/inflate"),c=t("./utils/common"),p=t("./utils/strings"),m=t("./zlib/constants"),i=t("./zlib/messages"),n=t("./zlib/zstream"),s=t("./zlib/gzheader"),_=Object.prototype.toString;function a(t){if(!(this instanceof a))return new a(t);this.options=c.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&0<=e.windowBits&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(0<=e.windowBits&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),15<e.windowBits&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new n,this.strm.avail_out=0;var r=d.inflateInit2(this.strm,e.windowBits);if(r!==m.Z_OK)throw new Error(i[r]);this.header=new s,d.inflateGetHeader(this.strm,this.header)}function o(t,e){var r=new a(e);if(r.push(t,!0),r.err)throw r.msg||i[r.err];return r.result}a.prototype.push=function(t,e){var r,i,n,s,a,o,h=this.strm,u=this.options.chunkSize,l=this.options.dictionary,f=!1;if(this.ended)return!1;i=e===~~e?e:!0===e?m.Z_FINISH:m.Z_NO_FLUSH,"string"==typeof t?h.input=p.binstring2buf(t):"[object ArrayBuffer]"===_.call(t)?h.input=new Uint8Array(t):h.input=t,h.next_in=0,h.avail_in=h.input.length;do{if(0===h.avail_out&&(h.output=new c.Buf8(u),h.next_out=0,h.avail_out=u),(r=d.inflate(h,m.Z_NO_FLUSH))===m.Z_NEED_DICT&&l&&(o="string"==typeof l?p.string2buf(l):"[object ArrayBuffer]"===_.call(l)?new Uint8Array(l):l,r=d.inflateSetDictionary(this.strm,o)),r===m.Z_BUF_ERROR&&!0===f&&(r=m.Z_OK,f=!1),r!==m.Z_STREAM_END&&r!==m.Z_OK)return this.onEnd(r),!(this.ended=!0);h.next_out&&(0!==h.avail_out&&r!==m.Z_STREAM_END&&(0!==h.avail_in||i!==m.Z_FINISH&&i!==m.Z_SYNC_FLUSH)||("string"===this.options.to?(n=p.utf8border(h.output,h.next_out),s=h.next_out-n,a=p.buf2string(h.output,n),h.next_out=s,h.avail_out=u-s,s&&c.arraySet(h.output,h.output,n,s,0),this.onData(a)):this.onData(c.shrinkBuf(h.output,h.next_out)))),0===h.avail_in&&0===h.avail_out&&(f=!0)}while((0<h.avail_in||0===h.avail_out)&&r!==m.Z_STREAM_END);return r===m.Z_STREAM_END&&(i=m.Z_FINISH),i===m.Z_FINISH?(r=d.inflateEnd(this.strm),this.onEnd(r),this.ended=!0,r===m.Z_OK):i!==m.Z_SYNC_FLUSH||(this.onEnd(m.Z_OK),!(h.avail_out=0))},a.prototype.onData=function(t){this.chunks.push(t)},a.prototype.onEnd=function(t){t===m.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=c.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},r.Inflate=a,r.inflate=o,r.inflateRaw=function(t,e){return(e=e||{}).raw=!0,o(t,e)},r.ungzip=o},{"./utils/common":41,"./utils/strings":42,"./zlib/constants":44,"./zlib/gzheader":47,"./zlib/inflate":49,"./zlib/messages":51,"./zlib/zstream":53}],41:[function(t,e,r){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;r.assign=function(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var r=e.shift();if(r){if("object"!=typeof r)throw new TypeError(r+"must be non-object");for(var i in r)r.hasOwnProperty(i)&&(t[i]=r[i])}}return t},r.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,r,i,n){if(e.subarray&&t.subarray)t.set(e.subarray(r,r+i),n);else for(var s=0;s<i;s++)t[n+s]=e[r+s]},flattenChunks:function(t){var e,r,i,n,s,a;for(e=i=0,r=t.length;e<r;e++)i+=t[e].length;for(a=new Uint8Array(i),e=n=0,r=t.length;e<r;e++)s=t[e],a.set(s,n),n+=s.length;return a}},s={arraySet:function(t,e,r,i,n){for(var s=0;s<i;s++)t[n+s]=e[r+s]},flattenChunks:function(t){return[].concat.apply([],t)}};r.setTyped=function(t){t?(r.Buf8=Uint8Array,r.Buf16=Uint16Array,r.Buf32=Int32Array,r.assign(r,n)):(r.Buf8=Array,r.Buf16=Array,r.Buf32=Array,r.assign(r,s))},r.setTyped(i)},{}],42:[function(t,e,r){"use strict";var h=t("./common"),n=!0,s=!0;try{String.fromCharCode.apply(null,[0])}catch(t){n=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){s=!1}for(var u=new h.Buf8(256),i=0;i<256;i++)u[i]=252<=i?6:248<=i?5:240<=i?4:224<=i?3:192<=i?2:1;function l(t,e){if(e<65537&&(t.subarray&&s||!t.subarray&&n))return String.fromCharCode.apply(null,h.shrinkBuf(t,e));for(var r="",i=0;i<e;i++)r+=String.fromCharCode(t[i]);return r}u[254]=u[254]=1,r.string2buf=function(t){var e,r,i,n,s,a=t.length,o=0;for(n=0;n<a;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),o+=r<128?1:r<2048?2:r<65536?3:4;for(e=new h.Buf8(o),n=s=0;s<o;n++)55296==(64512&(r=t.charCodeAt(n)))&&n+1<a&&56320==(64512&(i=t.charCodeAt(n+1)))&&(r=65536+(r-55296<<10)+(i-56320),n++),r<128?e[s++]=r:(r<2048?e[s++]=192|r>>>6:(r<65536?e[s++]=224|r>>>12:(e[s++]=240|r>>>18,e[s++]=128|r>>>12&63),e[s++]=128|r>>>6&63),e[s++]=128|63&r);return e},r.buf2binstring=function(t){return l(t,t.length)},r.binstring2buf=function(t){for(var e=new h.Buf8(t.length),r=0,i=e.length;r<i;r++)e[r]=t.charCodeAt(r);return e},r.buf2string=function(t,e){var r,i,n,s,a=e||t.length,o=new Array(2*a);for(r=i=0;r<a;)if((n=t[r++])<128)o[i++]=n;else if(4<(s=u[n]))o[i++]=65533,r+=s-1;else{for(n&=2===s?31:3===s?15:7;1<s&&r<a;)n=n<<6|63&t[r++],s--;1<s?o[i++]=65533:n<65536?o[i++]=n:(n-=65536,o[i++]=55296|n>>10&1023,o[i++]=56320|1023&n)}return l(o,i)},r.utf8border=function(t,e){var r;for((e=e||t.length)>t.length&&(e=t.length),r=e-1;0<=r&&128==(192&t[r]);)r--;return r<0?e:0===r?e:r+u[t[r]]>e?r:e}},{"./common":41}],43:[function(t,e,r){"use strict";e.exports=function(t,e,r,i){for(var n=65535&t|0,s=t>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3<r?2e3:r;s=s+(n=n+e[i++]|0)|0,--a;);n%=65521,s%=65521}return n|s<<16|0}},{}],44:[function(t,e,r){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],45:[function(t,e,r){"use strict";var o=function(){for(var t,e=[],r=0;r<256;r++){t=r;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[r]=t}return e}();e.exports=function(t,e,r,i){var n=o,s=i+r;t^=-1;for(var a=i;a<s;a++)t=t>>>8^n[255&(t^e[a])];return-1^t}},{}],46:[function(t,e,r){"use strict";var h,d=t("../utils/common"),u=t("./trees"),c=t("./adler32"),p=t("./crc32"),i=t("./messages"),l=0,f=4,m=0,_=-2,g=-1,b=4,n=2,v=8,y=9,s=286,a=30,o=19,w=2*s+1,k=15,x=3,S=258,z=S+x+1,C=42,E=113,A=1,I=2,O=3,B=4;function R(t,e){return t.msg=i[e],e}function T(t){return(t<<1)-(4<t?9:0)}function D(t){for(var e=t.length;0<=--e;)t[e]=0}function F(t){var e=t.state,r=e.pending;r>t.avail_out&&(r=t.avail_out),0!==r&&(d.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,0===e.pending&&(e.pending_out=0))}function N(t,e){u._tr_flush_block(t,0<=t.block_start?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,F(t.strm)}function U(t,e){t.pending_buf[t.pending++]=e}function P(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function L(t,e){var r,i,n=t.max_chain_length,s=t.strstart,a=t.prev_length,o=t.nice_match,h=t.strstart>t.w_size-z?t.strstart-(t.w_size-z):0,u=t.window,l=t.w_mask,f=t.prev,d=t.strstart+S,c=u[s+a-1],p=u[s+a];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(u[(r=e)+a]===p&&u[r+a-1]===c&&u[r]===u[s]&&u[++r]===u[s+1]){s+=2,r++;do{}while(u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&u[++s]===u[++r]&&s<d);if(i=S-(d-s),s=d-S,a<i){if(t.match_start=e,o<=(a=i))break;c=u[s+a-1],p=u[s+a]}}}while((e=f[e&l])>h&&0!=--n);return a<=t.lookahead?a:t.lookahead}function j(t){var e,r,i,n,s,a,o,h,u,l,f=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=f+(f-z)){for(d.arraySet(t.window,t.window,f,f,0),t.match_start-=f,t.strstart-=f,t.block_start-=f,e=r=t.hash_size;i=t.head[--e],t.head[e]=f<=i?i-f:0,--r;);for(e=r=f;i=t.prev[--e],t.prev[e]=f<=i?i-f:0,--r;);n+=f}if(0===t.strm.avail_in)break;if(a=t.strm,o=t.window,h=t.strstart+t.lookahead,u=n,l=void 0,l=a.avail_in,u<l&&(l=u),r=0===l?0:(a.avail_in-=l,d.arraySet(o,a.input,a.next_in,l,h),1===a.state.wrap?a.adler=c(a.adler,o,l,h):2===a.state.wrap&&(a.adler=p(a.adler,o,l,h)),a.next_in+=l,a.total_in+=l,l),t.lookahead+=r,t.lookahead+t.insert>=x)for(s=t.strstart-t.insert,t.ins_h=t.window[s],t.ins_h=(t.ins_h<<t.hash_shift^t.window[s+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[s+x-1])&t.hash_mask,t.prev[s&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=s,s++,t.insert--,!(t.lookahead+t.insert<x)););}while(t.lookahead<z&&0!==t.strm.avail_in)}function Z(t,e){for(var r,i;;){if(t.lookahead<z){if(j(t),t.lookahead<z&&e===l)return A;if(0===t.lookahead)break}if(r=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==r&&t.strstart-r<=t.w_size-z&&(t.match_length=L(t,r)),t.match_length>=x)if(i=u._tr_tally(t,t.strstart-t.match_start,t.match_length-x),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=x){for(t.match_length--;t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart,0!=--t.match_length;);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else i=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}function W(t,e){for(var r,i,n;;){if(t.lookahead<z){if(j(t),t.lookahead<z&&e===l)return A;if(0===t.lookahead)break}if(r=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=x-1,0!==r&&t.prev_length<t.max_lazy_match&&t.strstart-r<=t.w_size-z&&(t.match_length=L(t,r),t.match_length<=5&&(1===t.strategy||t.match_length===x&&4096<t.strstart-t.match_start)&&(t.match_length=x-1)),t.prev_length>=x&&t.match_length<=t.prev_length){for(n=t.strstart+t.lookahead-x,i=u._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-x),t.lookahead-=t.prev_length-1,t.prev_length-=2;++t.strstart<=n&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,r=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!=--t.prev_length;);if(t.match_available=0,t.match_length=x-1,t.strstart++,i&&(N(t,!1),0===t.strm.avail_out))return A}else if(t.match_available){if((i=u._tr_tally(t,0,t.window[t.strstart-1]))&&N(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return A}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=u._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}function M(t,e,r,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=r,this.max_chain=i,this.func=n}function H(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=v,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new d.Buf16(2*w),this.dyn_dtree=new d.Buf16(2*(2*a+1)),this.bl_tree=new d.Buf16(2*(2*o+1)),D(this.dyn_ltree),D(this.dyn_dtree),D(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new d.Buf16(k+1),this.heap=new d.Buf16(2*s+1),D(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new d.Buf16(2*s+1),D(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function G(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=n,(e=t.state).pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?C:E,t.adler=2===e.wrap?0:1,e.last_flush=l,u._tr_init(e),m):R(t,_)}function K(t){var e=G(t);return e===m&&function(t){t.window_size=2*t.w_size,D(t.head),t.max_lazy_match=h[t.level].max_lazy,t.good_match=h[t.level].good_length,t.nice_match=h[t.level].nice_length,t.max_chain_length=h[t.level].max_chain,t.strstart=0,t.block_start=0,t.lookahead=0,t.insert=0,t.match_length=t.prev_length=x-1,t.match_available=0,t.ins_h=0}(t.state),e}function Y(t,e,r,i,n,s){if(!t)return _;var a=1;if(e===g&&(e=6),i<0?(a=0,i=-i):15<i&&(a=2,i-=16),n<1||y<n||r!==v||i<8||15<i||e<0||9<e||s<0||b<s)return R(t,_);8===i&&(i=9);var o=new H;return(t.state=o).strm=t,o.wrap=a,o.gzhead=null,o.w_bits=i,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=n+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+x-1)/x),o.window=new d.Buf8(2*o.w_size),o.head=new d.Buf16(o.hash_size),o.prev=new d.Buf16(o.w_size),o.lit_bufsize=1<<n+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new d.Buf8(o.pending_buf_size),o.d_buf=1*o.lit_bufsize,o.l_buf=3*o.lit_bufsize,o.level=e,o.strategy=s,o.method=r,K(t)}h=[new M(0,0,0,0,function(t,e){var r=65535;for(r>t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(j(t),0===t.lookahead&&e===l)return A;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+r;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,N(t,!1),0===t.strm.avail_out))return A;if(t.strstart-t.block_start>=t.w_size-z&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):(t.strstart>t.block_start&&(N(t,!1),t.strm.avail_out),A)}),new M(4,4,8,4,Z),new M(4,5,16,8,Z),new M(4,6,32,32,Z),new M(4,4,16,16,W),new M(8,16,32,32,W),new M(8,16,128,128,W),new M(8,32,128,256,W),new M(32,128,258,1024,W),new M(32,258,258,4096,W)],r.deflateInit=function(t,e){return Y(t,e,v,15,8,0)},r.deflateInit2=Y,r.deflateReset=K,r.deflateResetKeep=G,r.deflateSetHeader=function(t,e){return t&&t.state?2!==t.state.wrap?_:(t.state.gzhead=e,m):_},r.deflate=function(t,e){var r,i,n,s;if(!t||!t.state||5<e||e<0)return t?R(t,_):_;if(i=t.state,!t.output||!t.input&&0!==t.avail_in||666===i.status&&e!==f)return R(t,0===t.avail_out?-5:_);if(i.strm=t,r=i.last_flush,i.last_flush=e,i.status===C)if(2===i.wrap)t.adler=0,U(i,31),U(i,139),U(i,8),i.gzhead?(U(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),U(i,255&i.gzhead.time),U(i,i.gzhead.time>>8&255),U(i,i.gzhead.time>>16&255),U(i,i.gzhead.time>>24&255),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&(U(i,255&i.gzhead.extra.length),U(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=p(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69):(U(i,0),U(i,0),U(i,0),U(i,0),U(i,0),U(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),U(i,3),i.status=E);else{var a=v+(i.w_bits-8<<4)<<8;a|=(2<=i.strategy||i.level<2?0:i.level<6?1:6===i.level?2:3)<<6,0!==i.strstart&&(a|=32),a+=31-a%31,i.status=E,P(i,a),0!==i.strstart&&(P(i,t.adler>>>16),P(i,65535&t.adler)),t.adler=1}if(69===i.status)if(i.gzhead.extra){for(n=i.pending;i.gzindex<(65535&i.gzhead.extra.length)&&(i.pending!==i.pending_buf_size||(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending!==i.pending_buf_size));)U(i,255&i.gzhead.extra[i.gzindex]),i.gzindex++;i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),i.gzindex===i.gzhead.extra.length&&(i.gzindex=0,i.status=73)}else i.status=73;if(73===i.status)if(i.gzhead.name){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0,U(i,s)}while(0!==s);i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.gzindex=0,i.status=91)}else i.status=91;if(91===i.status)if(i.gzhead.comment){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),F(t),n=i.pending,i.pending===i.pending_buf_size)){s=1;break}s=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0,U(i,s)}while(0!==s);i.gzhead.hcrc&&i.pending>n&&(t.adler=p(t.adler,i.pending_buf,i.pending-n,n)),0===s&&(i.status=103)}else i.status=103;if(103===i.status&&(i.gzhead.hcrc?(i.pending+2>i.pending_buf_size&&F(t),i.pending+2<=i.pending_buf_size&&(U(i,255&t.adler),U(i,t.adler>>8&255),t.adler=0,i.status=E)):i.status=E),0!==i.pending){if(F(t),0===t.avail_out)return i.last_flush=-1,m}else if(0===t.avail_in&&T(e)<=T(r)&&e!==f)return R(t,-5);if(666===i.status&&0!==t.avail_in)return R(t,-5);if(0!==t.avail_in||0!==i.lookahead||e!==l&&666!==i.status){var o=2===i.strategy?function(t,e){for(var r;;){if(0===t.lookahead&&(j(t),0===t.lookahead)){if(e===l)return A;break}if(t.match_length=0,r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):3===i.strategy?function(t,e){for(var r,i,n,s,a=t.window;;){if(t.lookahead<=S){if(j(t),t.lookahead<=S&&e===l)return A;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=x&&0<t.strstart&&(i=a[n=t.strstart-1])===a[++n]&&i===a[++n]&&i===a[++n]){s=t.strstart+S;do{}while(i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&i===a[++n]&&n<s);t.match_length=S-(s-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=x?(r=u._tr_tally(t,1,t.match_length-x),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=u._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(N(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(N(t,!0),0===t.strm.avail_out?O:B):t.last_lit&&(N(t,!1),0===t.strm.avail_out)?A:I}(i,e):h[i.level].func(i,e);if(o!==O&&o!==B||(i.status=666),o===A||o===O)return 0===t.avail_out&&(i.last_flush=-1),m;if(o===I&&(1===e?u._tr_align(i):5!==e&&(u._tr_stored_block(i,0,0,!1),3===e&&(D(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),F(t),0===t.avail_out))return i.last_flush=-1,m}return e!==f?m:i.wrap<=0?1:(2===i.wrap?(U(i,255&t.adler),U(i,t.adler>>8&255),U(i,t.adler>>16&255),U(i,t.adler>>24&255),U(i,255&t.total_in),U(i,t.total_in>>8&255),U(i,t.total_in>>16&255),U(i,t.total_in>>24&255)):(P(i,t.adler>>>16),P(i,65535&t.adler)),F(t),0<i.wrap&&(i.wrap=-i.wrap),0!==i.pending?m:1)},r.deflateEnd=function(t){var e;return t&&t.state?(e=t.state.status)!==C&&69!==e&&73!==e&&91!==e&&103!==e&&e!==E&&666!==e?R(t,_):(t.state=null,e===E?R(t,-3):m):_},r.deflateSetDictionary=function(t,e){var r,i,n,s,a,o,h,u,l=e.length;if(!t||!t.state)return _;if(2===(s=(r=t.state).wrap)||1===s&&r.status!==C||r.lookahead)return _;for(1===s&&(t.adler=c(t.adler,e,l,0)),r.wrap=0,l>=r.w_size&&(0===s&&(D(r.head),r.strstart=0,r.block_start=0,r.insert=0),u=new d.Buf8(r.w_size),d.arraySet(u,e,l-r.w_size,r.w_size,0),e=u,l=r.w_size),a=t.avail_in,o=t.next_in,h=t.input,t.avail_in=l,t.next_in=0,t.input=e,j(r);r.lookahead>=x;){for(i=r.strstart,n=r.lookahead-(x-1);r.ins_h=(r.ins_h<<r.hash_shift^r.window[i+x-1])&r.hash_mask,r.prev[i&r.w_mask]=r.head[r.ins_h],r.head[r.ins_h]=i,i++,--n;);r.strstart=i,r.lookahead=x-1,j(r)}return r.strstart+=r.lookahead,r.block_start=r.strstart,r.insert=r.lookahead,r.lookahead=0,r.match_length=r.prev_length=x-1,r.match_available=0,t.next_in=o,t.input=h,t.avail_in=a,r.wrap=s,m},r.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./messages":51,"./trees":52}],47:[function(t,e,r){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],48:[function(t,e,r){"use strict";e.exports=function(t,e){var r,i,n,s,a,o,h,u,l,f,d,c,p,m,_,g,b,v,y,w,k,x,S,z,C;r=t.state,i=t.next_in,z=t.input,n=i+(t.avail_in-5),s=t.next_out,C=t.output,a=s-(e-t.avail_out),o=s+(t.avail_out-257),h=r.dmax,u=r.wsize,l=r.whave,f=r.wnext,d=r.window,c=r.hold,p=r.bits,m=r.lencode,_=r.distcode,g=(1<<r.lenbits)-1,b=(1<<r.distbits)-1;t:do{p<15&&(c+=z[i++]<<p,p+=8,c+=z[i++]<<p,p+=8),v=m[c&g];e:for(;;){if(c>>>=y=v>>>24,p-=y,0===(y=v>>>16&255))C[s++]=65535&v;else{if(!(16&y)){if(0==(64&y)){v=m[(65535&v)+(c&(1<<y)-1)];continue e}if(32&y){r.mode=12;break t}t.msg="invalid literal/length code",r.mode=30;break t}w=65535&v,(y&=15)&&(p<y&&(c+=z[i++]<<p,p+=8),w+=c&(1<<y)-1,c>>>=y,p-=y),p<15&&(c+=z[i++]<<p,p+=8,c+=z[i++]<<p,p+=8),v=_[c&b];r:for(;;){if(c>>>=y=v>>>24,p-=y,!(16&(y=v>>>16&255))){if(0==(64&y)){v=_[(65535&v)+(c&(1<<y)-1)];continue r}t.msg="invalid distance code",r.mode=30;break t}if(k=65535&v,p<(y&=15)&&(c+=z[i++]<<p,(p+=8)<y&&(c+=z[i++]<<p,p+=8)),h<(k+=c&(1<<y)-1)){t.msg="invalid distance too far back",r.mode=30;break t}if(c>>>=y,p-=y,(y=s-a)<k){if(l<(y=k-y)&&r.sane){t.msg="invalid distance too far back",r.mode=30;break t}if(S=d,(x=0)===f){if(x+=u-y,y<w){for(w-=y;C[s++]=d[x++],--y;);x=s-k,S=C}}else if(f<y){if(x+=u+f-y,(y-=f)<w){for(w-=y;C[s++]=d[x++],--y;);if(x=0,f<w){for(w-=y=f;C[s++]=d[x++],--y;);x=s-k,S=C}}}else if(x+=f-y,y<w){for(w-=y;C[s++]=d[x++],--y;);x=s-k,S=C}for(;2<w;)C[s++]=S[x++],C[s++]=S[x++],C[s++]=S[x++],w-=3;w&&(C[s++]=S[x++],1<w&&(C[s++]=S[x++]))}else{for(x=s-k;C[s++]=C[x++],C[s++]=C[x++],C[s++]=C[x++],2<(w-=3););w&&(C[s++]=C[x++],1<w&&(C[s++]=C[x++]))}break}}break}}while(i<n&&s<o);i-=w=p>>3,c&=(1<<(p-=w<<3))-1,t.next_in=i,t.next_out=s,t.avail_in=i<n?n-i+5:5-(i-n),t.avail_out=s<o?o-s+257:257-(s-o),r.hold=c,r.bits=p}},{}],49:[function(t,e,r){"use strict";var I=t("../utils/common"),O=t("./adler32"),B=t("./crc32"),R=t("./inffast"),T=t("./inftrees"),D=1,F=2,N=0,U=-2,P=1,i=852,n=592;function L(t){return(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function s(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new I.Buf16(320),this.work=new I.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=P,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new I.Buf32(i),e.distcode=e.distdyn=new I.Buf32(n),e.sane=1,e.back=-1,N):U}function o(t){var e;return t&&t.state?((e=t.state).wsize=0,e.whave=0,e.wnext=0,a(t)):U}function h(t,e){var r,i;return t&&t.state?(i=t.state,e<0?(r=0,e=-e):(r=1+(e>>4),e<48&&(e&=15)),e&&(e<8||15<e)?U:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=r,i.wbits=e,o(t))):U}function u(t,e){var r,i;return t?(i=new s,(t.state=i).window=null,(r=h(t,e))!==N&&(t.state=null),r):U}var l,f,d=!0;function j(t){if(d){var e;for(l=new I.Buf32(512),f=new I.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(T(D,t.lens,0,288,l,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;T(F,t.lens,0,32,f,0,t.work,{bits:5}),d=!1}t.lencode=l,t.lenbits=9,t.distcode=f,t.distbits=5}function Z(t,e,r,i){var n,s=t.state;return null===s.window&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=new I.Buf8(s.wsize)),i>=s.wsize?(I.arraySet(s.window,e,r-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(i<(n=s.wsize-s.wnext)&&(n=i),I.arraySet(s.window,e,r-i,n,s.wnext),(i-=n)?(I.arraySet(s.window,e,r-i,i,0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=n))),0}r.inflateReset=o,r.inflateReset2=h,r.inflateResetKeep=a,r.inflateInit=function(t){return u(t,15)},r.inflateInit2=u,r.inflate=function(t,e){var r,i,n,s,a,o,h,u,l,f,d,c,p,m,_,g,b,v,y,w,k,x,S,z,C=0,E=new I.Buf8(4),A=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&0!==t.avail_in)return U;12===(r=t.state).mode&&(r.mode=13),a=t.next_out,n=t.output,h=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,u=r.hold,l=r.bits,f=o,d=h,x=N;t:for(;;)switch(r.mode){case P:if(0===r.wrap){r.mode=13;break}for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(2&r.wrap&&35615===u){E[r.check=0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0),l=u=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&u)<<8)+(u>>8))%31){t.msg="incorrect header check",r.mode=30;break}if(8!=(15&u)){t.msg="unknown compression method",r.mode=30;break}if(l-=4,k=8+(15&(u>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){t.msg="invalid window size",r.mode=30;break}r.dmax=1<<k,t.adler=r.check=1,r.mode=512&u?10:12,l=u=0;break;case 2:for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(r.flags=u,8!=(255&r.flags)){t.msg="unknown compression method",r.mode=30;break}if(57344&r.flags){t.msg="unknown header flags set",r.mode=30;break}r.head&&(r.head.text=u>>8&1),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=3;case 3:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.head&&(r.head.time=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,E[2]=u>>>16&255,E[3]=u>>>24&255,r.check=B(r.check,E,4,0)),l=u=0,r.mode=4;case 4:for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.head&&(r.head.xflags=255&u,r.head.os=u>>8),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0,r.mode=5;case 5:if(1024&r.flags){for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.length=u,r.head&&(r.head.extra_len=u),512&r.flags&&(E[0]=255&u,E[1]=u>>>8&255,r.check=B(r.check,E,2,0)),l=u=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&(o<(c=r.length)&&(c=o),c&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),I.arraySet(r.head.extra,i,s,c,k)),512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,r.length-=c),r.length))break t;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===o)break t;for(c=0;k=i[s+c++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&c<o;);if(512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,k)break t}else r.head&&(r.head.name=null);r.length=0,r.mode=8;case 8:if(4096&r.flags){if(0===o)break t;for(c=0;k=i[s+c++],r.head&&k&&r.length<65536&&(r.head.comment+=String.fromCharCode(k)),k&&c<o;);if(512&r.flags&&(r.check=B(r.check,i,c,s)),o-=c,s+=c,k)break t}else r.head&&(r.head.comment=null);r.mode=9;case 9:if(512&r.flags){for(;l<16;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u!==(65535&r.check)){t.msg="header crc mismatch",r.mode=30;break}l=u=0}r.head&&(r.head.hcrc=r.flags>>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=12;break;case 10:for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}t.adler=r.check=L(u),l=u=0,r.mode=11;case 11:if(0===r.havedict)return t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,2;t.adler=r.check=1,r.mode=12;case 12:if(5===e||6===e)break t;case 13:if(r.last){u>>>=7&l,l-=7&l,r.mode=27;break}for(;l<3;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}switch(r.last=1&u,l-=1,3&(u>>>=1)){case 0:r.mode=14;break;case 1:if(j(r),r.mode=20,6!==e)break;u>>>=2,l-=2;break t;case 2:r.mode=17;break;case 3:t.msg="invalid block type",r.mode=30}u>>>=2,l-=2;break;case 14:for(u>>>=7&l,l-=7&l;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if((65535&u)!=(u>>>16^65535)){t.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&u,l=u=0,r.mode=15,6===e)break t;case 15:r.mode=16;case 16:if(c=r.length){if(o<c&&(c=o),h<c&&(c=h),0===c)break t;I.arraySet(n,i,s,c,a),o-=c,s+=c,h-=c,a+=c,r.length-=c;break}r.mode=12;break;case 17:for(;l<14;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(r.nlen=257+(31&u),u>>>=5,l-=5,r.ndist=1+(31&u),u>>>=5,l-=5,r.ncode=4+(15&u),u>>>=4,l-=4,286<r.nlen||30<r.ndist){t.msg="too many length or distance symbols",r.mode=30;break}r.have=0,r.mode=18;case 18:for(;r.have<r.ncode;){for(;l<3;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.lens[A[r.have++]]=7&u,u>>>=3,l-=3}for(;r.have<19;)r.lens[A[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,S={bits:r.lenbits},x=T(0,r.lens,0,19,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have<r.nlen+r.ndist;){for(;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(b<16)u>>>=_,l-=_,r.lens[r.have++]=b;else{if(16===b){for(z=_+2;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u>>>=_,l-=_,0===r.have){t.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],c=3+(3&u),u>>>=2,l-=2}else if(17===b){for(z=_+3;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}l-=_,k=0,c=3+(7&(u>>>=_)),u>>>=3,l-=3}else{for(z=_+7;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}l-=_,k=0,c=11+(127&(u>>>=_)),u>>>=7,l-=7}if(r.have+c>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=30;break}for(;c--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){t.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,S={bits:r.lenbits},x=T(D,r.lens,0,r.nlen,r.lencode,0,r.work,S),r.lenbits=S.bits,x){t.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,S={bits:r.distbits},x=T(F,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,S),r.distbits=S.bits,x){t.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===e)break t;case 20:r.mode=21;case 21:if(6<=o&&258<=h){t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,R(t,d),a=t.next_out,n=t.output,h=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,u=r.hold,l=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;g=(C=r.lencode[u&(1<<r.lenbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(g&&0==(240&g)){for(v=_,y=g,w=b;g=(C=r.lencode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,r.length=b,0===g){r.mode=26;break}if(32&g){r.back=-1,r.mode=12;break}if(64&g){t.msg="invalid literal/length code",r.mode=30;break}r.extra=15&g,r.mode=22;case 22:if(r.extra){for(z=r.extra;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.length+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;g=(C=r.distcode[u&(1<<r.distbits)-1])>>>16&255,b=65535&C,!((_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(0==(240&g)){for(v=_,y=g,w=b;g=(C=r.distcode[w+((u&(1<<v+y)-1)>>v)])>>>16&255,b=65535&C,!(v+(_=C>>>24)<=l);){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}u>>>=v,l-=v,r.back+=v}if(u>>>=_,l-=_,r.back+=_,64&g){t.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&g,r.mode=24;case 24:if(r.extra){for(z=r.extra;l<z;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}r.offset+=u&(1<<r.extra)-1,u>>>=r.extra,l-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===h)break t;if(c=d-h,r.offset>c){if((c=r.offset-c)>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=30;break}p=c>r.wnext?(c-=r.wnext,r.wsize-c):r.wnext-c,c>r.length&&(c=r.length),m=r.window}else m=n,p=a-r.offset,c=r.length;for(h<c&&(c=h),h-=c,r.length-=c;n[a++]=m[p++],--c;);0===r.length&&(r.mode=21);break;case 26:if(0===h)break t;n[a++]=r.length,h--,r.mode=21;break;case 27:if(r.wrap){for(;l<32;){if(0===o)break t;o--,u|=i[s++]<<l,l+=8}if(d-=h,t.total_out+=d,r.total+=d,d&&(t.adler=r.check=r.flags?B(r.check,n,d,a-d):O(r.check,n,d,a-d)),d=h,(r.flags?u:L(u))!==r.check){t.msg="incorrect data check",r.mode=30;break}l=u=0}r.mode=28;case 28:if(r.wrap&&r.flags){for(;l<32;){if(0===o)break t;o--,u+=i[s++]<<l,l+=8}if(u!==(4294967295&r.total)){t.msg="incorrect length check",r.mode=30;break}l=u=0}r.mode=29;case 29:x=1;break t;case 30:x=-3;break t;case 31:return-4;case 32:default:return U}return t.next_out=a,t.avail_out=h,t.next_in=s,t.avail_in=o,r.hold=u,r.bits=l,(r.wsize||d!==t.avail_out&&r.mode<30&&(r.mode<27||4!==e))&&Z(t,t.output,t.next_out,d-t.avail_out)?(r.mode=31,-4):(f-=t.avail_in,d-=t.avail_out,t.total_in+=f,t.total_out+=d,r.total+=d,r.wrap&&d&&(t.adler=r.check=r.flags?B(r.check,n,d,t.next_out-d):O(r.check,n,d,t.next_out-d)),t.data_type=r.bits+(r.last?64:0)+(12===r.mode?128:0)+(20===r.mode||15===r.mode?256:0),(0==f&&0===d||4===e)&&x===N&&(x=-5),x)},r.inflateEnd=function(t){if(!t||!t.state)return U;var e=t.state;return e.window&&(e.window=null),t.state=null,N},r.inflateGetHeader=function(t,e){var r;return t&&t.state?0==(2&(r=t.state).wrap)?U:((r.head=e).done=!1,N):U},r.inflateSetDictionary=function(t,e){var r,i=e.length;return t&&t.state?0!==(r=t.state).wrap&&11!==r.mode?U:11===r.mode&&O(1,e,i,0)!==r.check?-3:Z(t,e,i,i)?(r.mode=31,-4):(r.havedict=1,N):U},r.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":41,"./adler32":43,"./crc32":45,"./inffast":48,"./inftrees":50}],50:[function(t,e,r){"use strict";var D=t("../utils/common"),F=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],N=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],U=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],P=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(t,e,r,i,n,s,a,o){var h,u,l,f,d,c,p,m,_,g=o.bits,b=0,v=0,y=0,w=0,k=0,x=0,S=0,z=0,C=0,E=0,A=null,I=0,O=new D.Buf16(16),B=new D.Buf16(16),R=null,T=0;for(b=0;b<=15;b++)O[b]=0;for(v=0;v<i;v++)O[e[r+v]]++;for(k=g,w=15;1<=w&&0===O[w];w--);if(w<k&&(k=w),0===w)return n[s++]=20971520,n[s++]=20971520,o.bits=1,0;for(y=1;y<w&&0===O[y];y++);for(k<y&&(k=y),b=z=1;b<=15;b++)if(z<<=1,(z-=O[b])<0)return-1;if(0<z&&(0===t||1!==w))return-1;for(B[1]=0,b=1;b<15;b++)B[b+1]=B[b]+O[b];for(v=0;v<i;v++)0!==e[r+v]&&(a[B[e[r+v]]++]=v);if(c=0===t?(A=R=a,19):1===t?(A=F,I-=257,R=N,T-=257,256):(A=U,R=P,-1),b=y,d=s,S=v=E=0,l=-1,f=(C=1<<(x=k))-1,1===t&&852<C||2===t&&592<C)return 1;for(;;){for(p=b-S,_=a[v]<c?(m=0,a[v]):a[v]>c?(m=R[T+a[v]],A[I+a[v]]):(m=96,0),h=1<<b-S,y=u=1<<x;n[d+(E>>S)+(u-=h)]=p<<24|m<<16|_|0,0!==u;);for(h=1<<b-1;E&h;)h>>=1;if(0!==h?(E&=h-1,E+=h):E=0,v++,0==--O[b]){if(b===w)break;b=e[r+a[v]]}if(k<b&&(E&f)!==l){for(0===S&&(S=k),d+=y,z=1<<(x=b-S);x+S<w&&!((z-=O[x+S])<=0);)x++,z<<=1;if(C+=1<<x,1===t&&852<C||2===t&&592<C)return 1;n[l=E&f]=k<<24|x<<16|d-s|0}}return 0!==E&&(n[d+E]=b-S<<24|64<<16|0),o.bits=k,0}},{"../utils/common":41}],51:[function(t,e,r){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],52:[function(t,e,r){"use strict";var n=t("../utils/common"),o=0,h=1;function i(t){for(var e=t.length;0<=--e;)t[e]=0}var s=0,a=29,u=256,l=u+1+a,f=30,d=19,_=2*l+1,g=15,c=16,p=7,m=256,b=16,v=17,y=18,w=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],k=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],x=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],S=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],z=new Array(2*(l+2));i(z);var C=new Array(2*f);i(C);var E=new Array(512);i(E);var A=new Array(256);i(A);var I=new Array(a);i(I);var O,B,R,T=new Array(f);function D(t,e,r,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=r,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function F(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function N(t){return t<256?E[t]:E[256+(t>>>7)]}function U(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function P(t,e,r){t.bi_valid>c-r?(t.bi_buf|=e<<t.bi_valid&65535,U(t,t.bi_buf),t.bi_buf=e>>c-t.bi_valid,t.bi_valid+=r-c):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=r)}function L(t,e,r){P(t,r[2*e],r[2*e+1])}function j(t,e){for(var r=0;r|=1&t,t>>>=1,r<<=1,0<--e;);return r>>>1}function Z(t,e,r){var i,n,s=new Array(g+1),a=0;for(i=1;i<=g;i++)s[i]=a=a+r[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=j(s[o]++,o))}}function W(t){var e;for(e=0;e<l;e++)t.dyn_ltree[2*e]=0;for(e=0;e<f;e++)t.dyn_dtree[2*e]=0;for(e=0;e<d;e++)t.bl_tree[2*e]=0;t.dyn_ltree[2*m]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function M(t){8<t.bi_valid?U(t,t.bi_buf):0<t.bi_valid&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function H(t,e,r,i){var n=2*e,s=2*r;return t[n]<t[s]||t[n]===t[s]&&i[e]<=i[r]}function G(t,e,r){for(var i=t.heap[r],n=r<<1;n<=t.heap_len&&(n<t.heap_len&&H(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!H(e,i,t.heap[n],t.depth));)t.heap[r]=t.heap[n],r=n,n<<=1;t.heap[r]=i}function K(t,e,r){var i,n,s,a,o=0;if(0!==t.last_lit)for(;i=t.pending_buf[t.d_buf+2*o]<<8|t.pending_buf[t.d_buf+2*o+1],n=t.pending_buf[t.l_buf+o],o++,0===i?L(t,n,e):(L(t,(s=A[n])+u+1,e),0!==(a=w[s])&&P(t,n-=I[s],a),L(t,s=N(--i),r),0!==(a=k[s])&&P(t,i-=T[s],a)),o<t.last_lit;);L(t,m,e)}function Y(t,e){var r,i,n,s=e.dyn_tree,a=e.stat_desc.static_tree,o=e.stat_desc.has_stree,h=e.stat_desc.elems,u=-1;for(t.heap_len=0,t.heap_max=_,r=0;r<h;r++)0!==s[2*r]?(t.heap[++t.heap_len]=u=r,t.depth[r]=0):s[2*r+1]=0;for(;t.heap_len<2;)s[2*(n=t.heap[++t.heap_len]=u<2?++u:0)]=1,t.depth[n]=0,t.opt_len--,o&&(t.static_len-=a[2*n+1]);for(e.max_code=u,r=t.heap_len>>1;1<=r;r--)G(t,s,r);for(n=h;r=t.heap[1],t.heap[1]=t.heap[t.heap_len--],G(t,s,1),i=t.heap[1],t.heap[--t.heap_max]=r,t.heap[--t.heap_max]=i,s[2*n]=s[2*r]+s[2*i],t.depth[n]=(t.depth[r]>=t.depth[i]?t.depth[r]:t.depth[i])+1,s[2*r+1]=s[2*i+1]=n,t.heap[1]=n++,G(t,s,1),2<=t.heap_len;);t.heap[--t.heap_max]=t.heap[1],function(t,e){var r,i,n,s,a,o,h=e.dyn_tree,u=e.max_code,l=e.stat_desc.static_tree,f=e.stat_desc.has_stree,d=e.stat_desc.extra_bits,c=e.stat_desc.extra_base,p=e.stat_desc.max_length,m=0;for(s=0;s<=g;s++)t.bl_count[s]=0;for(h[2*t.heap[t.heap_max]+1]=0,r=t.heap_max+1;r<_;r++)p<(s=h[2*h[2*(i=t.heap[r])+1]+1]+1)&&(s=p,m++),h[2*i+1]=s,u<i||(t.bl_count[s]++,a=0,c<=i&&(a=d[i-c]),o=h[2*i],t.opt_len+=o*(s+a),f&&(t.static_len+=o*(l[2*i+1]+a)));if(0!==m){do{for(s=p-1;0===t.bl_count[s];)s--;t.bl_count[s]--,t.bl_count[s+1]+=2,t.bl_count[p]--,m-=2}while(0<m);for(s=p;0!==s;s--)for(i=t.bl_count[s];0!==i;)u<(n=t.heap[--r])||(h[2*n+1]!==s&&(t.opt_len+=(s-h[2*n+1])*h[2*n],h[2*n+1]=s),i--)}}(t,e),Z(s,u,t.bl_count)}function X(t,e,r){var i,n,s=-1,a=e[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),e[2*(r+1)+1]=65535,i=0;i<=r;i++)n=a,a=e[2*(i+1)+1],++o<h&&n===a||(o<u?t.bl_tree[2*n]+=o:0!==n?(n!==s&&t.bl_tree[2*n]++,t.bl_tree[2*b]++):o<=10?t.bl_tree[2*v]++:t.bl_tree[2*y]++,s=n,u=(o=0)===a?(h=138,3):n===a?(h=6,3):(h=7,4))}function V(t,e,r){var i,n,s=-1,a=e[1],o=0,h=7,u=4;for(0===a&&(h=138,u=3),i=0;i<=r;i++)if(n=a,a=e[2*(i+1)+1],!(++o<h&&n===a)){if(o<u)for(;L(t,n,t.bl_tree),0!=--o;);else 0!==n?(n!==s&&(L(t,n,t.bl_tree),o--),L(t,b,t.bl_tree),P(t,o-3,2)):o<=10?(L(t,v,t.bl_tree),P(t,o-3,3)):(L(t,y,t.bl_tree),P(t,o-11,7));s=n,u=(o=0)===a?(h=138,3):n===a?(h=6,3):(h=7,4)}}i(T);var q=!1;function J(t,e,r,i){P(t,(s<<1)+(i?1:0),3),function(t,e,r,i){M(t),i&&(U(t,r),U(t,~r)),n.arraySet(t.pending_buf,t.window,e,r,t.pending),t.pending+=r}(t,e,r,!0)}r._tr_init=function(t){q||(function(){var t,e,r,i,n,s=new Array(g+1);for(i=r=0;i<a-1;i++)for(I[i]=r,t=0;t<1<<w[i];t++)A[r++]=i;for(A[r-1]=i,i=n=0;i<16;i++)for(T[i]=n,t=0;t<1<<k[i];t++)E[n++]=i;for(n>>=7;i<f;i++)for(T[i]=n<<7,t=0;t<1<<k[i]-7;t++)E[256+n++]=i;for(e=0;e<=g;e++)s[e]=0;for(t=0;t<=143;)z[2*t+1]=8,t++,s[8]++;for(;t<=255;)z[2*t+1]=9,t++,s[9]++;for(;t<=279;)z[2*t+1]=7,t++,s[7]++;for(;t<=287;)z[2*t+1]=8,t++,s[8]++;for(Z(z,l+1,s),t=0;t<f;t++)C[2*t+1]=5,C[2*t]=j(t,5);O=new D(z,w,u+1,l,g),B=new D(C,k,0,f,g),R=new D(new Array(0),x,0,d,p)}(),q=!0),t.l_desc=new F(t.dyn_ltree,O),t.d_desc=new F(t.dyn_dtree,B),t.bl_desc=new F(t.bl_tree,R),t.bi_buf=0,t.bi_valid=0,W(t)},r._tr_stored_block=J,r._tr_flush_block=function(t,e,r,i){var n,s,a=0;0<t.level?(2===t.strm.data_type&&(t.strm.data_type=function(t){var e,r=4093624447;for(e=0;e<=31;e++,r>>>=1)if(1&r&&0!==t.dyn_ltree[2*e])return o;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return h;for(e=32;e<u;e++)if(0!==t.dyn_ltree[2*e])return h;return o}(t)),Y(t,t.l_desc),Y(t,t.d_desc),a=function(t){var e;for(X(t,t.dyn_ltree,t.l_desc.max_code),X(t,t.dyn_dtree,t.d_desc.max_code),Y(t,t.bl_desc),e=d-1;3<=e&&0===t.bl_tree[2*S[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}(t),n=t.opt_len+3+7>>>3,(s=t.static_len+3+7>>>3)<=n&&(n=s)):n=s=r+5,r+4<=n&&-1!==e?J(t,e,r,i):4===t.strategy||s===n?(P(t,2+(i?1:0),3),K(t,z,C)):(P(t,4+(i?1:0),3),function(t,e,r,i){var n;for(P(t,e-257,5),P(t,r-1,5),P(t,i-4,4),n=0;n<i;n++)P(t,t.bl_tree[2*S[n]+1],3);V(t,t.dyn_ltree,e-1),V(t,t.dyn_dtree,r-1)}(t,t.l_desc.max_code+1,t.d_desc.max_code+1,a+1),K(t,t.dyn_ltree,t.dyn_dtree)),W(t),i&&M(t)},r._tr_tally=function(t,e,r){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&r,t.last_lit++,0===e?t.dyn_ltree[2*r]++:(t.matches++,e--,t.dyn_ltree[2*(A[r]+u+1)]++,t.dyn_dtree[2*N(e)]++),t.last_lit===t.lit_bufsize-1},r._tr_align=function(t){P(t,2,3),L(t,m,z),function(t){16===t.bi_valid?(U(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):8<=t.bi_valid&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}(t)}},{"../utils/common":41}],53:[function(t,e,r){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(t,e,r){"use strict";e.exports="function"==typeof setImmediate?setImmediate:function(){var t=[].slice.apply(arguments);t.splice(1,0,0),setTimeout.apply(null,t)}},{}]},{},[10])(10)});
\ No newline at end of file
diff --git a/api/legal/ASSEMBLY_EXCEPTION b/api/legal/ASSEMBLY_EXCEPTION
new file mode 100644
index 0000000000..065b8d9023
--- /dev/null
+++ b/api/legal/ASSEMBLY_EXCEPTION
@@ -0,0 +1,27 @@
+
+OPENJDK ASSEMBLY EXCEPTION
+
+The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
+openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU
+General Public License <http://www.gnu.org/copyleft/gpl.html> version 2
+only ("GPL2"), with the following clarification and special exception.
+
+    Linking this OpenJDK Code statically or dynamically with other code
+    is making a combined work based on this library.  Thus, the terms
+    and conditions of GPL2 cover the whole combination.
+
+    As a special exception, Oracle gives you permission to link this
+    OpenJDK Code with certain code licensed by Oracle as indicated at
+    http://openjdk.java.net/legal/exception-modules-2007-05-08.html
+    ("Designated Exception Modules") to produce an executable,
+    regardless of the license terms of the Designated Exception Modules,
+    and to copy and distribute the resulting executable under GPL2,
+    provided that the Designated Exception Modules continue to be
+    governed by the licenses under which they were offered by Oracle.
+
+As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
+to build an executable that includes those portions of necessary code that
+Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
+with the Classpath exception).  If you modify or add to the OpenJDK code,
+that new GPL2 code may still be combined with Designated Exception Modules
+if the new code is made subject to this exception by its copyright holder.
diff --git a/api/legal/jquery.md b/api/legal/jquery.md
new file mode 100644
index 0000000000..d468b3183a
--- /dev/null
+++ b/api/legal/jquery.md
@@ -0,0 +1,72 @@
+## jQuery v3.6.1
+
+### jQuery License
+```
+jQuery v 3.6.1
+Copyright OpenJS Foundation and other contributors, https://openjsf.org/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+******************************************
+
+The jQuery JavaScript Library v3.6.1 also includes Sizzle.js
+
+Sizzle.js includes the following license:
+
+Copyright JS Foundation and other contributors, https://js.foundation/
+
+This software consists of voluntary contributions made by many
+individuals. For exact contribution history, see the revision history
+available at https://github.com/jquery/sizzle
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+All files located in the node_modules and external directories are
+externally maintained libraries used by this software which have their
+own licenses; we recommend you read them, as their terms may differ from
+the terms above.
+
+*********************
+
+```
diff --git a/api/legal/jqueryUI.md b/api/legal/jqueryUI.md
new file mode 100644
index 0000000000..8bda9d7a85
--- /dev/null
+++ b/api/legal/jqueryUI.md
@@ -0,0 +1,49 @@
+## jQuery UI v1.13.2
+
+### jQuery UI License
+```
+Copyright jQuery Foundation and other contributors, https://jquery.org/
+
+This software consists of voluntary contributions made by many
+individuals. For exact contribution history, see the revision history
+available at https://github.com/jquery/jquery-ui
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+Copyright and related rights for sample code are waived via CC0. Sample
+code is defined as all source code contained within the demos directory.
+
+CC0: http://creativecommons.org/publicdomain/zero/1.0/
+
+====
+
+All files located in the node_modules and external directories are
+externally maintained libraries used by this software which have their
+own licenses; we recommend you read them, as their terms may differ from
+the terms above.
+
+```
diff --git a/api/legal/jszip.md b/api/legal/jszip.md
new file mode 100644
index 0000000000..fad2cb15a1
--- /dev/null
+++ b/api/legal/jszip.md
@@ -0,0 +1,653 @@
+## JSZip v3.7.1
+
+JSZip is dual licensed. You may use it under the MIT license *or* the GPLv3
+license.
+
+### The MIT License
+```
+Copyright (c) 2009-2016 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+```
+
+### GPL version 3
+```
+
+                    GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+```
diff --git a/api/legal/pako.md b/api/legal/pako.md
new file mode 100644
index 0000000000..de339d8989
--- /dev/null
+++ b/api/legal/pako.md
@@ -0,0 +1,45 @@
+## Pako v1.0
+
+### Pako License
+<pre>
+Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+(C) 1995-2013 Jean-loup Gailly and Mark Adler
+(C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1. The origin of this software must not be misrepresented; you must not
+claim that you wrote the original software. If you use this software
+in a product, an acknowledgment in the product documentation would be
+appreciated but is not required.
+2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+3. This notice may not be removed or altered from any source distribution.
+
+</pre>
+
+
diff --git a/api/member-search-index.js b/api/member-search-index.js
new file mode 100644
index 0000000000..e453f48faa
--- /dev/null
+++ b/api/member-search-index.js
@@ -0,0 +1 @@
+memberSearchIndex = [{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"ABORT"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"ABORT_TYPE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"abs(FloatingPointFormula)","url":"abs(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"abs(FloatingPointFormula)","url":"abs(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"abs(FloatingPointFormula)","url":"abs(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"abs(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"AbstractArrayFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"AbstractBitvectorFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractBooleanFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"AbstractBooleanFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"AbstractEnumerationFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"AbstractEvaluator(AbstractProver<?>, FormulaCreator<TFormulaInfo, TType, TEnv, ?>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"AbstractFloatingPointFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"AbstractFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractUFManager<TFormulaInfo, ?, TType, TEnv>, AbstractBooleanFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, IntegerFormulaManager, RationalFormulaManager, AbstractBitvectorFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractFloatingPointFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractQuantifiedFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractArrayFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractSLFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractStringFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractEnumerationFormulaManager<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractUFManager,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager,org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractBitvectorFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractFloatingPointFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractQuantifiedFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractArrayFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractSLFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractStringFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractModel","l":"AbstractModel(AbstractProver<?>, FormulaCreator<TFormulaInfo, TType, TEnv, ?>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"AbstractNumeralFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>, AbstractNumeralFormulaManager.NonLinearArithmetic)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"AbstractProver(Set<SolverContext.ProverOptions>)","url":"%3Cinit%3E(java.util.Set)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProverWithAllSat","l":"AbstractProverWithAllSat(Set<SolverContext.ProverOptions>, BooleanFormulaManager, ShutdownNotifier)","url":"%3Cinit%3E(java.util.Set,org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.common.ShutdownNotifier)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractQuantifiedFormulaManager","l":"AbstractQuantifiedFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"AbstractSLFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"AbstractSolverContext(FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"AbstractStringFormulaManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFuncDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"AbstractUFManager(FormulaCreator<TFormulaInfo, TType, TEnv, TFunctionDecl>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"AbstractUserPropagator()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"ACKERMANNIZATION"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"ADD"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"add(BitvectorFormula, BitvectorFormula)","url":"add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"add(BitvectorFormula, BitvectorFormula)","url":"add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"add(BitvectorFormula, BitvectorFormula)","url":"add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"add(FloatingPointFormula, FloatingPointFormula)","url":"add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"add(ParamFormulaType, ParamFormulaType)","url":"add(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"add(ParamFormulaType, ParamFormulaType)","url":"add(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"add(ParamFormulaType, ParamFormulaType)","url":"add(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"add(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"add(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"add(TFormulaInfo, TFormulaInfo)","url":"add(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"add(TFormulaInfo, TFormulaInfo)","url":"add(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"addConstraint(BooleanFormula)","url":"addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"addConstraint(BooleanFormula)","url":"addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"addConstraint(BooleanFormula)","url":"addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"addConstraintImpl(BooleanFormula)","url":"addConstraintImpl(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverInformation","l":"addFunctionDeclaration(FunctionDeclaration<?>)","url":"addFunctionDeclaration(org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.RowBuilder","l":"addSolver(SolverOverviewTable.SolverInfo)","url":"addSolver(org.sosy_lab.java_smt.example.SolverOverviewTable.SolverInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"all()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"all()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"all()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"allChar()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"allChar()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"allChar()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"allCharImpl()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"allImpl()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"allSat(BasicProverEnvironment.AllSatCallback<R>, List<BooleanFormula>)","url":"allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProverWithAllSat","l":"allSat(BasicProverEnvironment.AllSatCallback<R>, List<BooleanFormula>)","url":"allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"allSat(BasicProverEnvironment.AllSatCallback<R>, List<BooleanFormula>)","url":"allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"},{"p":"org.sosy_lab.java_smt.example","c":"AllSatExample","l":"AllSatExample(SolverContext, ProverEnvironment)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.ProverEnvironment)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"amgr"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"AND"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"and(BitvectorFormula, BitvectorFormula)","url":"and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"and(BitvectorFormula, BitvectorFormula)","url":"and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"and(BitvectorFormula, BitvectorFormula)","url":"and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"and(BooleanFormula, BooleanFormula)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"and(BooleanFormula, BooleanFormula)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"and(BooleanFormula, BooleanFormula)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"and(BooleanFormula...)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"and(BooleanFormula...)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"and(BooleanFormula...)","url":"and(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"and(Collection<BooleanFormula>)","url":"and(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"and(Collection<BooleanFormula>)","url":"and(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"and(Collection<BooleanFormula>)","url":"and(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"and(TFormulaInfo, TFormulaInfo)","url":"and(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"and(TFormulaInfo, TFormulaInfo)","url":"and(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"andImpl(Collection<TFormulaInfo>)","url":"andImpl(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment.AllSatCallback","l":"apply(List<BooleanFormula>)","url":"apply(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"applyCNFImpl(BooleanFormula)","url":"applyCNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"applyNNFImpl(BooleanFormula)","url":"applyNNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"applyQELightImpl(BooleanFormula)","url":"applyQELightImpl(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"applyTactic(BooleanFormula, Tactic)","url":"applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"applyTactic(BooleanFormula, Tactic)","url":"applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"applyTactic(BooleanFormula, Tactic)","url":"applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"applyUFEImpl(BooleanFormula)","url":"applyUFEImpl(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager.NonLinearArithmetic","l":"APPROXIMATE_ALWAYS"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager.NonLinearArithmetic","l":"APPROXIMATE_FALLBACK"},{"p":"org.sosy_lab.java_smt.api","c":"Model","l":"asList()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"asList()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"asList()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"asMap()"},{"p":"org.sosy_lab.java_smt.test","c":"ProverEnvironmentSubject","l":"assertThat(BasicProverEnvironment<?>)","url":"assertThat(org.sosy_lab.java_smt.api.BasicProverEnvironment)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"assertThatEnvironment(BasicProverEnvironment<?>)","url":"assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"assertThatFormula(BooleanFormula)","url":"assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"assertUsing(SolverContext)","url":"assertUsing(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"assignment(FloatingPointFormula, FloatingPointFormula)","url":"assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"assignment(FloatingPointFormula, FloatingPointFormula)","url":"assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"assignment(FloatingPointFormula, FloatingPointFormula)","url":"assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"assignment(TFormulaInfo, TFormulaInfo)","url":"assignment(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"avoidDualStacksIfNotSupported()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"BASIC_OPERATORS"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"BITWUZLA"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"bmgr"},{"p":"org.sosy_lab.java_smt.example","c":"Binoxxo.BooleanBasedBinoxxoSolver","l":"BooleanBasedBinoxxoSolver(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku.BooleanBasedSudokuSolver","l":"BooleanBasedSudokuSolver(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"booleanFormulasOf(SolverContext)","url":"booleanFormulasOf(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"BooleanFormulaTransformationVisitor(FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"BooleanType"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"BOOLECTOR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ADD"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_AND"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ASHR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_CONCAT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_EQ"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_EXTRACT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_LSHR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_MUL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_NEG"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_NOT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_OR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ROTATE_LEFT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ROTATE_LEFT_BY_INT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ROTATE_RIGHT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ROTATE_RIGHT_BY_INT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SCASTTO_FP"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SDIV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SGE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SGT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SHL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SIGN_EXTENSION"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SLE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SLT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SMOD"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SREM"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_SUB"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_UCASTTO_FP"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_UDIV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_UGE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_UGT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ULE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ULT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_UREM"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_XOR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"BV_ZERO_EXTENSION"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"bvmgr"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"CachingModel(Model)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.Model)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"callFunction(FunctionDeclaration<T>, List<? extends Formula>)","url":"callFunction(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"callFunctionImpl(TFuncDecl, List<TFormulaInfo>)","url":"callFunctionImpl(TFuncDecl,java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"callUF(FunctionDeclaration<T>, Formula...)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"callUF(FunctionDeclaration<T>, Formula...)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"callUF(FunctionDeclaration<T>, Formula...)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"callUF(FunctionDeclaration<T>, List<? extends Formula>)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"callUF(FunctionDeclaration<T>, List<? extends Formula>)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"callUF(FunctionDeclaration<T>, List<? extends Formula>)","url":"callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"castFrom(Formula, boolean, FormulaType.FloatingPointType)","url":"castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castFromImpl(TFormulaInfo, boolean, FormulaType.FloatingPointType, TFormulaInfo)","url":"castFromImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>, FloatingPointRoundingMode)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>, FloatingPointRoundingMode)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>, FloatingPointRoundingMode)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"castTo(FloatingPointFormula, boolean, FormulaType<T>)","url":"castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"castToImpl(TFormulaInfo, boolean, FormulaType<?>, TFormulaInfo)","url":"castToImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"charAt(StringFormula, NumeralFormula.IntegerFormula)","url":"charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"charAt(StringFormula, NumeralFormula.IntegerFormula)","url":"charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"charAt(StringFormula, NumeralFormula.IntegerFormula)","url":"charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"charAt(TFormulaInfo, TFormulaInfo)","url":"charAt(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"check()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"check()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"checkEnableSeparationLogic()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"checkGenerateAllSat()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"checkGenerateModels()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"checkGenerateUnsatCores()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"checkGenerateUnsatCoresOverAssumptions()"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"checkTreeStructure(int, int[])","url":"checkTreeStructure(int,int[])"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"checkVariableName(String)","url":"checkVariableName(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"clearAssumptions()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"clearAssumptions()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"close()"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"close()"},{"p":"org.sosy_lab.java_smt.api","c":"Model","l":"close()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"ShutdownHook","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"close()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"close()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"close()"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"close()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"close()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"close()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"closeAllEvaluators()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"closed"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"closeSolver()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"closure(RegexFormula)","url":"closure(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"closure(RegexFormula)","url":"closure(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"closure(RegexFormula)","url":"closure(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"closure(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"complement(RegexFormula)","url":"complement(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"complement(RegexFormula)","url":"complement(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"complement(RegexFormula)","url":"complement(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"complement(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"concat(BitvectorFormula, BitvectorFormula)","url":"concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"concat(BitvectorFormula, BitvectorFormula)","url":"concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"concat(BitvectorFormula, BitvectorFormula)","url":"concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"concat(List<StringFormula>)","url":"concat(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"concat(List<StringFormula>)","url":"concat(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"concat(List<StringFormula>)","url":"concat(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"concat(RegexFormula...)","url":"concat(org.sosy_lab.java_smt.api.RegexFormula...)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"concat(StringFormula...)","url":"concat(org.sosy_lab.java_smt.api.StringFormula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"concat(TFormulaInfo, TFormulaInfo)","url":"concat(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"concatImpl(List<TFormulaInfo>)","url":"concatImpl(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"concatRegex(List<RegexFormula>)","url":"concatRegex(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"concatRegex(List<RegexFormula>)","url":"concatRegex(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"concatRegex(List<RegexFormula>)","url":"concatRegex(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"concatRegexImpl(List<TFormulaInfo>)","url":"concatRegexImpl(java.util.List)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"config"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"CONST"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"constraintTestBool1()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"constraintTestBool2()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"constraintTestBool3()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"constraintTestBool4()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"contains(Formula)","url":"contains(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"contains(StringFormula, StringFormula)","url":"contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"contains(StringFormula, StringFormula)","url":"contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"contains(StringFormula, StringFormula)","url":"contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"contains(TFormulaInfo, TFormulaInfo)","url":"contains(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"context"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"CONTINUE"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"CONTINUE_TYPE"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"convertValue(TFormulaInfo, TFormulaInfo)","url":"convertValue(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"convertValue(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"createSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContextFactory.Solvers, Consumer<String>)","url":"createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers,java.util.function.Consumer)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"createSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContextFactory.Solvers)","url":"createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"createSolverContext(Configuration, LogManager, ShutdownNotifier)","url":"createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"createSolverContext(SolverContextFactory.Solvers)","url":"createSolverContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"createTestConfigBuilder()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"creator"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"cross(RegexFormula)","url":"cross(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"cross(RegexFormula)","url":"cross(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"cross(RegexFormula)","url":"cross(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"currentModel"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"CUSTOM_TYPE"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"custom(Formula)","url":"custom(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"custom(Iterable<? extends Formula>)","url":"custom(java.lang.Iterable)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"CVC4"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"CVC5"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"DebuggingArrayFormulaManager(ArrayFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.ArrayFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"DebuggingBitvectorFormulaManager(BitvectorFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.BitvectorFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"DebuggingBooleanFormulaManager(BooleanFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingEnumerationFormulaManager","l":"DebuggingEnumerationFormulaManager(EnumerationFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.EnumerationFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"DebuggingFloatingPointFormulaManager(FloatingPointFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FloatingPointFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"DebuggingFormulaManager(FormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingIntegerFormulaManager","l":"DebuggingIntegerFormulaManager(IntegerFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingInterpolatingProverEnvironment","l":"DebuggingInterpolatingProverEnvironment(InterpolatingProverEnvironment<T>, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"DebuggingModel(Model, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.Model,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"DebuggingNumeralFormulaManager(NumeralFormulaManager<ParamFormulaType, ResultFormulaType>, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.NumeralFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"DebuggingOptimizationProverEnvironment(OptimizationProverEnvironment, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.OptimizationProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingProverEnvironment","l":"DebuggingProverEnvironment(BasicProverEnvironment<Void>, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.BasicProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingQuantifiedFormulaManager","l":"DebuggingQuantifiedFormulaManager(QuantifiedFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.QuantifiedFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingRationalFormulaManager","l":"DebuggingRationalFormulaManager(RationalFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"DebuggingSLFormulaManager(SLFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SLFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"DebuggingSolverContext(SolverContextFactory.Solvers, Configuration, SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.SolverContextFactory.Solvers,org.sosy_lab.common.configuration.Configuration,org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"DebuggingStringFormulaManager(StringFormulaManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.StringFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"DebuggingUFManager(UFManager, DebuggingAssertions)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.UFManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"decimalAsInteger(BigDecimal)","url":"decimalAsInteger(java.math.BigDecimal)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"declareAndCallUF(String, FormulaType<T>, Formula...)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"declareAndCallUF(String, FormulaType<T>, Formula...)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"declareAndCallUF(String, FormulaType<T>, Formula...)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"declareAndCallUF(String, FormulaType<T>, List<Formula>)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"declareAndCallUF(String, FormulaType<T>, List<Formula>)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"declareAndCallUF(String, FormulaType<T>, List<Formula>)","url":"declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"EnumerationFormulaManager","l":"declareEnumeration(String, Set<String>)","url":"declareEnumeration(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"declareEnumeration(String, Set<String>)","url":"declareEnumeration(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingEnumerationFormulaManager","l":"declareEnumeration(String, Set<String>)","url":"declareEnumeration(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsEnumerationFormulaManager","l":"declareEnumeration(String, Set<String>)","url":"declareEnumeration(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedEnumerationFormulaManager","l":"declareEnumeration(String, Set<String>)","url":"declareEnumeration(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.api","c":"EnumerationFormulaManager","l":"declareEnumeration(String, String...)","url":"declareEnumeration(java.lang.String,java.lang.String...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"declareEnumeration0(FormulaType.EnumerationFormulaType)","url":"declareEnumeration0(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"declareEnumerationImpl(String, Set<String>)","url":"declareEnumerationImpl(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"declareUF(String, FormulaType<T>, FormulaType<?>...)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"declareUF(String, FormulaType<T>, FormulaType<?>...)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"declareUF(String, FormulaType<T>, FormulaType<?>...)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)"},{"p":"org.sosy_lab.java_smt.api","c":"UFManager","l":"declareUF(String, FormulaType<T>, List<FormulaType<?>>)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUFManager","l":"declareUF(String, FormulaType<T>, List<FormulaType<?>>)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingUFManager","l":"declareUF(String, FormulaType<T>, List<FormulaType<?>>)","url":"declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"declareUFImpl(String, TType, List<TType>)","url":"declareUFImpl(java.lang.String,TType,java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"DefaultBooleanFormulaVisitor()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"DefaultFormulaVisitor()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"delegate"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"dequote(String)","url":"dequote(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"difference(RegexFormula, RegexFormula)","url":"difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"difference(RegexFormula, RegexFormula)","url":"difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"difference(RegexFormula, RegexFormula)","url":"difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"difference(TFormulaInfo, TFormulaInfo)","url":"difference(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"DISALLOWED_CHARACTER_REPLACEMENT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"DISTINCT"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"distinct(List<BitvectorFormula>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"distinct(List<BitvectorFormula>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"distinct(List<BitvectorFormula>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"distinct(List<ParamFormulaType>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"distinct(List<ParamFormulaType>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"distinct(List<ParamFormulaType>)","url":"distinct(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"distinctImpl(List<TFormulaInfo>)","url":"distinctImpl(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"distinctImpl(List<TFormulaInfo>)","url":"distinctImpl(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"DIV"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"divide(BitvectorFormula, BitvectorFormula, boolean)","url":"divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"divide(BitvectorFormula, BitvectorFormula, boolean)","url":"divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"divide(BitvectorFormula, BitvectorFormula, boolean)","url":"divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"divide(FloatingPointFormula, FloatingPointFormula)","url":"divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"divide(ParamFormulaType, ParamFormulaType)","url":"divide(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"divide(ParamFormulaType, ParamFormulaType)","url":"divide(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"divide(ParamFormulaType, ParamFormulaType)","url":"divide(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"divide(TFormulaInfo, TFormulaInfo, boolean)","url":"divide(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"divide(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"divide(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"divide(TFormulaInfo, TFormulaInfo)","url":"divide(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"DOUBLE_PRECISION_EXPONENT_SIZE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"DOUBLE_PRECISION_MANTISSA_SIZE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"doubleValue()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"dualStackGlobalDeclarations()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"dualStackTest()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"dualStackTest2()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"dumpFormula(BooleanFormula)","url":"dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"dumpFormula(BooleanFormula)","url":"dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"dumpFormula(BooleanFormula)","url":"dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"dumpFormulaImpl(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"eliminateQuantifiers(BooleanFormula)","url":"eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractQuantifiedFormulaManager","l":"eliminateQuantifiers(BooleanFormula)","url":"eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingQuantifiedFormulaManager","l":"eliminateQuantifiers(BooleanFormula)","url":"eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractQuantifiedFormulaManager","l":"eliminateQuantifiers(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination","l":"eliminateUfs(BooleanFormula, UfElimination.Result)","url":"eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.utils.UfElimination.Result)"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination","l":"eliminateUfs(BooleanFormula)","url":"eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"emgr"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination.Result","l":"empty(FormulaManager)","url":"empty(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"ENABLE_SEPARATION_LOGIC"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"enableSL"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulate(FormulaType<T>, TFormulaInfo)","url":"encapsulate(org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateArray(TFormulaInfo, FormulaType<TI>, FormulaType<TE>)","url":"encapsulateArray(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateBitvector(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateBoolean(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateEnumeration(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateFloatingPoint(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateRegex(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateString(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"encapsulateWithTypeOf(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku.EnumerationBasedSudokuSolver","l":"EnumerationBasedSudokuSolver(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"enumerations"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager.EnumType","l":"EnumType(FormulaType.EnumerationFormulaType, TType, ImmutableMap<String, TFormulaInfo>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType,TType,com.google.common.collect.ImmutableMap)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"environment"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"EQ"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"EQ_ZERO"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"equal(BitvectorFormula, BitvectorFormula)","url":"equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"equal(BitvectorFormula, BitvectorFormula)","url":"equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"equal(BitvectorFormula, BitvectorFormula)","url":"equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"equal(ParamFormulaType, ParamFormulaType)","url":"equal(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"equal(ParamFormulaType, ParamFormulaType)","url":"equal(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"equal(ParamFormulaType, ParamFormulaType)","url":"equal(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"equal(StringFormula, StringFormula)","url":"equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"equal(StringFormula, StringFormula)","url":"equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"equal(StringFormula, StringFormula)","url":"equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"equal(TFormulaInfo, TFormulaInfo)","url":"equal(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"equal(TFormulaInfo, TFormulaInfo)","url":"equal(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"equal(TFormulaInfo, TFormulaInfo)","url":"equal(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"Formula","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"equals(Object)","url":"equals(java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)","url":"equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)","url":"equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"equalWithFPSemantics(FloatingPointFormula, FloatingPointFormula)","url":"equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"equalWithFPSemantics(TFormulaInfo, TFormulaInfo)","url":"equalWithFPSemantics(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"equivalence(ArrayFormula<TI, TE>, ArrayFormula<TI, TE>)","url":"equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"equivalence(ArrayFormula<TI, TE>, ArrayFormula<TI, TE>)","url":"equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"equivalence(ArrayFormula<TI, TE>, ArrayFormula<TI, TE>)","url":"equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"equivalence(BooleanFormula, BooleanFormula)","url":"equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"equivalence(BooleanFormula, BooleanFormula)","url":"equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"equivalence(BooleanFormula, BooleanFormula)","url":"equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"EnumerationFormulaManager","l":"equivalence(EnumerationFormula, EnumerationFormula)","url":"equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"equivalence(EnumerationFormula, EnumerationFormula)","url":"equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingEnumerationFormulaManager","l":"equivalence(EnumerationFormula, EnumerationFormula)","url":"equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsEnumerationFormulaManager","l":"equivalence(EnumerationFormula, EnumerationFormula)","url":"equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedEnumerationFormulaManager","l":"equivalence(EnumerationFormula, EnumerationFormula)","url":"equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"equivalence(TFormulaInfo, TFormulaInfo)","url":"equivalence(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"equivalence(TFormulaInfo, TFormulaInfo)","url":"equivalence(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"equivalenceImpl(TFormulaInfo, TFormulaInfo)","url":"equivalenceImpl(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"escape(String)","url":"escape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"escape(String)","url":"escape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"escape(String)","url":"escape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"eval(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"eval(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"eval(T)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"eval(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evalImpl(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(BitvectorFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(BitvectorFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(BitvectorFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(BitvectorFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(BooleanFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(BooleanFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(BooleanFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(BooleanFormula)","url":"evaluate(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(EnumerationFormula)","url":"evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(EnumerationFormula)","url":"evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(EnumerationFormula)","url":"evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(EnumerationFormula)","url":"evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(FloatingPointFormula)","url":"evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(FloatingPointFormula)","url":"evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(FloatingPointFormula)","url":"evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(FloatingPointFormula)","url":"evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(Formula)","url":"evaluate(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(Formula)","url":"evaluate(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(Formula)","url":"evaluate(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(Formula)","url":"evaluate(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(NumeralFormula.IntegerFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(NumeralFormula.IntegerFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(NumeralFormula.IntegerFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(NumeralFormula.IntegerFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(NumeralFormula.RationalFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(NumeralFormula.RationalFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(NumeralFormula.RationalFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(NumeralFormula.RationalFormula)","url":"evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"Evaluator","l":"evaluate(StringFormula)","url":"evaluate(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluate(StringFormula)","url":"evaluate(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"evaluate(StringFormula)","url":"evaluate(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingModel","l":"evaluate(StringFormula)","url":"evaluate(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"evaluateImpl(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"evaluateInModel(BooleanFormula, Formula, Collection<Object>, Collection<Formula>)","url":"evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager.Quantifier","l":"EXISTS"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"exists(Formula, BooleanFormula)","url":"exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"exists(List<? extends Formula>, BooleanFormula)","url":"exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"ExpectedFormulaVisitor","l":"ExpectedFormulaVisitor()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"extend(BitvectorFormula, int, boolean)","url":"extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"extend(BitvectorFormula, int, boolean)","url":"extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"extend(BitvectorFormula, int, boolean)","url":"extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"extend(TFormulaInfo, int, boolean)","url":"extend(TFormulaInfo,int,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"extract(BitvectorFormula, int, int)","url":"extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"extract(BitvectorFormula, int, int)","url":"extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"extract(BitvectorFormula, int, int)","url":"extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"extract(TFormulaInfo, int, int)","url":"extract(TFormulaInfo,int,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"extractInfo(Formula)","url":"extractInfo(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"extractInfo(Formula)","url":"extractInfo(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"extractInfo(List<? extends Formula>)","url":"extractInfo(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"extractVariables(Formula)","url":"extractVariables(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"extractVariables(Formula)","url":"extractVariables(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"extractVariables(Formula)","url":"extractVariables(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"extractVariablesAndUFs(Formula, boolean, BiConsumer<String, Formula>)","url":"extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"extractVariablesAndUFs(Formula)","url":"extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"extractVariablesAndUFs(Formula)","url":"extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"extractVariablesAndUFs(Formula)","url":"extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"extractVariablesAndUFs(TFormulaInfo, boolean, BiConsumer<String, TFormulaInfo>)","url":"extractVariablesAndUFs(TFormulaInfo,boolean,java.util.function.BiConsumer)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"extractVariablesAndUFs(TFormulaInfo, boolean)","url":"extractVariablesAndUFs(TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"factory"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"fixedCount"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"fixedVariables"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"FloatingPointNumber()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"FloatingPointRoundingModeType"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"floatValue()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FLOOR"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"floor(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"floor(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"floor(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"floor(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"fmgr"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager.Quantifier","l":"FORALL"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"forall(Formula, BooleanFormula)","url":"forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"forall(List<? extends Formula>, BooleanFormula)","url":"forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.example","c":"FormulaClassifier","l":"FormulaClassifier(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"FormulaCreator(TEnv, TType, TType, TType, TType, TType)","url":"%3Cinit%3E(TEnv,TType,TType,TType,TType,TType)"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter","l":"formulaToDot(Formula, PrettyPrinter.PrinterOption...)","url":"formulaToDot(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter","l":"formulaToString(Formula, PrettyPrinter.PrinterOption...)","url":"formulaToString(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"FormulaTransformationVisitor(FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ABS"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ADD"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_AS_IEEEBV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_CASTTO_FP"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_CASTTO_SBV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_CASTTO_UBV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_DIV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_EQ"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_FROM_IEEEBV"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_GE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_GT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_INF"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_NAN"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_NEGATIVE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_NORMAL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_SUBNORMAL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_IS_ZERO"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_LE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_LT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_MAX"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_MIN"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_MUL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_NEG"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_REM"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_AWAY"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_EVEN"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_NEGATIVE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_POSITIVE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_TO_INTEGRAL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_ROUND_ZERO"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_SQRT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"FP_SUB"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"fpmgr"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)","url":"fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)","url":"fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"fromIeeeBitvector(BitvectorFormula, FormulaType.FloatingPointType)","url":"fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"fromIeeeBitvectorImpl(TFormulaInfo, FormulaType.FloatingPointType)","url":"fromIeeeBitvectorImpl(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"fromString(String)","url":"fromString(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FunctionDeclarationImpl","l":"FunctionDeclarationImpl()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"GENERATE_ALL_SAT"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"GENERATE_MODELS"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"GENERATE_UNSAT_CORE"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"generateContext()"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"generateContext(SolverContextFactory.Solvers)","url":"generateContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"generateUnsatCores"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0.ParameterizedSolverBasedTest0","l":"getAllSolvers()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getArgInterpretation(int)"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getArgumentsInterpretation()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclaration","l":"getArgumentTypes()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getArity()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getArrayFormulaElementType(ArrayFormula<TI, TE>)","url":"getArrayFormulaElementType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getArrayFormulaIndexType(ArrayFormula<TI, TE>)","url":"getArrayFormulaIndexType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getArrayFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getArrayFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getArrayFormulaManager()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getArrayType(FormulaType<TD>, FormulaType<TR>)","url":"getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getArrayType(TType, TType)","url":"getArrayType(TType,TType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"getAssertedConstraintIds()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"getAssertedFormulas()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getAssignmentAsFormula()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"getBackend()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getBitvectorFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getBitvectorFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getBitvectorFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getBitvectorType(int)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getBitvectorTypeWithSize(int)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getBooleanFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getBooleanFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getBooleanFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getBooleanVarDeclaration(BooleanFormula)","url":"getBooleanVarDeclaration(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getBooleanVarDeclarationImpl(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getBoolType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"getBvRepresentation(BigInteger, int)","url":"getBvRepresentation(java.math.BigInteger,int)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"getCardinality()"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination.Result","l":"getConstraints()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"getDefaultRoundingMode()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getDoublePrecisionFloatingPointType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"getElements()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"getElementType()"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"getElementType(ArrayFormula<?, TE>)","url":"getElementType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"getElementType(ArrayFormula<?, TE>)","url":"getElementType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"getElementType(ArrayFormula<?, TE>)","url":"getElementType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getEnumerationFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getEnumerationFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getEnumerationFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager.EnumType","l":"getEnumerationFormulaType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getEnumerationType(String, Set<String>)","url":"getEnumerationType(java.lang.String,java.util.Set)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getEnv()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getEnvironment()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"getEvaluator()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProverWithAllSat","l":"getEvaluatorWithoutChecks()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"getExponent()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"getExponentSize()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"getExponentSize()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.SolverInfo","l":"getFeatures()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getFloatingPointFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getFloatingPointFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getFloatingPointFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getFloatingPointType(FormulaType.FloatingPointType)","url":"getFloatingPointType(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getFloatingPointType(int, int)","url":"getFloatingPointType(int,int)"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination.Result","l":"getFormula()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getFormulaCreator()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"getFormulaManager()"},{"p":"org.sosy_lab.java_smt.api","c":"IntegerFormulaManager","l":"getFormulaType()"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"getFormulaType()"},{"p":"org.sosy_lab.java_smt.api","c":"RationalFormulaManager","l":"getFormulaType()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"getFormulaType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getFormulaType(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getFormulaType(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getFormulaType(T)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getFormulaType(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getFormulaType(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverInformation","l":"getGlobalFunctionsForSolver(SolverContextFactory.Solvers)","url":"getGlobalFunctionsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverInformation","l":"getGlobalTermsForSolver(SolverContextFactory.Solvers)","url":"getGlobalTermsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"getIndexType()"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"getIndexType(ArrayFormula<TI, ?>)","url":"getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"getIndexType(ArrayFormula<TI, ?>)","url":"getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"getIndexType(ArrayFormula<TI, ?>)","url":"getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getIntegerFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getIntegerFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getIntegerFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getIntegerType()"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"getInterpolant(Collection<T>)","url":"getInterpolant(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"getInterpolant(Collection<T>)","url":"getInterpolant(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingInterpolatingProverEnvironment","l":"getInterpolant(Collection<T>)","url":"getInterpolant(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getKey()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclaration","l":"getKind()"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"getLength(BitvectorFormula)","url":"getLength(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"getLength(BitvectorFormula)","url":"getLength(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"getLength(BitvectorFormula)","url":"getLength(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"getMantissa()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"getMantissaSize()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"getMantissaSize()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"getMaxTime()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getMaxTimeOfAllSatQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getMaxTimeOfInterpolationQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getMaxTimeOfIsUnsatQueries()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"getModel()"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"getModel()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"getModel()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"getModelAssignments()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"getModelAssignments()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"getName()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclaration","l":"getName()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getName()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.SolverInfo","l":"getName()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"getNewTimer()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfAddConstraintQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfAllSatQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfArrayOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfBooleanOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfBVOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfFPOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfInterpolationQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"getNumberOfIntervals()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfIsUnsatQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfModelEvaluationQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfModelListings()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfModelQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfNumericOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfPopQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfProverEnvironments()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfPushQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfQuantifierOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfSLOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfStringOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfUFOperations()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfUnsatCoreQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getNumberOfVisits()"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"getNumOfSolutions()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getQuantifiedFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getQuantifiedFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getQuantifiedFormulaManager()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getRationalFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getRationalFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getRationalFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getRationalType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getRegexType()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment.AllSatCallback","l":"getResult()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"getRoundingModeImpl(FloatingPointRoundingMode)","url":"getRoundingModeImpl(org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"getSeqInterpolants(List<? extends Collection<T>>)","url":"getSeqInterpolants(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"getSeqInterpolants(List<? extends Collection<T>>)","url":"getSeqInterpolants(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingInterpolatingProverEnvironment","l":"getSeqInterpolants(List<? extends Collection<T>>)","url":"getSeqInterpolants(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"getSeqInterpolants0(List<T>)","url":"getSeqInterpolants0(java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"getSign()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"getSinglePrecisionFloatingPointType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"getSize()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getSLFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getSLFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getSLFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FunctionDeclarationImpl","l":"getSolverDeclaration()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable","l":"getSolverInformation(SolverContextFactory.Solvers)","url":"getSolverInformation(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"getSolverName()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"getSolverName()"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"getSolverName()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"getSolverName()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"getSolverName()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"getSolverStatistics()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"getStatistics()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getStringFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getStringFormulaManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getStringFormulaManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"getStringType()"},{"p":"org.sosy_lab.java_smt.utils","c":"UfElimination.Result","l":"getSubstitution()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"getSumTime()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getSumTimeOfAllSatQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getSumTimeOfInterpolationQueries()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"SolverStatistics","l":"getSumTimeOfIsUnsatQueries()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.SolverInfo","l":"getTheories()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"getTotalSize()"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"getTreeInterpolants(List<? extends Collection<T>>, int[])","url":"getTreeInterpolants(java.util.List,int[])"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"getTreeInterpolants(List<? extends Collection<T>>, int[])","url":"getTreeInterpolants(java.util.List,int[])"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingInterpolatingProverEnvironment","l":"getTreeInterpolants(List<? extends Collection<T>>, int[])","url":"getTreeInterpolants(java.util.List,int[])"},{"p":"org.sosy_lab.java_smt.api","c":"InterpolatingProverEnvironment","l":"getTreeInterpolants0(List<T>, int[])","url":"getTreeInterpolants0(java.util.List,int[])"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclaration","l":"getType()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"getType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"getUFManager()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"getUFManager()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"getUFManager()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"getUnsatCore()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"getUnsatCore()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getValue()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"getValueAsFormula()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.SolverInfo","l":"getVersion()"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"greaterOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"greaterOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"greaterOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"greaterOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"greaterOrEquals(ParamFormulaType, ParamFormulaType)","url":"greaterOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"greaterOrEquals(ParamFormulaType, ParamFormulaType)","url":"greaterOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"greaterOrEquals(ParamFormulaType, ParamFormulaType)","url":"greaterOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"greaterOrEquals(StringFormula, StringFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"greaterOrEquals(StringFormula, StringFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"greaterOrEquals(StringFormula, StringFormula)","url":"greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"greaterOrEquals(TFormulaInfo, TFormulaInfo, boolean)","url":"greaterOrEquals(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"greaterOrEquals(TFormulaInfo, TFormulaInfo)","url":"greaterOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"greaterOrEquals(TFormulaInfo, TFormulaInfo)","url":"greaterOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"greaterOrEquals(TFormulaInfo, TFormulaInfo)","url":"greaterOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"greaterThan(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"greaterThan(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"greaterThan(BitvectorFormula, BitvectorFormula, boolean)","url":"greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"greaterThan(FloatingPointFormula, FloatingPointFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"greaterThan(FloatingPointFormula, FloatingPointFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"greaterThan(FloatingPointFormula, FloatingPointFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"greaterThan(ParamFormulaType, ParamFormulaType)","url":"greaterThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"greaterThan(ParamFormulaType, ParamFormulaType)","url":"greaterThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"greaterThan(ParamFormulaType, ParamFormulaType)","url":"greaterThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"greaterThan(StringFormula, StringFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"greaterThan(StringFormula, StringFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"greaterThan(StringFormula, StringFormula)","url":"greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"greaterThan(TFormulaInfo, TFormulaInfo, boolean)","url":"greaterThan(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"greaterThan(TFormulaInfo, TFormulaInfo)","url":"greaterThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"greaterThan(TFormulaInfo, TFormulaInfo)","url":"greaterThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"greaterThan(TFormulaInfo, TFormulaInfo)","url":"greaterThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"GT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"GTE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"GTE_ZERO"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager.EnumType","l":"hasConstants(String)","url":"hasConstants(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"Formula","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"hashCode()"},{"p":"org.sosy_lab.java_smt.example","c":"HoudiniApp","l":"houdini(List<BooleanFormula>, BooleanFormula)","url":"houdini(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.example","c":"HoudiniApp","l":"HoudiniApp(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"IFF"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"ifThenElse(BooleanFormula, T, T)","url":"ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"ifThenElse(BooleanFormula, T, T)","url":"ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"ifThenElse(BooleanFormula, T, T)","url":"ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"ifThenElse(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"ifThenElse(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"imgr"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"implication(BooleanFormula, BooleanFormula)","url":"implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"implication(BooleanFormula, BooleanFormula)","url":"implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"implication(BooleanFormula, BooleanFormula)","url":"implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"implication(TFormulaInfo, TFormulaInfo)","url":"implication(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"IMPLIES"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"implies(BooleanFormula)","url":"implies(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"in(StringFormula, RegexFormula)","url":"in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"in(StringFormula, RegexFormula)","url":"in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"in(StringFormula, RegexFormula)","url":"in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"in(TFormulaInfo, TFormulaInfo)","url":"in(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)","url":"indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)","url":"indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"indexOf(StringFormula, StringFormula, NumeralFormula.IntegerFormula)","url":"indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"indexOf(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"indexOf(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"initializeWithBackend(PropagatorBackend)","url":"initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"initializeWithBackend(PropagatorBackend)","url":"initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"initializeWithBackend(PropagatorBackend)","url":"initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"initSolver()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"INT_TO_STR"},{"p":"org.sosy_lab.java_smt.example","c":"Binoxxo.IntegerBasedBinoxxoSolver","l":"IntegerBasedBinoxxoSolver(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku.IntegerBasedSudokuSolver","l":"IntegerBasedSudokuSolver(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"IntegerType"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"internalMakeArray(FormulaType<TI>, FormulaType<TE>, TFormulaInfo)","url":"internalMakeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"internalMakeArray(String, FormulaType<TI>, FormulaType<TE>)","url":"internalMakeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"InterpolatingProverWithAssumptionsWrapper(InterpolatingProverEnvironment<T>, FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"intersection(RegexFormula, RegexFormula)","url":"intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"intersection(RegexFormula, RegexFormula)","url":"intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"intersection(RegexFormula, RegexFormula)","url":"intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"intersection(TFormulaInfo, TFormulaInfo)","url":"intersection(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isArrayType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"isArrayType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isAssertToken(String)","url":"isAssertToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isBitvectorType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"isBitvectorType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isBooleanType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEvaluator","l":"isClosed()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"isCompatible(FormulaType<?>, FormulaType<?>)","url":"isCompatible(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isDeclarationToken(String)","url":"isDeclarationToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isDefinitionToken(String)","url":"isDefinitionToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isEnumerationType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"isEnumerationType()"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"isEquisatisfiableTo(BooleanFormula)","url":"isEquisatisfiableTo(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"isEquivalentTo(BooleanFormula)","url":"isEquivalentTo(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isExitToken(String)","url":"isExitToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"isFalse(BooleanFormula)","url":"isFalse(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"isFalse(BooleanFormula)","url":"isFalse(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"isFalse(BooleanFormula)","url":"isFalse(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"isFalse(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isFloatingPointRoundingModeType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isFloatingPointType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"isFloatingPointType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isForbiddenToken(String)","url":"isForbiddenToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"isFunction()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isInfinity(FloatingPointFormula)","url":"isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isInfinity(FloatingPointFormula)","url":"isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isInfinity(FloatingPointFormula)","url":"isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isInfinity(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isIntegerType()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isNaN(FloatingPointFormula)","url":"isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNaN(FloatingPointFormula)","url":"isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isNaN(FloatingPointFormula)","url":"isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNaN(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isNegative(FloatingPointFormula)","url":"isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNegative(FloatingPointFormula)","url":"isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isNegative(FloatingPointFormula)","url":"isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNegative(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNegativeZero(Double)","url":"isNegativeZero(java.lang.Double)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isNormal(FloatingPointFormula)","url":"isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNormal(FloatingPointFormula)","url":"isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isNormal(FloatingPointFormula)","url":"isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isNormal(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"isNumeral(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isNumeralType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.NumeralType","l":"isNumeralType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isPopToken(String)","url":"isPopToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isPushToken(String)","url":"isPushToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isRationalType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isRegexType()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isResetAssertionsToken(String)","url":"isResetAssertionsToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isResetToken(String)","url":"isResetToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"isSatisfiable()"},{"p":"org.sosy_lab.java_smt.test","c":"ProverEnvironmentSubject","l":"isSatisfiable()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"isSetLogicToken(String)","url":"isSetLogicToken(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isSLType()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"isStringType()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isSubnormal(FloatingPointFormula)","url":"isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isSubnormal(FloatingPointFormula)","url":"isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isSubnormal(FloatingPointFormula)","url":"isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isSubnormal(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"isTautological()"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"isTrue(BooleanFormula)","url":"isTrue(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"isTrue(BooleanFormula)","url":"isTrue(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"isTrue(BooleanFormula)","url":"isTrue(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"isTrue(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"isUnsat()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"isUnsat()"},{"p":"org.sosy_lab.java_smt.test","c":"BooleanFormulaSubject","l":"isUnsatisfiable()"},{"p":"org.sosy_lab.java_smt.test","c":"ProverEnvironmentSubject","l":"isUnsatisfiable()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"isUnsatWithAssumptions(Collection<BooleanFormula>)","url":"isUnsatWithAssumptions(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"isUnsatWithAssumptions(Collection<BooleanFormula>)","url":"isUnsatWithAssumptions(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"isValidName(String)","url":"isValidName(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"isValidName(String)","url":"isValidName(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"isValidName(String)","url":"isValidName(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"isZero(FloatingPointFormula)","url":"isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isZero(FloatingPointFormula)","url":"isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"isZero(FloatingPointFormula)","url":"isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"isZero(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"ITE"},{"p":"org.sosy_lab.java_smt.api","c":"Model","l":"iterator()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"largerStackUsageTest()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"largeStackUsageTest()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"length(StringFormula)","url":"length(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"length(StringFormula)","url":"length(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"length(StringFormula)","url":"length(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"length(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"lessOrEquals(BitvectorFormula, BitvectorFormula, boolean)","url":"lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"lessOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"lessOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"lessOrEquals(FloatingPointFormula, FloatingPointFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"lessOrEquals(ParamFormulaType, ParamFormulaType)","url":"lessOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"lessOrEquals(ParamFormulaType, ParamFormulaType)","url":"lessOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"lessOrEquals(ParamFormulaType, ParamFormulaType)","url":"lessOrEquals(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"lessOrEquals(StringFormula, StringFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"lessOrEquals(StringFormula, StringFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"lessOrEquals(StringFormula, StringFormula)","url":"lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"lessOrEquals(TFormulaInfo, TFormulaInfo, boolean)","url":"lessOrEquals(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"lessOrEquals(TFormulaInfo, TFormulaInfo)","url":"lessOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"lessOrEquals(TFormulaInfo, TFormulaInfo)","url":"lessOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"lessOrEquals(TFormulaInfo, TFormulaInfo)","url":"lessOrEquals(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"lessThan(BitvectorFormula, BitvectorFormula, boolean)","url":"lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"lessThan(BitvectorFormula, BitvectorFormula, boolean)","url":"lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"lessThan(BitvectorFormula, BitvectorFormula, boolean)","url":"lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"lessThan(FloatingPointFormula, FloatingPointFormula)","url":"lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"lessThan(FloatingPointFormula, FloatingPointFormula)","url":"lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"lessThan(FloatingPointFormula, FloatingPointFormula)","url":"lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"lessThan(ParamFormulaType, ParamFormulaType)","url":"lessThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"lessThan(ParamFormulaType, ParamFormulaType)","url":"lessThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"lessThan(ParamFormulaType, ParamFormulaType)","url":"lessThan(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"lessThan(StringFormula, StringFormula)","url":"lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"lessThan(StringFormula, StringFormula)","url":"lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"lessThan(StringFormula, StringFormula)","url":"lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"lessThan(TFormulaInfo, TFormulaInfo, boolean)","url":"lessThan(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"lessThan(TFormulaInfo, TFormulaInfo)","url":"lessThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"lessThan(TFormulaInfo, TFormulaInfo)","url":"lessThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"lessThan(TFormulaInfo, TFormulaInfo)","url":"lessThan(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"loadLibrariesWithFallback(Consumer<String>, List<String>, List<String>)","url":"loadLibrariesWithFallback(java.util.function.Consumer,java.util.List,java.util.List)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"logger"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"LoggingSolverContext(LogManager, SolverContext)","url":"%3Cinit%3E(org.sosy_lab.common.log.LogManager,org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"logicToUse()"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"lower(int, Rational)","url":"lower(int,org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"lower(int, Rational)","url":"lower(int,org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"LT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"LTE"},{"p":"org.sosy_lab.java_smt.example","c":"AllSatExample","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"Binoxxo","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"FormulaClassifier","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"HoudiniApp","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"Interpolation","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"NQueens","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"OptimizationFormulaWeights","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"OptimizationIntReal","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"PrettyPrinter","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueens","l":"main(String...)","url":"main(java.lang.String...)"},{"p":"org.sosy_lab.java_smt.example","c":"SimpleUserPropagator","l":"main(String[])","url":"main(java.lang.String[])"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable","l":"main(String[])","url":"main(java.lang.String[])"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"makeApplication(FunctionDeclaration<T>, Formula...)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"makeApplication(FunctionDeclaration<T>, Formula...)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"makeApplication(FunctionDeclaration<T>, Formula...)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"makeApplication(FunctionDeclaration<T>, List<? extends Formula>)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"makeApplication(FunctionDeclaration<T>, List<? extends Formula>)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"makeApplication(FunctionDeclaration<T>, List<? extends Formula>)","url":"makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"makeArray(FormulaType.ArrayFormulaType<TI, TE>, TE)","url":"makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"makeArray(FTI, FTE, TE)","url":"makeArray(FTI,FTE,TE)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"makeArray(FTI, FTE, TE)","url":"makeArray(FTI,FTE,TE)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"makeArray(FTI, FTE, TE)","url":"makeArray(FTI,FTE,TE)"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"makeArray(String, FormulaType.ArrayFormulaType<TI, TE>)","url":"makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"makeArray(String, FormulaType.ArrayFormulaType<TI, TE>)","url":"makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"makeArray(String, FTI, FTE)","url":"makeArray(java.lang.String,FTI,FTE)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"makeArray(String, FTI, FTE)","url":"makeArray(java.lang.String,FTI,FTE)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"makeArray(String, FTI, FTE)","url":"makeArray(java.lang.String,FTI,FTE)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"makeBitvector(int, BigInteger)","url":"makeBitvector(int,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvector(int, BigInteger)","url":"makeBitvector(int,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"makeBitvector(int, BigInteger)","url":"makeBitvector(int,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"makeBitvector(int, long)","url":"makeBitvector(int,long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvector(int, long)","url":"makeBitvector(int,long)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"makeBitvector(int, long)","url":"makeBitvector(int,long)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"makeBitvector(int, NumeralFormula.IntegerFormula)","url":"makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvector(int, NumeralFormula.IntegerFormula)","url":"makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"makeBitvector(int, NumeralFormula.IntegerFormula)","url":"makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvectorImpl(int, BigInteger)","url":"makeBitvectorImpl(int,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvectorImpl(int, long)","url":"makeBitvectorImpl(int,long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeBitvectorImpl(int, TFormulaInfo)","url":"makeBitvectorImpl(int,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"makeBoolean(boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"makeBooleanImpl(boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"EnumerationFormulaManager","l":"makeConstant(String, FormulaType.EnumerationFormulaType)","url":"makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"makeConstant(String, FormulaType.EnumerationFormulaType)","url":"makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingEnumerationFormulaManager","l":"makeConstant(String, FormulaType.EnumerationFormulaType)","url":"makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsEnumerationFormulaManager","l":"makeConstant(String, FormulaType.EnumerationFormulaType)","url":"makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedEnumerationFormulaManager","l":"makeConstant(String, FormulaType.EnumerationFormulaType)","url":"makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"makeConstantImpl(String, FormulaType.EnumerationFormulaType)","url":"makeConstantImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"SLFormulaManager","l":"makeEmptyHeap(AT, VT)","url":"makeEmptyHeap(AT,VT)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeEmptyHeap(AT, VT)","url":"makeEmptyHeap(AT,VT)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"makeEmptyHeap(AT, VT)","url":"makeEmptyHeap(AT,VT)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeEmptyHeap(TType, TType)","url":"makeEmptyHeap(TType,TType)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"makeFalse()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"makeFalse()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"makeFalse()"},{"p":"org.sosy_lab.java_smt.api","c":"SLFormulaManager","l":"makeMagicWand(BooleanFormula, BooleanFormula)","url":"makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeMagicWand(BooleanFormula, BooleanFormula)","url":"makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"makeMagicWand(BooleanFormula, BooleanFormula)","url":"makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeMagicWand(TFormulaInfo, TFormulaInfo)","url":"makeMagicWand(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeMinusInfinity(FormulaType.FloatingPointType)","url":"makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeMinusInfinity(FormulaType.FloatingPointType)","url":"makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeMinusInfinity(FormulaType.FloatingPointType)","url":"makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeMinusInfinityImpl(FormulaType.FloatingPointType)","url":"makeMinusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNaN(FormulaType.FloatingPointType)","url":"makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNaN(FormulaType.FloatingPointType)","url":"makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNaN(FormulaType.FloatingPointType)","url":"makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNaNImpl(FormulaType.FloatingPointType)","url":"makeNaNImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"SLFormulaManager","l":"makeNilElement(AT)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeNilElement(AT)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"makeNilElement(AT)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeNilElement(TType)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(BigDecimal, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(BigDecimal)","url":"makeNumber(java.math.BigDecimal)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(BigDecimal)","url":"makeNumber(java.math.BigDecimal)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(BigDecimal)","url":"makeNumber(java.math.BigDecimal)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)","url":"makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(BigInteger)","url":"makeNumber(java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(BigInteger)","url":"makeNumber(java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(BigInteger)","url":"makeNumber(java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(double, FormulaType.FloatingPointType)","url":"makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(double)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(double)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(double)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(long)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(long)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(Rational, FormulaType.FloatingPointType)","url":"makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(Rational)","url":"makeNumber(org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(Rational)","url":"makeNumber(org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(Rational)","url":"makeNumber(org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType, FloatingPointRoundingMode)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeNumber(String, FormulaType.FloatingPointType)","url":"makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeNumber(String)","url":"makeNumber(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumber(String)","url":"makeNumber(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeNumber(String)","url":"makeNumber(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumberAndRound(String, FormulaType.FloatingPointType, TFormulaInfo)","url":"makeNumberAndRound(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumberImpl(BigDecimal, FormulaType.FloatingPointType, TFormulaInfo)","url":"makeNumberImpl(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(BigDecimal)","url":"makeNumberImpl(java.math.BigDecimal)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumberImpl(BigInteger, BigInteger, boolean, FormulaType.FloatingPointType)","url":"makeNumberImpl(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(BigInteger)","url":"makeNumberImpl(java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumberImpl(double, FormulaType.FloatingPointType, TFormulaInfo)","url":"makeNumberImpl(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(double)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(Rational)","url":"makeNumberImpl(org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeNumberImpl(String, FormulaType.FloatingPointType, TFormulaInfo)","url":"makeNumberImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeNumberImpl(String)","url":"makeNumberImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makePlusInfinity(FormulaType.FloatingPointType)","url":"makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makePlusInfinity(FormulaType.FloatingPointType)","url":"makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makePlusInfinity(FormulaType.FloatingPointType)","url":"makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makePlusInfinityImpl(FormulaType.FloatingPointType)","url":"makePlusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"SLFormulaManager","l":"makePointsTo(AF, VF)","url":"makePointsTo(AF,VF)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"makePointsTo(AF, VF)","url":"makePointsTo(AF,VF)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makePointsTo(Formula, Formula)","url":"makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makePointsTo(TFormulaInfo, TFormulaInfo)","url":"makePointsTo(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"makeRegex(String)","url":"makeRegex(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeRegex(String)","url":"makeRegex(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"makeRegex(String)","url":"makeRegex(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeRegexImpl(String)","url":"makeRegexImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"SLFormulaManager","l":"makeStar(BooleanFormula, BooleanFormula)","url":"makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeStar(BooleanFormula, BooleanFormula)","url":"makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSLFormulaManager","l":"makeStar(BooleanFormula, BooleanFormula)","url":"makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSLFormulaManager","l":"makeStar(TFormulaInfo, TFormulaInfo)","url":"makeStar(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"makeString(String)","url":"makeString(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeString(String)","url":"makeString(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"makeString(String)","url":"makeString(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeStringImpl(String)","url":"makeStringImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"makeTrue()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"makeTrue()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"makeTrue()"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"makeVariable(FormulaType.BitvectorType, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeVariable(FormulaType.BitvectorType, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"makeVariable(FormulaType.BitvectorType, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"makeVariable(FormulaType<T>, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"makeVariable(FormulaType<T>, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"makeVariable(FormulaType<T>, String)","url":"makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"makeVariable(int, String)","url":"makeVariable(int,java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeVariable(int, String)","url":"makeVariable(int,java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"makeVariable(int, String)","url":"makeVariable(int,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"EnumerationFormulaManager","l":"makeVariable(String, FormulaType.EnumerationFormulaType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"makeVariable(String, FormulaType.EnumerationFormulaType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingEnumerationFormulaManager","l":"makeVariable(String, FormulaType.EnumerationFormulaType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsEnumerationFormulaManager","l":"makeVariable(String, FormulaType.EnumerationFormulaType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedEnumerationFormulaManager","l":"makeVariable(String, FormulaType.EnumerationFormulaType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"makeVariable(String, FormulaType.FloatingPointType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeVariable(String, FormulaType.FloatingPointType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"makeVariable(String, FormulaType.FloatingPointType)","url":"makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"makeVariable(String)","url":"makeVariable(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"makeVariable(TType, String)","url":"makeVariable(TType,java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"makeVariableImpl(int, String)","url":"makeVariableImpl(int,java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractEnumerationFormulaManager","l":"makeVariableImpl(String, FormulaType.EnumerationFormulaType)","url":"makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"makeVariableImpl(String, FormulaType.FloatingPointType)","url":"makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"makeVariableImpl(String)","url":"makeVariableImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"makeVariableImpl(String)","url":"makeVariableImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"makeVariableImpl(String)","url":"makeVariableImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"MATHSAT5"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"max(FloatingPointFormula, FloatingPointFormula)","url":"max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"max(FloatingPointFormula, FloatingPointFormula)","url":"max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"max(FloatingPointFormula, FloatingPointFormula)","url":"max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"max(TFormulaInfo, TFormulaInfo)","url":"max(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"maximize(Formula)","url":"maximize(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"maximize(Formula)","url":"maximize(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"mgr"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"min(FloatingPointFormula, FloatingPointFormula)","url":"min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"min(FloatingPointFormula, FloatingPointFormula)","url":"min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"min(FloatingPointFormula, FloatingPointFormula)","url":"min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"min(TFormulaInfo, TFormulaInfo)","url":"min(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"minimize(Formula)","url":"minimize(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"minimize(Formula)","url":"minimize(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager","l":"mkQuantifier(QuantifiedFormulaManager.Quantifier, List<? extends Formula>, BooleanFormula)","url":"mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractQuantifiedFormulaManager","l":"mkQuantifier(QuantifiedFormulaManager.Quantifier, List<? extends Formula>, BooleanFormula)","url":"mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingQuantifiedFormulaManager","l":"mkQuantifier(QuantifiedFormulaManager.Quantifier, List<? extends Formula>, BooleanFormula)","url":"mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractQuantifiedFormulaManager","l":"mkQuantifier(QuantifiedFormulaManager.Quantifier, List<TFormulaInfo>, TFormulaInfo)","url":"mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"modelForSatFormula()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"modelForSatFormulaWithLargeValue()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"modelForSatFormulaWithUF()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"modelForUnsatFormula()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"modelForUnsatFormula2()"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"modelSet"},{"p":"org.sosy_lab.java_smt.api","c":"IntegerFormulaManager","l":"modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, BigInteger)","url":"modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingIntegerFormulaManager","l":"modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, BigInteger)","url":"modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.api","c":"IntegerFormulaManager","l":"modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, long)","url":"modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingIntegerFormulaManager","l":"modularCongruence(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula, long)","url":"modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modularCongruence(ParamFormulaType, ParamFormulaType, BigInteger)","url":"modularCongruence(ParamFormulaType,ParamFormulaType,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modularCongruence(ParamFormulaType, ParamFormulaType, long)","url":"modularCongruence(ParamFormulaType,ParamFormulaType,long)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modularCongruence(TFormulaInfo, TFormulaInfo, BigInteger)","url":"modularCongruence(TFormulaInfo,TFormulaInfo,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modularCongruence(TFormulaInfo, TFormulaInfo, long)","url":"modularCongruence(TFormulaInfo,TFormulaInfo,long)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"MODULO"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"modulo(BitvectorFormula, BitvectorFormula, boolean)","url":"modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"IntegerFormulaManager","l":"modulo(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)","url":"modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingIntegerFormulaManager","l":"modulo(NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)","url":"modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modulo(ParamFormulaType, ParamFormulaType)","url":"modulo(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"modulo(TFormulaInfo, TFormulaInfo)","url":"modulo(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"MUL"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"multiCloseTest()"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"multiply(BitvectorFormula, BitvectorFormula)","url":"multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"multiply(BitvectorFormula, BitvectorFormula)","url":"multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"multiply(BitvectorFormula, BitvectorFormula)","url":"multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"multiply(FloatingPointFormula, FloatingPointFormula)","url":"multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"multiply(ParamFormulaType, ParamFormulaType)","url":"multiply(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"multiply(ParamFormulaType, ParamFormulaType)","url":"multiply(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"multiply(ParamFormulaType, ParamFormulaType)","url":"multiply(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"multiply(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"multiply(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"multiply(TFormulaInfo, TFormulaInfo)","url":"multiply(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"multiply(TFormulaInfo, TFormulaInfo)","url":"multiply(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"multiStackTest()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"NEAREST_TIES_AWAY"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"NEAREST_TIES_TO_EVEN"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"negate(BitvectorFormula)","url":"negate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"negate(BitvectorFormula)","url":"negate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"negate(BitvectorFormula)","url":"negate(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"negate(FloatingPointFormula)","url":"negate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"negate(FloatingPointFormula)","url":"negate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"negate(FloatingPointFormula)","url":"negate(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"negate(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"negate(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"negate(ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"negate(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"negate(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"negate(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"newEnvironmentForTest(SolverContext, SolverContext.ProverOptions...)","url":"newEnvironmentForTest(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"newOptimizationProverEnvironment(SolverContext.ProverOptions...)","url":"newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newOptimizationProverEnvironment0(Set<SolverContext.ProverOptions>)","url":"newOptimizationProverEnvironment0(java.util.Set)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"newProverEnvironment(SolverContext.ProverOptions...)","url":"newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newProverEnvironment0(Set<SolverContext.ProverOptions>)","url":"newProverEnvironment0(java.util.Set)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.logging","c":"LoggingSolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"newProverEnvironmentWithInterpolation(SolverContext.ProverOptions...)","url":"newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"newProverEnvironmentWithInterpolation0(Set<SolverContext.ProverOptions>)","url":"newProverEnvironmentWithInterpolation0(java.util.Set)"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"NNF"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"NNFVisitor(FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"NO_MODEL_HELP"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"none()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"none()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"none()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"noneImpl()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"NOT"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"not(BitvectorFormula)","url":"not(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"not(BitvectorFormula)","url":"not(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"not(BitvectorFormula)","url":"not(org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"not(BooleanFormula)","url":"not(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"not(BooleanFormula)","url":"not(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"not(BooleanFormula)","url":"not(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"not(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"not(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"notifyOnDecision()"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"notifyOnFinalCheck()"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"notifyOnKnownValue()"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueens","l":"NQueens(SolverContext, int)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,int)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensConstraintPropagator","l":"NQueensConstraintPropagator(BooleanFormula[][])","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormula[][])"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"NQueensEnumeratingPropagator()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.NumeralType","l":"NumeralType()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"of(boolean, BigInteger, BigInteger, int, int)","url":"of(boolean,java.math.BigInteger,java.math.BigInteger,int,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FunctionDeclarationImpl","l":"of(String, FunctionDeclarationKind, List<FormulaType<?>>, FormulaType<F>, T)","url":"of(java.lang.String,org.sosy_lab.java_smt.api.FunctionDeclarationKind,java.util.List,org.sosy_lab.java_smt.api.FormulaType,T)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"of(String, int, int)","url":"of(java.lang.String,int,int)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"onDecision(BooleanFormula, boolean)","url":"onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"onDecision(BooleanFormula, boolean)","url":"onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"onFinalCheck()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"onFinalCheck()"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"onFinalCheck()"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"onKnownValue(BooleanFormula, boolean)","url":"onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"onKnownValue(BooleanFormula, boolean)","url":"onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensConstraintPropagator","l":"onKnownValue(BooleanFormula, boolean)","url":"onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"onKnownValue(BooleanFormula, boolean)","url":"onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"onPop(int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"onPop(int)"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"onPop(int)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"onPush()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"onPush()"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","c":"NQueensEnumeratingPropagator","l":"onPush()"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"OPENSMT"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment.OptStatus","l":"OPT"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"optional(RegexFormula)","url":"optional(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"optional(RegexFormula)","url":"optional(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"optional(RegexFormula)","url":"optional(org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"OR"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"or(BitvectorFormula, BitvectorFormula)","url":"or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"or(BitvectorFormula, BitvectorFormula)","url":"or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"or(BitvectorFormula, BitvectorFormula)","url":"or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"or(BooleanFormula, BooleanFormula)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"or(BooleanFormula, BooleanFormula)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"or(BooleanFormula, BooleanFormula)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"or(BooleanFormula...)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"or(BooleanFormula...)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"or(BooleanFormula...)","url":"or(org.sosy_lab.java_smt.api.BooleanFormula...)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"or(Collection<BooleanFormula>)","url":"or(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"or(Collection<BooleanFormula>)","url":"or(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"or(Collection<BooleanFormula>)","url":"or(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"or(TFormulaInfo, TFormulaInfo)","url":"or(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"or(TFormulaInfo, TFormulaInfo)","url":"or(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"orImpl(Collection<TFormulaInfo>)","url":"orImpl(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"OTHER"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0.ParameterizedSolverBasedTest0","l":"ParameterizedSolverBasedTest0()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"parse(String)","url":"parse(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"parse(String)","url":"parse(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"parse(String)","url":"parse(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"parseImpl(String)","url":"parseImpl(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"pop()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"pop()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"pop()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"popImpl()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"prefix(StringFormula, StringFormula)","url":"prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"prefix(StringFormula, StringFormula)","url":"prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"prefix(StringFormula, StringFormula)","url":"prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"prefix(TFormulaInfo, TFormulaInfo)","url":"prefix(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.utils","c":"SolverUtils","l":"prettyPrinter(FormulaManager)","url":"prettyPrinter(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter","l":"PrettyPrinter(FormulaManager)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"PRINCESS"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"propagateConflict(BooleanFormula[])","url":"propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"propagateConsequence(BooleanFormula[], BooleanFormula)","url":"propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[],org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"propagateNextDecision(BooleanFormula, Optional<Boolean>)","url":"propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"},{"p":"org.sosy_lab.java_smt.test","c":"ProverEnvironmentSubject","l":"proverEnvironments()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"ProverWithAssumptionsWrapper","l":"ProverWithAssumptionsWrapper(ProverEnvironment)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.ProverEnvironment)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"push()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"push()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"push()"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"push(BooleanFormula)","url":"push(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"pushImpl()"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"QE_LIGHT"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"qmgr"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"range(char, char)","url":"range(char,char)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"range(StringFormula, StringFormula)","url":"range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"range(StringFormula, StringFormula)","url":"range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"range(StringFormula, StringFormula)","url":"range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"range(TFormulaInfo, TFormulaInfo)","url":"range(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"RationalType"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_COMPLEMENT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_CONCAT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_DIFFERENCE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_INTERSECT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_OPTIONAL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_PLUS"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_RANGE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_STAR"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"RE_UNION"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"RegexType"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"registerEvaluator(E)"},{"p":"org.sosy_lab.java_smt.api","c":"PropagatorBackend","l":"registerExpression(BooleanFormula)","url":"registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"UserPropagator","l":"registerExpression(BooleanFormula)","url":"registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractUserPropagator","l":"registerExpression(BooleanFormula)","url":"registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"registerPushedFormula(T)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"InterpolatingProverWithAssumptionsWrapper","l":"registerPushedFormula(T)"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"registerUserPropagator(UserPropagator)","url":"registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"remainder(BitvectorFormula, BitvectorFormula, boolean)","url":"remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"remainder(BitvectorFormula, BitvectorFormula, boolean)","url":"remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"remainder(BitvectorFormula, BitvectorFormula, boolean)","url":"remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"remainder(FloatingPointFormula, FloatingPointFormula)","url":"remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"remainder(FloatingPointFormula, FloatingPointFormula)","url":"remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"remainder(FloatingPointFormula, FloatingPointFormula)","url":"remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"remainder(TFormulaInfo, TFormulaInfo, boolean)","url":"remainder(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"remainder(TFormulaInfo, TFormulaInfo)","url":"remainder(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"replace(StringFormula, StringFormula, StringFormula)","url":"replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"replace(StringFormula, StringFormula, StringFormula)","url":"replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"replace(StringFormula, StringFormula, StringFormula)","url":"replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"replace(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"replace(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"replaceAll(StringFormula, StringFormula, StringFormula)","url":"replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"replaceAll(StringFormula, StringFormula, StringFormula)","url":"replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"replaceAll(StringFormula, StringFormula, StringFormula)","url":"replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"replaceAll(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"replaceAll(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireArrayModel()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireArrays()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireBitvectors()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireBitvectorToInt()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireEnumeration()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireFloats()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireIntegers()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireInterpolation()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireModel()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireOptimization()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireParser()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireQuantifiers()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireRationals()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireStrings()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireSubstitution()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"requireTheoryCombination()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"requireUfValuesInModel()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireUnsatCore()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireUnsatCoreOverAssumptions()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireUserPropagators()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"requireVisitor()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"rmgr"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, BitvectorFormula)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, BitvectorFormula)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, BitvectorFormula)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, int)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, int)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"rotateLeft(BitvectorFormula, int)","url":"rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateLeft(TFormulaInfo, TFormulaInfo)","url":"rotateLeft(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateLeftByConstant(TFormulaInfo, int)","url":"rotateLeftByConstant(TFormulaInfo,int)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"rotateRight(BitvectorFormula, BitvectorFormula)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateRight(BitvectorFormula, BitvectorFormula)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"rotateRight(BitvectorFormula, BitvectorFormula)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"rotateRight(BitvectorFormula, int)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateRight(BitvectorFormula, int)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"rotateRight(BitvectorFormula, int)","url":"rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateRight(TFormulaInfo, TFormulaInfo)","url":"rotateRight(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"rotateRightByConstant(TFormulaInfo, int)","url":"rotateRightByConstant(TFormulaInfo,int)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"round(FloatingPointFormula, FloatingPointRoundingMode)","url":"round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"round(FloatingPointFormula, FloatingPointRoundingMode)","url":"round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"round(FloatingPointFormula, FloatingPointRoundingMode)","url":"round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"round(TFormulaInfo, FloatingPointRoundingMode)","url":"round(TFormulaInfo,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.RowBuilder","l":"RowBuilder()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"satTestBool5()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"SELECT"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"select(ArrayFormula<TI, TE>, TI)","url":"select(org.sosy_lab.java_smt.api.ArrayFormula,TI)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"select(ArrayFormula<TI, TE>, TI)","url":"select(org.sosy_lab.java_smt.api.ArrayFormula,TI)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"select(ArrayFormula<TI, TE>, TI)","url":"select(org.sosy_lab.java_smt.api.ArrayFormula,TI)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"select(TFormulaInfo, TFormulaInfo)","url":"select(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"shiftLeft(BitvectorFormula, BitvectorFormula)","url":"shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"shiftLeft(BitvectorFormula, BitvectorFormula)","url":"shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"shiftLeft(BitvectorFormula, BitvectorFormula)","url":"shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"shiftLeft(TFormulaInfo, TFormulaInfo)","url":"shiftLeft(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"shiftRight(BitvectorFormula, BitvectorFormula, boolean)","url":"shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"shiftRight(BitvectorFormula, BitvectorFormula, boolean)","url":"shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"shiftRight(BitvectorFormula, BitvectorFormula, boolean)","url":"shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"shiftRight(TFormulaInfo, TFormulaInfo, boolean)","url":"shiftRight(TFormulaInfo,TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"ShutdownHook","l":"ShutdownHook(ShutdownNotifier, Runnable)","url":"%3Cinit%3E(org.sosy_lab.common.ShutdownNotifier,java.lang.Runnable)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"shutdownManager"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProverWithAllSat","l":"shutdownNotifier"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"shutdownNotifierToUse()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"ShutdownHook","l":"shutdownRequested(String)","url":"shutdownRequested(java.lang.String)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"simpleStackTestBool()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"simplify(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"simplify(T)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"simplify(T)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"simplify(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"SINGLE_PRECISION_EXPONENT_SIZE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"SINGLE_PRECISION_MANTISSA_SIZE"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"singleStackTestInteger()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"singleStackTestRational()"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku","l":"SIZE"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"size()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"size()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"size()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess","l":"SKIP"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"SKIP_TYPE"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"smgr"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"smodulo(BitvectorFormula, BitvectorFormula)","url":"smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"smodulo(BitvectorFormula, BitvectorFormula)","url":"smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"smodulo(BitvectorFormula, BitvectorFormula)","url":"smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"smodulo(TFormulaInfo, TFormulaInfo)","url":"smodulo(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"SMTINTERPOL"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"SMTLIB2_KEYWORDS"},{"p":"org.sosy_lab.java_smt.example","c":"Binoxxo.BinoxxoSolver","l":"solve(char[][])"},{"p":"org.sosy_lab.java_smt.example","c":"Sudoku.SudokuSolver","l":"solve(Integer[][])","url":"solve(java.lang.Integer[][])"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0.ParameterizedSolverBasedTest0","l":"solver"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"solverAssumptionsAsFormula"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"SolverBasedTest0()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"SolverContextFactory(Configuration, LogManager, ShutdownNotifier, Consumer<String>)","url":"%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory","l":"SolverContextFactory(Configuration, LogManager, ShutdownNotifier)","url":"%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverException","l":"SolverException(String, Throwable)","url":"%3Cinit%3E(java.lang.String,java.lang.Throwable)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverException","l":"SolverException(String)","url":"%3Cinit%3E(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverInformation","l":"solverHasSharedFormulas(SolverContextFactory.Solvers)","url":"solverHasSharedFormulas(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingSolverInformation","l":"solverHasSharedFunctions(SolverContextFactory.Solvers)","url":"solverHasSharedFunctions(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable","l":"SolverOverviewTable()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"SolverStackTest0()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0","l":"solverToUse()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverBasedTest0.ParameterizedSolverBasedTest0","l":"solverToUse()"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter.PrinterOption","l":"SPLIT_ONLY_BOOLEAN_OPERATIONS"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"sqrt(FloatingPointFormula, FloatingPointRoundingMode)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"sqrt(FloatingPointFormula, FloatingPointRoundingMode)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"sqrt(FloatingPointFormula, FloatingPointRoundingMode)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"sqrt(FloatingPointFormula)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"sqrt(FloatingPointFormula)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"sqrt(FloatingPointFormula)","url":"sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"sqrt(TFormulaInfo, TFormulaInfo)","url":"sqrt(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTest()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTest2()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTest3()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTest4()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTest5()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTestUnsat()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"stackTestUnsat2()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool.TimerWrapper","l":"start()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"StatisticsSolverContext","l":"StatisticsSolverContext(SolverContext)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool.TimerWrapper","l":"stop()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STORE"},{"p":"org.sosy_lab.java_smt.api","c":"ArrayFormulaManager","l":"store(ArrayFormula<TI, TE>, TI, TE)","url":"store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"store(ArrayFormula<TI, TE>, TI, TE)","url":"store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingArrayFormulaManager","l":"store(ArrayFormula<TI, TE>, TI, TE)","url":"store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractArrayFormulaManager","l":"store(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"store(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_CHAR_AT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_CONCAT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_CONTAINS"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_IN_RE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_INDEX_OF"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_LE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_LENGTH"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_LT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_PREFIX"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_REPLACE"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_REPLACE_ALL"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_SUBSTRING"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_SUFFIX"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_TO_INT"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"STR_TO_RE"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"StringType"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"SUB"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"substitute(T, Map<? extends Formula, ? extends Formula>)","url":"substitute(T,java.util.Map)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"substitute(T, Map<? extends Formula, ? extends Formula>)","url":"substitute(T,java.util.Map)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"substitute(T, Map<? extends Formula, ? extends Formula>)","url":"substitute(T,java.util.Map)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)","url":"substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)","url":"substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"substring(StringFormula, NumeralFormula.IntegerFormula, NumeralFormula.IntegerFormula)","url":"substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"substring(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"substring(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"subtract(BitvectorFormula, BitvectorFormula)","url":"subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"subtract(BitvectorFormula, BitvectorFormula)","url":"subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"subtract(BitvectorFormula, BitvectorFormula)","url":"subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula, FloatingPointRoundingMode)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"subtract(FloatingPointFormula, FloatingPointFormula)","url":"subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"subtract(ParamFormulaType, ParamFormulaType)","url":"subtract(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"subtract(ParamFormulaType, ParamFormulaType)","url":"subtract(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"subtract(ParamFormulaType, ParamFormulaType)","url":"subtract(ParamFormulaType,ParamFormulaType)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"subtract(TFormulaInfo, TFormulaInfo, TFormulaInfo)","url":"subtract(TFormulaInfo,TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"subtract(TFormulaInfo, TFormulaInfo)","url":"subtract(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"subtract(TFormulaInfo, TFormulaInfo)","url":"subtract(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"suffix(StringFormula, StringFormula)","url":"suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"suffix(StringFormula, StringFormula)","url":"suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"suffix(StringFormula, StringFormula)","url":"suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"suffix(TFormulaInfo, TFormulaInfo)","url":"suffix(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"NumeralFormulaManager","l":"sum(List<ParamFormulaType>)","url":"sum(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"sum(List<ParamFormulaType>)","url":"sum(java.util.List)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingNumeralFormulaManager","l":"sum(List<ParamFormulaType>)","url":"sum(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"sumImpl(List<TFormulaInfo>)","url":"sumImpl(java.util.List)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractSolverContext","l":"supportsAssumptionSolving()"},{"p":"org.sosy_lab.java_smt.test","c":"SolverStackTest0","l":"symbolsOnStackTest()"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","c":"SynchronizedSolverContext","l":"SynchronizedSolverContext(Configuration, LogManager, ShutdownNotifier, SolverContext)","url":"%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.api.SolverContext)"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"TimerPool()","url":"%3Cinit%3E()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"times(RegexFormula, int)","url":"times(org.sosy_lab.java_smt.api.RegexFormula,int)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"times(RegexFormula, int)","url":"times(org.sosy_lab.java_smt.api.RegexFormula,int)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"times(RegexFormula, int)","url":"times(org.sosy_lab.java_smt.api.RegexFormula,int)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"TO_REAL"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"toConjunction()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"toConjunction()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"toConjunction()"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"toConjunctionArgs(BooleanFormula, boolean)","url":"toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"toConjunctionArgs(BooleanFormula, boolean)","url":"toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"toConjunctionArgs(BooleanFormula, boolean)","url":"toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"toDisjunction()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"toDisjunction()"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"toDisjunction()"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"toDisjunctionArgs(BooleanFormula, boolean)","url":"toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"toDisjunctionArgs(BooleanFormula, boolean)","url":"toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"toDisjunctionArgs(BooleanFormula, boolean)","url":"toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointFormulaManager","l":"toIeeeBitvector(FloatingPointFormula)","url":"toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"toIeeeBitvector(FloatingPointFormula)","url":"toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFloatingPointFormulaManager","l":"toIeeeBitvector(FloatingPointFormula)","url":"toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"toIeeeBitvectorImpl(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"toIntegerFormula(BitvectorFormula, boolean)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"toIntegerFormula(BitvectorFormula, boolean)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"toIntegerFormula(BitvectorFormula, boolean)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"toIntegerFormula(StringFormula)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"toIntegerFormula(StringFormula)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"toIntegerFormula(StringFormula)","url":"toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"toIntegerFormula(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"toIntegerFormulaImpl(TFormulaInfo, boolean)","url":"toIntegerFormulaImpl(TFormulaInfo,boolean)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"Tokenizer","l":"tokenize(String)","url":"tokenize(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"toSMTLIBString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"toSMTLIBString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"toSMTLIBString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"toSMTLIBString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"toSMTLIBString()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointNumber","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"Formula","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.ArrayFormulaType","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.BitvectorType","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.EnumerationFormulaType","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaType.FloatingPointType","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"Model","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"toString()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractModel","l":"toString()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"CachingModel","l":"toString()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FunctionDeclarationImpl","l":"toString()"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"toString()"},{"p":"org.sosy_lab.java_smt.delegate.statistics","c":"TimerPool","l":"toString()"},{"p":"org.sosy_lab.java_smt.example","c":"FormulaClassifier","l":"toString()"},{"p":"org.sosy_lab.java_smt.example","c":"SolverOverviewTable.RowBuilder","l":"toString()"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"toStringFormula(NumeralFormula.IntegerFormula)","url":"toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"toStringFormula(NumeralFormula.IntegerFormula)","url":"toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"toStringFormula(NumeralFormula.IntegerFormula)","url":"toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"toStringFormula(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"TOWARD_NEGATIVE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"TOWARD_POSITIVE"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"TOWARD_ZERO"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)","url":"transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)","url":"transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"transformRecursively(BooleanFormula, BooleanFormulaTransformationVisitor)","url":"transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"transformRecursively(FormulaVisitor<? extends Formula>, T, Predicate<Object>)","url":"transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T,java.util.function.Predicate)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"transformRecursively(FormulaVisitor<? extends Formula>, T)","url":"transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"transformRecursively(T, FormulaTransformationVisitor)","url":"transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"transformRecursively(T, FormulaTransformationVisitor)","url":"transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"transformRecursively(T, FormulaTransformationVisitor)","url":"transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"transformValueToRange(int, BigInteger)","url":"transformValueToRange(int,java.math.BigInteger)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"translateFrom(BooleanFormula, FormulaManager)","url":"translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"translateFrom(BooleanFormula, FormulaManager)","url":"translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"translateFrom(BooleanFormula, FormulaManager)","url":"translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"TSEITIN_CNF"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"UF"},{"p":"org.sosy_lab.java_smt.utils","c":"SolverUtils","l":"ufElimination(FormulaManager)","url":"ufElimination(org.sosy_lab.java_smt.api.FormulaManager)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"UMINUS"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment.OptStatus","l":"UNDEF"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"unescape(String)","url":"unescape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"unescape(String)","url":"unescape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"unescape(String)","url":"unescape(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"StringFormulaManager","l":"union(RegexFormula, RegexFormula)","url":"union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"union(RegexFormula, RegexFormula)","url":"union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingStringFormulaManager","l":"union(RegexFormula, RegexFormula)","url":"union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractStringFormulaManager","l":"union(TFormulaInfo, TFormulaInfo)","url":"union(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractProver","l":"unregisterEvaluator(Evaluator)","url":"unregisterEvaluator(org.sosy_lab.java_smt.api.Evaluator)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment.OptStatus","l":"UNSAT"},{"p":"org.sosy_lab.java_smt.api","c":"BasicProverEnvironment","l":"unsatCoreOverAssumptions(Collection<BooleanFormula>)","url":"unsatCoreOverAssumptions(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","c":"BasicProverWithAssumptionsWrapper","l":"unsatCoreOverAssumptions(Collection<BooleanFormula>)","url":"unsatCoreOverAssumptions(java.util.Collection)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment","l":"upper(int, Rational)","url":"upper(int,org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingOptimizationProverEnvironment","l":"upper(int, Rational)","url":"upper(int,org.sosy_lab.common.rationals.Rational)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager.NonLinearArithmetic","l":"USE"},{"p":"org.sosy_lab.java_smt.api","c":"Model.ValueAssignment","l":"ValueAssignment(Formula, Formula, BooleanFormula, String, Object, List<?>)","url":"%3Cinit%3E(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula,java.lang.String,java.lang.Object,java.util.List)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment.OptStatus","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager.Quantifier","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager.NonLinearArithmetic","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter.PrinterOption","l":"valueOf(String)","url":"valueOf(java.lang.String)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"FloatingPointRoundingMode","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"OptimizationProverEnvironment.OptStatus","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"QuantifiedFormulaManager.Quantifier","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"SolverContext.ProverOptions","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"Tactic","l":"values()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"TraversalProcess.TraversalType","l":"values()"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager.NonLinearArithmetic","l":"values()"},{"p":"org.sosy_lab.java_smt.utils","c":"PrettyPrinter.PrinterOption","l":"values()"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"VAR"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"visit(BooleanFormula, BooleanFormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"visit(BooleanFormula, BooleanFormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"visit(BooleanFormula, BooleanFormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.example","c":"FormulaClassifier","l":"visit(BooleanFormula)","url":"visit(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"visit(Formula, FormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"visit(Formula, FormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"visit(Formula, FormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"visit(Formula, FormulaVisitor<R>)","url":"visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"visit(FormulaVisitor<R>, Formula, TFormulaInfo)","url":"visit(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitAnd(List<BooleanFormula>)","url":"visitAnd(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitAnd(List<BooleanFormula>)","url":"visitAnd(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitAnd(List<BooleanFormula>)","url":"visitAnd(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitAtom(BooleanFormula, FunctionDeclaration<BooleanFormula>)","url":"visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitAtom(BooleanFormula, FunctionDeclaration<BooleanFormula>)","url":"visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitAtom(BooleanFormula, FunctionDeclaration<BooleanFormula>)","url":"visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitBoundVar(BooleanFormula, int)","url":"visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitBoundVar(BooleanFormula, int)","url":"visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitBoundVar(BooleanFormula, int)","url":"visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitBoundVariable(Formula, int)","url":"visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"visitBoundVariable(Formula, int)","url":"visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaVisitor","l":"visitBoundVariable(Formula, int)","url":"visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitConstant(boolean)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitConstant(boolean)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitConstant(boolean)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitConstant(Formula, Object)","url":"visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"visitConstant(Formula, Object)","url":"visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaVisitor","l":"visitConstant(Formula, Object)","url":"visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitDefault()"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitDefault(Formula)","url":"visitDefault(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"ExpectedFormulaVisitor","l":"visitDefault(Formula)","url":"visitDefault(org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitEquivalence(BooleanFormula, BooleanFormula)","url":"visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitEquivalence(BooleanFormula, BooleanFormula)","url":"visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitEquivalence(BooleanFormula, BooleanFormula)","url":"visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"visitEquivalence(BooleanFormula, BooleanFormula)","url":"visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitFreeVariable(Formula, String)","url":"visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"visitFreeVariable(Formula, String)","url":"visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaVisitor","l":"visitFreeVariable(Formula, String)","url":"visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitFunction(Formula, List<Formula>, FunctionDeclaration<?>)","url":"visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"visitFunction(Formula, List<Formula>, FunctionDeclaration<?>)","url":"visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaVisitor","l":"visitFunction(Formula, List<Formula>, FunctionDeclaration<?>)","url":"visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)","url":"visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)","url":"visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)","url":"visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"visitIfThenElse(BooleanFormula, BooleanFormula, BooleanFormula)","url":"visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitImplication(BooleanFormula, BooleanFormula)","url":"visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitImplication(BooleanFormula, BooleanFormula)","url":"visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitImplication(BooleanFormula, BooleanFormula)","url":"visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"visitImplication(BooleanFormula, BooleanFormula)","url":"visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitNot(BooleanFormula)","url":"visitNot(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitNot(BooleanFormula)","url":"visitNot(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitNot(BooleanFormula)","url":"visitNot(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"visitNot(BooleanFormula)","url":"visitNot(org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitOr(List<BooleanFormula>)","url":"visitOr(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitOr(List<BooleanFormula>)","url":"visitOr(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitOr(List<BooleanFormula>)","url":"visitOr(java.util.List)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultFormulaVisitor","l":"visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaTransformationVisitor","l":"visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"FormulaVisitor","l":"visitQuantifier(BooleanFormula, QuantifiedFormulaManager.Quantifier, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitQuantifier(QuantifiedFormulaManager.Quantifier, BooleanFormula, List<Formula>, BooleanFormula)","url":"visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"visitRecursively(BooleanFormula, BooleanFormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"visitRecursively(BooleanFormula, BooleanFormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"visitRecursively(BooleanFormula, BooleanFormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"},{"p":"org.sosy_lab.java_smt.api","c":"FormulaManager","l":"visitRecursively(Formula, FormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFormulaManager","l":"visitRecursively(Formula, FormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingFormulaManager","l":"visitRecursively(Formula, FormulaVisitor<TraversalProcess>)","url":"visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"visitRecursively(FormulaVisitor<TraversalProcess>, Formula, Predicate<Formula>)","url":"visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.util.function.Predicate)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"FormulaCreator","l":"visitRecursively(FormulaVisitor<TraversalProcess>, Formula)","url":"visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaTransformationVisitor","l":"visitXor(BooleanFormula, BooleanFormula)","url":"visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"BooleanFormulaVisitor","l":"visitXor(BooleanFormula, BooleanFormula)","url":"visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.api.visitors","c":"DefaultBooleanFormulaVisitor","l":"visitXor(BooleanFormula, BooleanFormula)","url":"visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","c":"NNFVisitor","l":"visitXor(BooleanFormula, BooleanFormula)","url":"visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractFloatingPointFormulaManager","l":"wrap(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractNumeralFormulaManager","l":"wrap(TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.api","c":"FunctionDeclarationKind","l":"XOR"},{"p":"org.sosy_lab.java_smt.api","c":"BitvectorFormulaManager","l":"xor(BitvectorFormula, BitvectorFormula)","url":"xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"xor(BitvectorFormula, BitvectorFormula)","url":"xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBitvectorFormulaManager","l":"xor(BitvectorFormula, BitvectorFormula)","url":"xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)"},{"p":"org.sosy_lab.java_smt.api","c":"BooleanFormulaManager","l":"xor(BooleanFormula, BooleanFormula)","url":"xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"xor(BooleanFormula, BooleanFormula)","url":"xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.delegate.debugging","c":"DebuggingBooleanFormulaManager","l":"xor(BooleanFormula, BooleanFormula)","url":"xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBitvectorFormulaManager","l":"xor(TFormulaInfo, TFormulaInfo)","url":"xor(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt.basicimpl","c":"AbstractBooleanFormulaManager","l":"xor(TFormulaInfo, TFormulaInfo)","url":"xor(TFormulaInfo,TFormulaInfo)"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"YICES2"},{"p":"org.sosy_lab.java_smt","c":"SolverContextFactory.Solvers","l":"Z3"}]
\ No newline at end of file
diff --git a/api/member-search-index.zip b/api/member-search-index.zip
new file mode 100644
index 0000000000..532caa7323
Binary files /dev/null and b/api/member-search-index.zip differ
diff --git a/api/org/sosy_lab/java_smt/SolverContextFactory.Solvers.html b/api/org/sosy_lab/java_smt/SolverContextFactory.Solvers.html
new file mode 100644
index 0000000000..6541245842
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/SolverContextFactory.Solvers.html
@@ -0,0 +1,485 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverContextFactory.Solvers (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../script.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverContextFactory.Solvers (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt</a></div>
+<h2 title="Enum SolverContextFactory.Solvers" class="title">Enum SolverContextFactory.Solvers</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.SolverContextFactory.Solvers</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">SolverContextFactory.Solvers</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BITWUZLA">BITWUZLA</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BOOLECTOR">BOOLECTOR</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CVC4">CVC4</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CVC5">CVC5</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#MATHSAT5">MATHSAT5</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#OPENSMT">OPENSMT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#PRINCESS">PRINCESS</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SMTINTERPOL">SMTINTERPOL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#YICES2">YICES2</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#Z3">Z3</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="OPENSMT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>OPENSMT</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> OPENSMT</pre>
+</li>
+</ul>
+<a id="MATHSAT5">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>MATHSAT5</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> MATHSAT5</pre>
+</li>
+</ul>
+<a id="SMTINTERPOL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SMTINTERPOL</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> SMTINTERPOL</pre>
+</li>
+</ul>
+<a id="Z3">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>Z3</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> Z3</pre>
+</li>
+</ul>
+<a id="PRINCESS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>PRINCESS</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> PRINCESS</pre>
+</li>
+</ul>
+<a id="BOOLECTOR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BOOLECTOR</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> BOOLECTOR</pre>
+</li>
+</ul>
+<a id="CVC4">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>CVC4</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> CVC4</pre>
+</li>
+</ul>
+<a id="CVC5">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>CVC5</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> CVC5</pre>
+</li>
+</ul>
+<a id="YICES2">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>YICES2</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> YICES2</pre>
+</li>
+</ul>
+<a id="BITWUZLA">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>BITWUZLA</h4>
+<pre>public static final&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> BITWUZLA</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (SolverContextFactory.Solvers c : SolverContextFactory.Solvers.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/SolverContextFactory.html b/api/org/sosy_lab/java_smt/SolverContextFactory.html
new file mode 100644
index 0000000000..fb38cd4b73
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/SolverContextFactory.html
@@ -0,0 +1,543 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverContextFactory (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../script.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverContextFactory (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":10,"i5":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt</a></div>
+<h2 title="Class SolverContextFactory" class="title">Class SolverContextFactory</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.SolverContextFactory</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">SolverContextFactory</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Factory class for loading and generating solver contexts. Generates a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>
+ corresponding to the chosen solver.
+
+ <p>Main entry point for JavaSMT.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">SolverContextFactory</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                    <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                    <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier)</code></th>
+<td class="colLast">
+<div class="block">This constructor uses the default JavaSMT loader for accessing native libraries.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)">SolverContextFactory</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                    <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                    <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pLoader)</code></th>
+<td class="colLast">
+<div class="block">This constructor instantiates a factory for building solver contexts for a configured SMT
+ solver (via the parameter <code>pConfig</code>).</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">createSolverContext</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier)</code></th>
+<td class="colLast">
+<div class="block">Shortcut for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using the configuration
+ <code>config</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers)">createSolverContext</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier,
+                   <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">
+<div class="block">Shortcut for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using an argument.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>static <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers,java.util.function.Consumer)">createSolverContext</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier,
+                   <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver,
+                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;loader)</code></th>
+<td class="colLast">
+<div class="block">This is the most explicit method for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver, the logger,
+ the shutdownNotifier, and the libraryLoader are provided as parameters by the caller.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>static <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createSolverContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">createSolverContext</a></span>&#8203;(<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">
+<div class="block">Minimalistic shortcut for creating a solver context.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#generateContext()">generateContext</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Create new context with solver chosen according to the supplied configuration.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#generateContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">generateContext</a></span>&#8203;(<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solverToCreate)</code></th>
+<td class="colLast">
+<div class="block">Create new context with solver name supplied.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SolverContextFactory</h4>
+<pre>public&nbsp;SolverContextFactory&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                            <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                            <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier)
+                     throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">This constructor uses the default JavaSMT loader for accessing native libraries.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)"><code>SolverContextFactory(Configuration, LogManager, ShutdownNotifier, Consumer)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="&lt;init&gt;(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SolverContextFactory</h4>
+<pre>public&nbsp;SolverContextFactory&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                            <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                            <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+                            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pLoader)
+                     throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">This constructor instantiates a factory for building solver contexts for a configured SMT
+ solver (via the parameter <code>pConfig</code>). Each created context is independent of other
+ contexts and uses its own environment for building formulas and querying the solver.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pConfig</code> - The configuration to be used when instantiating JavaSMT and the solvers. By
+     default, the configuration specifies the solver to use via the option <code>
+     solver.solver=...</code>. This option can be overridden when calling the method <a href="#generateContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)"><code>generateContext(Solvers)</code></a>.</dd>
+<dd><code>pLogger</code> - The processing of log messages from SMT solvers (or their bindings) is handled
+     via this LogManager.</dd>
+<dd><code>pShutdownNotifier</code> - This central instance allows to request the termination of all
+     operations in the created solver. Please note that the solver can decide on its own to
+     accept the shutdown request and terminate its operation afterwards. We do not forcefully
+     terminate any solver query eagerly. In general, a solver is of good nature, and maturely
+     developed, and terminates accordingly.</dd>
+<dd><code>pLoader</code> - The loading mechanism (loading method) in this class can be injected by the user
+     and, e.g., can be used to search for the library binaries in more directories. This makes
+     the loading process for native solvers like Boolector, CVC4, MathSAT, Z3 more flexible. For
+     Java-based libraries (solvers like SMTInterpol or Princess, and also other dependences),
+     this class is irrelevant and not accessed.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="generateContext()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>generateContext</h4>
+<pre class="methodSignature">public&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;generateContext()
+                              throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">Create new context with solver chosen according to the supplied configuration.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="generateContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>generateContext</h4>
+<pre class="methodSignature">public&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;generateContext&#8203;(<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solverToCreate)
+                              throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">Create new context with solver name supplied.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#generateContext()"><code>generateContext()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>createSolverContext</h4>
+<pre class="methodSignature">public static&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;createSolverContext&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier)
+                                         throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">Shortcut for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using the configuration
+ <code>config</code>.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>createSolverContext</h4>
+<pre class="methodSignature">public static&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;createSolverContext&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier,
+                                                <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)
+                                         throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">Shortcut for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver is selected using an argument.
+
+ <p>See <a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)"><code>SolverContextFactory(Configuration, LogManager, ShutdownNotifier, Consumer)</code></a> for
+ documentation of accepted parameters.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="createSolverContext(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.SolverContextFactory.Solvers,java.util.function.Consumer)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>createSolverContext</h4>
+<pre class="methodSignature">public static&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;createSolverContext&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;config,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;logger,
+                                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifier,
+                                                <a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;loader)
+                                         throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">This is the most explicit method for getting a <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a>, the solver, the logger,
+ the shutdownNotifier, and the libraryLoader are provided as parameters by the caller.
+
+ <p>See <a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,java.util.function.Consumer)"><code>SolverContextFactory(Configuration, LogManager, ShutdownNotifier, Consumer)</code></a> for
+ documentation of accepted parameters.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="createSolverContext(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>createSolverContext</h4>
+<pre class="methodSignature">public static&nbsp;<a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;createSolverContext&#8203;(<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)
+                                         throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<div class="block">Minimalistic shortcut for creating a solver context. Empty default configuration, no logging,
+ and no shutdown notifier.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>solver</code> - Solver to initialize</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/ArrayFormula.html b/api/org/sosy_lab/java_smt/api/ArrayFormula.html
new file mode 100644
index 0000000000..faa0534393
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/ArrayFormula.html
@@ -0,0 +1,224 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ArrayFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ArrayFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface ArrayFormula" class="title">Interface ArrayFormula&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>TI</code> - Index type.</dd>
+<dd><code>TE</code> - Element type.</dd>
+</dl>
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">ArrayFormula&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the array sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/ArrayFormulaManager.html b/api/org/sosy_lab/java_smt/api/ArrayFormulaManager.html
new file mode 100644
index 0000000000..8c1748afcd
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/ArrayFormulaManager.html
@@ -0,0 +1,460 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ArrayFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ArrayFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":18,"i6":18,"i7":6,"i8":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface ArrayFormulaManager" class="title">Interface ArrayFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">ArrayFormulaManager</span></pre>
+<div class="block">This interface represents the theory of (arbitrarily nested) arrays. (as defined in the SMTLIB2
+ standard)</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence</a></span>&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+           <a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType</a></span>&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType</a></span>&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(FTI,FTE,TE)">makeArray</a></span>&#8203;(FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType,
+         TE&nbsp;defaultElement)</code></th>
+<td class="colLast">
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(java.lang.String,FTI,FTE)">makeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType)</code></th>
+<td class="colLast">
+<div class="block">Declare a new array with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>default &lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         <a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Declare a new array with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>default &lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)">makeArray</a></span>&#8203;(<a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type,
+         TE&nbsp;defaultElement)</code></th>
+<td class="colLast">
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>TE</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select</a></span>&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+      TI&nbsp;pIndex)</code></th>
+<td class="colLast">
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store</a></span>&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+     TI&nbsp;pIndex,
+     TE&nbsp;pValue)</code></th>
+<td class="colLast">
+<div class="block">Store a value into a cell of the specified array.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="select(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>select</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;TE&nbsp;select&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                        TI&nbsp;pIndex)</pre>
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array from which to read</dd>
+<dd><code>pIndex</code> - The position from which to read</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the result of the "read"</dd>
+</dl>
+</li>
+</ul>
+<a id="store(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>store</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;store&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                                              TI&nbsp;pIndex,
+                                                                              TE&nbsp;pValue)</pre>
+<div class="block">Store a value into a cell of the specified array.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array to which to write</dd>
+<dd><code>pIndex</code> - The position to which to write</dd>
+<dd><code>pValue</code> - The value that should be written</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the "write"</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeArray(java.lang.String,FTI,FTE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                                                                                      FTI&nbsp;pIndexType,
+                                                                                                                                                      FTE&nbsp;pElementType)</pre>
+<div class="block">Declare a new array with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pIndexType</code> - The type of the array index</dd>
+<dd><code>pElementType</code> - The type of the array elements</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">default&nbsp;&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                          <a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type)</pre>
+<div class="block">Declare a new array with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>type</code> - The type of the array, consisting of index type and element type</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makeArray(FTI,FTE,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(FTI&nbsp;pIndexType,
+                                                                                                                                                      FTE&nbsp;pElementType,
+                                                                                                                                                      TE&nbsp;defaultElement)</pre>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>defaultElement</code> - The default value of all entries in the array.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">default&nbsp;&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type,
+                                                                                          TE&nbsp;defaultElement)</pre>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>defaultElement</code> - The default value of all entries in the array.</dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+                                                                         <a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</pre>
+<div class="block">Make a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+</li>
+</ul>
+<a id="getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIndexType</h4>
+<pre class="methodSignature">&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;getIndexType&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</pre>
+</li>
+</ul>
+<a id="getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getElementType</h4>
+<pre class="methodSignature">&lt;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;getElementType&#8203;(<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html b/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html
new file mode 100644
index 0000000000..dac1807bd4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html
@@ -0,0 +1,288 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BasicProverEnvironment.AllSatCallback (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BasicProverEnvironment.AllSatCallback (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BasicProverEnvironment.AllSatCallback" class="title">Interface BasicProverEnvironment.AllSatCallback&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>R</code> - The result type of the callback, passed through by <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a>.</dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&gt;</dd>
+</dl>
+<hr>
+<pre>public static interface <span class="typeNameLabel">BasicProverEnvironment.AllSatCallback&lt;R&gt;</span></pre>
+<div class="block">Interface for the <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> callback.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#apply(java.util.List)">apply</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;model)</code></th>
+<td class="colLast">
+<div class="block">Callback for each possible satisfying assignment to given <code>important</code> predicates.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getResult()">getResult</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returning the result generated after all the <a href="#apply(java.util.List)"><code>apply(java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> calls went through.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="apply(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>apply</h4>
+<pre class="methodSignature">void&nbsp;apply&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;model)</pre>
+<div class="block">Callback for each possible satisfying assignment to given <code>important</code> predicates. If
+ the predicate is assigned <code>true</code> in the model, it is returned as-is in the list, and
+ otherwise it is negated.
+
+ <p>There is no guarantee that the list of model values corresponds to the list in <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a>. We can reorder the variables or leave out values with a
+ freely chosen value.</div>
+</li>
+</ul>
+<a id="getResult()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getResult</h4>
+<pre class="methodSignature"><a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&nbsp;getResult()
+     throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Returning the result generated after all the <a href="#apply(java.util.List)"><code>apply(java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> calls went through.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.html b/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.html
new file mode 100644
index 0000000000..a531915b0d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BasicProverEnvironment.html
@@ -0,0 +1,726 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BasicProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BasicProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":18,"i4":6,"i5":18,"i6":18,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":18,"i13":18,"i14":6,"i15":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BasicProverEnvironment" class="title">Interface BasicProverEnvironment&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Subinterfaces:</dt>
+<dd><code><a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</code>, <code><a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code>, <code><a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></code>, <code><a href="../basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></code>, <code><a href="../basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></code>, <code><a href="../delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></code>, <code><a href="../delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></code>, <code><a href="../delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></code>, <code><a href="../basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></code>, <code><a href="../basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">BasicProverEnvironment&lt;T&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">Super interface for <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> and <a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> that
+ provides only the common operations. In most cases, just use one of the two sub-interfaces</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static interface&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</span></code></th>
+<td class="colLast">
+<div class="block">Interface for the <a href="#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> callback.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#NO_MODEL_HELP">NO_MODEL_HELP</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></span>&#8203;(<a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>default <a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEvaluator()">getEvaluator</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a temporary view on the current satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getModel()">getModel</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>default <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getModelAssignments()">getModelAssignments</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a list of satisfying assignments.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>default <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a concrete ProverEnvironment in a solver.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUnsatCore()">getUnsatCore</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get an unsat core.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsat()">isUnsat</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pop()">pop</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#push()">push</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>default @Nullable <a href="BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Push a backtracking point and add a formula to the current stack, asserting it.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>default boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a></span>&#8203;(<a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a>&nbsp;propagator)</code></th>
+<td class="colLast">
+<div class="block">Registers a <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> for this prover environment.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size()">size</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="NO_MODEL_HELP">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NO_MODEL_HELP</h4>
+<pre>static final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a> NO_MODEL_HELP</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.api.BasicProverEnvironment.NO_MODEL_HELP">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="push(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+default&nbsp;@Nullable <a href="BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&nbsp;push&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)
+                  throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Push a backtracking point and add a formula to the current stack, asserting it. The return
+ value may be used to identify this formula later on in a query (this depends on the sub-type of
+ the environment).</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">void&nbsp;pop()</pre>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+@Nullable <a href="BasicProverEnvironment.html" title="type parameter in BasicProverEnvironment">T</a>&nbsp;addConstraint&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">void&nbsp;push()
+   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">int&nbsp;size()</pre>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+</li>
+</ul>
+<a id="isUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsat</h4>
+<pre class="methodSignature">boolean&nbsp;isUnsat()
+         throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsatWithAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatWithAssumptions</h4>
+<pre class="methodSignature">boolean&nbsp;isUnsatWithAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                        throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - A list of literals.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature"><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+        throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="#isUnsat()"><code>isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getEvaluator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEvaluator</h4>
+<pre class="methodSignature">default&nbsp;<a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&nbsp;getEvaluator()
+                        throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get a temporary view on the current satisfying assignment. This should be called only
+ immediately after an <a href="#isUnsat()"><code>isUnsat()</code></a> call that returned <code>false</code>. The evaluator
+ should no longer be used as soon as any constraints are added to, pushed, or popped from the
+ prover stack.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModelAssignments()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModelAssignments</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;getModelAssignments()
+                                                          throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get a list of satisfying assignments. This is equivalent to <code>
+ ImmutableList.copyOf(getModel())</code>, but removes the need for calling <a href="Model.html#close()"><code>Model.close()</code></a>.
+
+ <p>Note that if you need to iterate multiple times over the model it may be more efficient to
+ use this method instead of <a href="#getModel()"><code>getModel()</code></a> (depending on the solver).</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUnsatCore</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getUnsatCore()</pre>
+<div class="block">Get an unsat core. This should be called only immediately after an <a href="#isUnsat()"><code>isUnsat()</code></a> call that
+ returned <code>false</code>.</div>
+</li>
+</ul>
+<a id="unsatCoreOverAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unsatCoreOverAssumptions</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;&nbsp;unsatCoreOverAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                                                 throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions. Does NOT require the <a href="SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE"><code>SolverContext.ProverOptions.GENERATE_UNSAT_CORE</code></a> option to work.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - Selected assumptions</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Empty optional if the constraints with assumptions are satisfiable, subset of
+     assumptions which is unsatisfiable with the original constraints otherwise.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block">Get statistics for a concrete ProverEnvironment in a solver. The returned mapping is intended
+ to provide solver-internal statistics for only this instance. The keys can differ between
+ individual solvers.
+
+ <p>Calling the statistics several times for the same <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a>s returns
+ accumulated number, i.e., we currently do not provide any possibility to reset the statistics.
+ Calling the statistics for different <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a>s returns independent statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="SolverContext.html#getStatistics()"><code>SolverContext.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">void&nbsp;close()</pre>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)
+      throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+             <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>important</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>registerUserPropagator</h4>
+<pre class="methodSignature">default&nbsp;boolean&nbsp;registerUserPropagator&#8203;(<a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a>&nbsp;propagator)</pre>
+<div class="block">Registers a <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> for this prover environment. Only a single user propagator
+ can be registered at a time, and each user propagator shall only be registered once in its
+ lifetime (see also <a href="UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"><code>UserPropagator.initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)</code></a>).</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>propagator</code> - The (fresh) user propagator to register.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>true</code>, if the user propagator was successfully registered. Most SMT solvers do
+     not support user propagators and hence return <code>false</code>.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BitvectorFormula.html b/api/org/sosy_lab/java_smt/api/BitvectorFormula.html
new file mode 100644
index 0000000000..baf08be87b
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BitvectorFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BitvectorFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BitvectorFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BitvectorFormula" class="title">Interface BitvectorFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">BitvectorFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the bitvector sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BitvectorFormulaManager.html b/api/org/sosy_lab/java_smt/api/BitvectorFormulaManager.html
new file mode 100644
index 0000000000..31ccf1459c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BitvectorFormulaManager.html
@@ -0,0 +1,1162 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BitvectorFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BitvectorFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":50,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"],32:["t6","Deprecated Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BitvectorFormulaManager" class="title">Interface BitvectorFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">BitvectorFormulaManager</span></pre>
+<div class="block">Manager for dealing with formulas of the bitvector sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+   <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the addition of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+   <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;prefix,
+      <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;suffix)</code></th>
+<td class="colLast">
+<div class="block">Concatenate two bitvectors.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">All given bitvectors are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+      <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the division for two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+     <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+      int&nbsp;extensionBits,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Extend a bitvector to the left (add most significant bits).</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+       int&nbsp;msb,
+       int&nbsp;lsb)</code></th>
+<td class="colLast">
+<div class="block">Extract a range of bits from a bitvector.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+               <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+               boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+           <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+           boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+            <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+            boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+        boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,long)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             long&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,java.math.BigInteger)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(int,java.lang.String)">makeVariable</a></span>&#8203;(int&nbsp;length,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name and bitwidth.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>default <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">modulo</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+      <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block"><span class="deprecatedLabel">Deprecated, for removal: This API element is subject to removal in a future version.</span></div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the multiplication of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1".</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+  <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+         <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+         boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          int&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+           int&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+           <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+         <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift,
+          boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right shift (towards least-significant bit) of
+ number by toShift.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+       <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor)</code></th>
+<td class="colLast">
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the subtraction of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+   <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeBitvector(int,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                               long&nbsp;pI)</pre>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if the number is out of range for the given length.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvector(int,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</pre>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if the number is out of range for the given length.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                               <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</pre>
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.
+
+ <p>If the numeral formula is too large for the given length, we cut off the largest bits and
+ only use the lest significant bits.</div>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                                               boolean&nbsp;signed)</pre>
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+</li>
+</ul>
+<a id="makeVariable(int,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(int&nbsp;length,
+                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block">Creates a variable with exactly the given name and bitwidth.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(<a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#makeVariable(int,java.lang.String)"><code>makeVariable(int, String)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getLength</h4>
+<pre class="methodSignature">int&nbsp;getLength&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</pre>
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;negate&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</pre>
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1". The given number is
+ interpreted as signed bitvector and corresponds to "2^BITSIZE - number". The result has the
+ same length as the given number.</div>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;add&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                     <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block">This method returns the addition of the given bitvectors. The result has the same length as the
+ given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 + number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;subtract&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                          <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block">This method returns the subtraction of the given bitvectors. The result has the same length as
+ the given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divide&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+                        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+                        boolean&nbsp;signed)</pre>
+<div class="block">This method returns the division for two bitvector formulas.
+
+ <p>For signed bitvectors, the result is rounded towards zero (also called "truncated integer
+ division", similar to the division in the C99 standard), e.g., a user can assume the following
+ equations:
+
+ <ul>
+   <li>10 / 5 = 2
+   <li>10 / 3 = 3
+   <li>10 / (-3) = -3
+   <li>-10 / 5 = -2
+   <li>-10 / 3 = -3
+   <li>-10 / (-3) = 3
+ </ul>
+
+ <p>If the divisor evaluates to zero (division-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the division is defined as:
+
+ <ul>
+   <li>"-1" interpreted as bitvector (i.e., all bits set to "1"), if the dividend is
+       non-negative, and
+   <li>"1" interpreted as bitvector (i.e., all bits set to "0", except the last bit), if the
+       dividend is negative.
+ </ul>
+
+ <p>We refer to the SMTLIB standard version 2.6 for the division and remainder operators in BV
+ theory.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>dividend</code> - dividend of the operation.</dd>
+<dd><code>divisor</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modulo</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Deprecated.html?is-external=true" title="class or interface in java.lang" class="externalLink">@Deprecated</a>(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Deprecated.html?is-external=true#forRemoval()" title="class or interface in java.lang" class="externalLink">forRemoval</a>=true)
+default&nbsp;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;modulo&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+                                <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+                                boolean&nbsp;signed)</pre>
+<div class="deprecationBlock"><span class="deprecatedLabel">Deprecated, for removal: This API element is subject to removal in a future version.</span></div>
+<div class="block">Deprecated and unsupported operation.
+
+ <p>Returns the remainder of the given bitvectors and behaves equally to <a href="#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>remainder(BitvectorFormula, BitvectorFormula, boolean)</code></a>.
+
+ <p>Deprecated in favor of remainder() and smodulo() due to confusing method naming and
+ inconsistent behavior (for signed modulo, the sign of the result follows the divisor, but for
+ signed remainder() it follows the dividend). Unsigned remainder() is equivalent to unsigned
+ modulo().</div>
+</li>
+</ul>
+<a id="smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>smodulo</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;smodulo&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+                         <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor)</pre>
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.
+
+ <p>The sign of the result follows the sign of the divisor, i.e. the quotient calculated in the
+ modulo operation is rounded in such a way that the result of the smodulo operation follows the
+ sign of the divisor, e.g., a user can assume the following equations, with bitvectors
+ interpreted as signed decimal numbers and % representing signed modulo, to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == -2
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == 2
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.
+
+ <p>For unsigned modulo, we refer to the unsigned remainder method.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>dividend</code> - dividend of the operation.</dd>
+<dd><code>divisor</code> - divisor of the operation.</dd>
+</dl>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;remainder&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;dividend,
+                           <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divisor,
+                           boolean&nbsp;signed)</pre>
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.
+
+ <p>For unsigned bitvectors, this returns the remainder of unsigned bitvector division.
+
+ <p>For signed bitvectors, the sign of the result follows the sign of the dividend, i.e. the
+ quotient of the division is rounded in such a way that the sign of the result of the remainder
+ operation follows the sign of the dividend, e.g., a user can assume the following equations,
+ with bitvectors interpreted as signed decimal numbers and % representing signed remainder
+ (similar to the C programming language), to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == 1
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == -1
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>dividend</code> - dividend of the operation. The sign bit is carried over from this bitvector for
+     signed operations.</dd>
+<dd><code>divisor</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;multiply&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                          <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block">This method returns the multiplication of the given bitvectors. The result has the same length
+ as the given parameters. There can be an overflow, i.e., as one would expect from bitvector
+ logic. There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                     <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 == number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                           <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                           boolean&nbsp;signed)</pre>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                               <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                               boolean&nbsp;signed)</pre>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                        boolean&nbsp;signed)</pre>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                            <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                            boolean&nbsp;signed)</pre>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;not&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits)</pre>
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits</code> - Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>~bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;and&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                     <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;or&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                    <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;xor&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                     <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 ^ bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftRight</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftRight&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                            <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift,
+                            boolean&nbsp;signed)</pre>
+<div class="block">This method returns a term representing the right shift (towards least-significant bit) of
+ number by toShift. The result has the same length as the given number. On the left side, we
+ fill up the most significant bits with ones (i.e., arithmetic shift), if the number is signed
+ and negative, else we fill up with zeroes. For "toShift &gt;= bitsize", we return a bitvector
+ with value zero, if number was zero or positive, or all bits set to one, if negative.</div>
+</li>
+</ul>
+<a id="shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftLeft</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftLeft&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                           <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</pre>
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift. The result has the same length as the given number. On the right side, we fill up
+ the least significant bits with zeroes. For "toShift &gt;= bitsize", we return a bitvector with
+ value zero.</div>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                            int&nbsp;toRotate)</pre>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>toRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                            <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</pre>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>toRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                             int&nbsp;toRotate)</pre>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>toRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                             <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</pre>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>toRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;concat&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;prefix,
+                        <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;suffix)</pre>
+<div class="block">Concatenate two bitvectors.</div>
+</li>
+</ul>
+<a id="extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extract</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extract&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                         int&nbsp;msb,
+                         int&nbsp;lsb)</pre>
+<div class="block">Extract a range of bits from a bitvector. We require <code>0 &lt;= lsb &lt;= msb &lt; bitsize</code>.
+
+ <p>If msb equals lsb, then a single bit will be returned, i.e., the bit from the given
+ position. If lsb equals 0 and msb equals bitsize-1, then the complete bitvector will be
+ returned.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - from where the bits are extracted.</dd>
+<dd><code>msb</code> - Upper index for the most significant bit. Must be in interval from lsb to bitsize-1.</dd>
+<dd><code>lsb</code> - Lower index for the least significant bit. Must be in interval from 0 to msb.</dd>
+</dl>
+</li>
+</ul>
+<a id="extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extend</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extend&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                        int&nbsp;extensionBits,
+                        boolean&nbsp;signed)</pre>
+<div class="block">Extend a bitvector to the left (add most significant bits). If signed is set and the given
+ number is negative, then the bit "1" will be added several times, else "0".</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - The bitvector to extend.</dd>
+<dd><code>extensionBits</code> - How many bits to add.</dd>
+<dd><code>signed</code> - Whether the extension should depend on the sign bit.</dd>
+</dl>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</pre>
+<div class="block">All given bitvectors are pairwise unequal.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BooleanFormula.html b/api/org/sosy_lab/java_smt/api/BooleanFormula.html
new file mode 100644
index 0000000000..cac250c763
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BooleanFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BooleanFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BooleanFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BooleanFormula" class="title">Interface BooleanFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">BooleanFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the boolean sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/BooleanFormulaManager.html b/api/org/sosy_lab/java_smt/api/BooleanFormulaManager.html
new file mode 100644
index 0000000000..e73e2b843e
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/BooleanFormulaManager.html
@@ -0,0 +1,769 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BooleanFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BooleanFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":18,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface BooleanFormulaManager" class="title">Interface BooleanFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">BooleanFormulaManager</span></pre>
+<div class="block">Manager for dealing with boolean formulas.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(java.util.Collection)">and</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+   <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+           <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;cond,
+          T&nbsp;f1,
+          T&nbsp;f2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing <code>IF cond THEN f1 ELSE f2</code>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+           <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "FALSE".</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "TRUE".</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>default <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBoolean(boolean)">makeBoolean</a></span>&#8203;(boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> representing the given value.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeFalse()">makeFalse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeTrue()">makeTrue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BooleanFormula)">not</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing a negation of the argument.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(java.util.Collection)">or</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+  <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunction()">toConjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunction()">toDisjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                    <a href="visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+     <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with the given visitor.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+   <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeBoolean(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBoolean</h4>
+<pre class="methodSignature">default&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeBoolean&#8203;(boolean&nbsp;value)</pre>
+<div class="block">Returns a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> representing the given value.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the boolean value the returned <code>Formula</code> should represent</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a Formula representing the given value</dd>
+</dl>
+</li>
+</ul>
+<a id="makeTrue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeTrue</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeTrue()</pre>
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+</li>
+</ul>
+<a id="makeFalse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeFalse</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeFalse()</pre>
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+                           <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</pre>
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula1</code> - a Formula</dd>
+<dd><code>formula2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>formula1 &lt;-&gt; formula2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>implication</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;implication&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+                           <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>formula1 =&gt; formula2</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isTrue</h4>
+<pre class="methodSignature">boolean&nbsp;isTrue&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block">Check, if the formula is the formula "TRUE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==1" are recognized and rewritten as
+ "TRUE", and thus such formulas might also be matched.</div>
+</li>
+</ul>
+<a id="isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFalse</h4>
+<pre class="methodSignature">boolean&nbsp;isFalse&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block">Check, if the formula is the formula "FALSE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==2" are recognized and rewritten as
+ "FALSE", and thus such formulas might also be matched.</div>
+</li>
+</ul>
+<a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ifThenElse</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;ifThenElse&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;cond,
+                                 T&nbsp;f1,
+                                 T&nbsp;f2)</pre>
+<div class="block">Creates a formula representing <code>IF cond THEN f1 ELSE f2</code>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>cond</code> - a Formula</dd>
+<dd><code>f1</code> - a Formula</dd>
+<dd><code>f2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>(IF cond THEN f1 ELSE f2)</dd>
+</dl>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;not&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits)</pre>
+<div class="block">Creates a formula representing a negation of the argument.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>!bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                   <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="toConjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunction</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunction()</pre>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                  <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toDisjunction</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunction()</pre>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;xor&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                   <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+            <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</pre>
+<div class="block">Visit the formula with the given visitor.</div>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">void&nbsp;visitRecursively&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                      <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block">Visit the formula recursively with a given <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transformRecursively&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                    <a href="visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</pre>
+<div class="block">Visit the formula recursively with a given <a href="visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>. The arguments each
+ visitor method receives are <b>already</b> transformed.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+</li>
+</ul>
+<a id="toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunctionArgs</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunctionArgs&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                      boolean&nbsp;flatten)</pre>
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A /\ B /\ C</code>: <code>A, B, C</code>
+   <li>For "true": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toDisjunctionArgs</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunctionArgs&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                      boolean&nbsp;flatten)</pre>
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A \/ B \/ C</code>: <code>A, B, C</code>
+   <li>For "false": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/EnumerationFormula.html b/api/org/sosy_lab/java_smt/api/EnumerationFormula.html
new file mode 100644
index 0000000000..2fffaf1a19
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/EnumerationFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>EnumerationFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="EnumerationFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface EnumerationFormula" class="title">Interface EnumerationFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">EnumerationFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the enumeration sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/EnumerationFormulaManager.html b/api/org/sosy_lab/java_smt/api/EnumerationFormulaManager.html
new file mode 100644
index 0000000000..d654b5921c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/EnumerationFormulaManager.html
@@ -0,0 +1,352 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>EnumerationFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="EnumerationFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":18,"i1":6,"i2":6,"i3":6,"i4":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface EnumerationFormulaManager" class="title">Interface EnumerationFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></code>, <code><a href="../delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></code>, <code><a href="../delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">EnumerationFormulaManager</span></pre>
+<div class="block">This interface represents the theory of enumeration, i.e., datatype of limited domain sort (as
+ defined in the SMTLIB2 standard).</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>default <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;pElementNames)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;ppElementNames)</code></th>
+<td class="colLast">
+<div class="block">Declare an enumeration.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></span>&#8203;(<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+           <a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+            <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareEnumeration(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature"><a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;ppElementNames)</pre>
+<div class="block">Declare an enumeration.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pName</code> - the unique name to identify the new enumeration type.</dd>
+<dd><code>ppElementNames</code> - names for all individual elements of this enumeration type.</dd>
+</dl>
+</li>
+</ul>
+<a id="declareEnumeration(java.lang.String,java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature">default&nbsp;<a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;pElementNames)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#declareEnumeration(java.lang.String,java.util.Set)"><code>declareEnumeration(String, Set)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstant</h4>
+<pre class="methodSignature"><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeConstant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block">Creates a constant of given enumeration type with exactly the given name. This constant
+ (symbol) needs to be an element from the given enumeration type.</div>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+                           <a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</pre>
+<div class="block">Make a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/Evaluator.html b/api/org/sosy_lab/java_smt/api/Evaluator.html
new file mode 100644
index 0000000000..e5f6d74b63
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/Evaluator.html
@@ -0,0 +1,483 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Evaluator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Evaluator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface Evaluator" class="title">Interface Evaluator</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Subinterfaces:</dt>
+<dd><code><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></code>, <code><a href="../basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></code>, <code><a href="../basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></code>, <code><a href="../delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">Evaluator</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">This class provides methods to get concrete evaluations for formulas from the satisfiable solver
+ environment.
+
+ <p>This class can be (but does not need to be!) a cheaper and more light-weight version of a
+ <a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><code>Model</code></a> and it misses several features compared to a full <a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><code>Model</code></a>:
+
+ <ul>
+   <li>no listing of model assignments, i.e., the user needs to query each formula on its own,
+   <li>no guaranteed availability after applying any operation on the original prover stack, i.e.,
+       the evaluation is only available directly after querying the solver with a satisfiable
+       environment.
+ </ul>
+
+ <p>If any of these features is required, please use the complete <a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><code>Model</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Free resources associated with this evaluator (existing <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances stay valid,
+ but <a href="#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>evaluate(Formula)</code></a> etc.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eval(T)">eval</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for boolean formulas.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></span>&#8203;(<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for enumeration formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for floating-point formulas.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></span>&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for integer formulas.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></span>&#8203;(<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for rational formulas.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for string formulas.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="eval(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="eval(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eval</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;@Nullable T&nbsp;eval&#8203;(T&nbsp;formula)</pre>
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.
+
+ <p>If a value is not relevant to the satisfiability result, the solver can choose either to
+ insert an arbitrary value (e.g., the value <code>0</code> for the matching type) or just return
+ <code>null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression. The solver
+ will replace all symbols from the formula with their model values and then simplify the formula
+ into a simple formula, e.g., consisting only of a numeral expression.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula to be evaluated.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>evaluation of the given formula or <code>null</code> if the solver does not provide a
+     better evaluation.</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;evaluate&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</pre>
+<div class="block">Evaluate a given formula substituting the values from the model.
+
+ <p>If a value is not relevant to the satisfiability result, the model can choose either an
+ arbitrary value (e.g., the value <code>0</code> for the matching type) or just return <code>
+ null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Either of: - Number (Rational/Double/BigInteger/Long/Integer) - Boolean</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if a formula has unexpected type, e.g. Array.</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for integer formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;evaluate&#8203;(<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for rational formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&nbsp;evaluate&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for boolean formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for bitvector formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for string formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for enumeration formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">@Nullable <a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;evaluate&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</pre>
+<div class="block">Type-safe evaluation for floating-point formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">void&nbsp;close()</pre>
+<div class="block">Free resources associated with this evaluator (existing <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances stay valid,
+ but <a href="#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>evaluate(Formula)</code></a> etc. must not be called again).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FloatingPointFormula.html b/api/org/sosy_lab/java_smt/api/FloatingPointFormula.html
new file mode 100644
index 0000000000..9cb8e74cb5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FloatingPointFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FloatingPointFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FloatingPointFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface FloatingPointFormula" class="title">Interface FloatingPointFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">FloatingPointFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">Formula of the floating point sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html b/api/org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html
new file mode 100644
index 0000000000..8590aab4e4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html
@@ -0,0 +1,1173 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FloatingPointFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FloatingPointFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface FloatingPointFormulaManager" class="title">Interface FloatingPointFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">FloatingPointFormulaManager</span></pre>
+<div class="block">Floating point operations.
+
+ <p>Most operations are overloaded: there is an option of either using the default rounding mode
+ (set via the option <code>solver.floatingPointRoundingMode</code>), or providing the rounding mode
+ explicitly.
+
+ <p>If the result of an operation can not be exactly represented by the available floating-point
+ type, i.e., the given precision is insufficient, the result is rounded to the nearest possible
+ floating-point representation, depending on the given rounding mode.
+
+ <p>Example: If the input number is too large to be represented as a floating point with the given
+ type, it will be converted to positive infinity (+inf) or negative infinity (-inf). If the input
+ number is too small to be represented with the given type (closer to zero than the smallest
+ possible floating-point number), it will be converted to zero, with the sign preserved.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+   <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+          <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for assigning one floating-point term to another.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+        boolean&nbsp;signed,
+        <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+        boolean&nbsp;signed,
+        <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+        <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+      boolean&nbsp;signed,
+      <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+      boolean&nbsp;signed,
+      <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+      <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+      <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+      <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+      <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                    <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN).</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector</a></span>&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                 <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+               <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+           <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+            <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity</a></span>&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN</a></span>&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+          boolean&nbsp;signBit,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity</a></span>&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;dividend,
+         <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divisor)</code></th>
+<td class="colLast">
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y.</div>
+</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula,
+     <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+    <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector</a></span>&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+</li>
+</ul>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+                                boolean&nbsp;signBit,
+                                <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>exponent</code> - the exponent part of the floating point number</dd>
+<dd><code>mantissa</code> - the mantissa part of the floating point number</dd>
+<dd><code>signBit</code> - the sign bit of the floating point number, e.g., true for negative numbers</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                  <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePlusInfinity</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makePlusInfinity&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMinusInfinity</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeMinusInfinity&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNaN</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNaN&#8203;(<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+                             boolean&nbsp;signed,
+                             <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType)</pre>
+<div class="block">Build a formula of compatible type from a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of floating-point type</dd>
+<dd><code>signed</code> - if a <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if an incompatible type is used, e.g. a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> cannot be cast to <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+                             boolean&nbsp;signed,
+                             <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+                             <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Build a formula of compatible type from a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of floating-point type</dd>
+<dd><code>signed</code> - if a <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if an incompatible type is used, e.g. a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> cannot be cast to <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+                              boolean&nbsp;signed,
+                              <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType)</pre>
+<div class="block">Build a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of compatible type</dd>
+<dd><code>signed</code> - if a <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if an incompatible type is used, e.g. a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>
+     cannot be cast to <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+                              boolean&nbsp;signed,
+                              <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+                              <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">Build a <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of compatible type</dd>
+<dd><code>signed</code> - if a <a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if an incompatible type is used, e.g. a <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>
+     cannot be cast to <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a id="fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fromIeeeBitvector</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;fromIeeeBitvector&#8203;(<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                       <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</pre>
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type. The sum of the sizes of exponent and mantissa of the
+ target type plus 1 (for the sign bit) needs to be equal to the size of the bitvector.
+
+ <p>Note: This method will return a value that is (numerically) far away from the original
+ value. This method is completely different from <a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"><code>castFrom(org.sosy_lab.java_smt.api.Formula, boolean, org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)</code></a>, which will produce a
+ floating-point value close to the numeral value.</div>
+</li>
+</ul>
+<a id="toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIeeeBitvector</h4>
+<pre class="methodSignature"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toIeeeBitvector&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format. The size of the resulting bitvector is the sum of the
+ sizes of the exponent and mantissa of the input formula plus 1 (for the sign bit).</div>
+</li>
+</ul>
+<a id="round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>round</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;round&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula,
+                           <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</pre>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;negate&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>abs</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;abs&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>max</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;max&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                         <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>min</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;min&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                         <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+                          <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                         <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                         <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                         <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                              <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                              <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                              <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                            <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                            <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                            <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                              <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                              <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                              <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;remainder&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;dividend,
+                               <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divisor)</pre>
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y. The result can be negative even for two
+ positive arguments, e.g. "rem(5, 4) == 1" and "rem(5, 6) == -1", as opposed to integer modulo
+ operators.</div>
+</li>
+</ul>
+<a id="assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assignment</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;assignment&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                          <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<div class="block">Create a term for assigning one floating-point term to another. This means both terms are
+ considered equal afterwards. This method is the same as the method <code>equal</code> for other
+ theories.</div>
+</li>
+</ul>
+<a id="equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equalWithFPSemantics</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equalWithFPSemantics&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                    <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN). Be careful to not use this method when you really
+ need <a href="#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"><code>assignment(FloatingPointFormula, FloatingPointFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                           <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                               <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                        <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                            <a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNaN</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNaN&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isInfinity</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isInfinity&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isZero</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isZero&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNormal</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNormal&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSubnormal</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isSubnormal&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isNegative</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNegative&#8203;(<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FloatingPointNumber.html b/api/org/sosy_lab/java_smt/api/FloatingPointNumber.html
new file mode 100644
index 0000000000..c82a758daa
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FloatingPointNumber.html
@@ -0,0 +1,570 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FloatingPointNumber (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FloatingPointNumber (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":9,"i8":9,"i9":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FloatingPointNumber" class="title">Class FloatingPointNumber</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FloatingPointNumber</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>@Immutable
+public abstract class <span class="typeNameLabel">FloatingPointNumber</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Represents a floating-point number with customizable precision, consisting of sign, exponent, and
+ mantissa components.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DOUBLE_PRECISION_EXPONENT_SIZE">DOUBLE_PRECISION_EXPONENT_SIZE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DOUBLE_PRECISION_MANTISSA_SIZE">DOUBLE_PRECISION_MANTISSA_SIZE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SINGLE_PRECISION_EXPONENT_SIZE">SINGLE_PRECISION_EXPONENT_SIZE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SINGLE_PRECISION_MANTISSA_SIZE">SINGLE_PRECISION_MANTISSA_SIZE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">FloatingPointNumber</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>double</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#doubleValue()">doubleValue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">compute a representation as Java-based double value, if possible.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>float</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floatValue()">floatValue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">compute a representation as Java-based float value, if possible.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>abstract <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getExponent()">getExponent</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The exponent of the floating-point number, given as numeric value.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>abstract int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getExponentSize()">getExponentSize</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>abstract <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMantissa()">getMantissa</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The mantissa (aka significand) of the floating-point number, given as numeric value.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>abstract int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMantissaSize()">getMantissaSize</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>abstract boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSign()">getSign</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Whether the number is positive (TRUE) or negative (FALSE).</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>static <a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#of(boolean,java.math.BigInteger,java.math.BigInteger,int,int)">of</a></span>&#8203;(boolean&nbsp;sign,
+  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+  int&nbsp;exponentSize,
+  int&nbsp;mantissaSize)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>static <a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#of(java.lang.String,int,int)">of</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;bits,
+  int&nbsp;exponentSize,
+  int&nbsp;mantissaSize)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a bit-representation of sign-bit, exponent, and mantissa, i.e., a concatenation of their
+ bit-representations in this exact ordering.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="SINGLE_PRECISION_EXPONENT_SIZE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SINGLE_PRECISION_EXPONENT_SIZE</h4>
+<pre>public static final&nbsp;int SINGLE_PRECISION_EXPONENT_SIZE</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.api.FloatingPointNumber.SINGLE_PRECISION_EXPONENT_SIZE">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+<a id="SINGLE_PRECISION_MANTISSA_SIZE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SINGLE_PRECISION_MANTISSA_SIZE</h4>
+<pre>public static final&nbsp;int SINGLE_PRECISION_MANTISSA_SIZE</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.api.FloatingPointNumber.SINGLE_PRECISION_MANTISSA_SIZE">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+<a id="DOUBLE_PRECISION_EXPONENT_SIZE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DOUBLE_PRECISION_EXPONENT_SIZE</h4>
+<pre>public static final&nbsp;int DOUBLE_PRECISION_EXPONENT_SIZE</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.api.FloatingPointNumber.DOUBLE_PRECISION_EXPONENT_SIZE">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+<a id="DOUBLE_PRECISION_MANTISSA_SIZE">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DOUBLE_PRECISION_MANTISSA_SIZE</h4>
+<pre>public static final&nbsp;int DOUBLE_PRECISION_MANTISSA_SIZE</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.api.FloatingPointNumber.DOUBLE_PRECISION_MANTISSA_SIZE">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>FloatingPointNumber</h4>
+<pre>public&nbsp;FloatingPointNumber()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getSign()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSign</h4>
+<pre class="methodSignature">public abstract&nbsp;boolean&nbsp;getSign()</pre>
+<div class="block">Whether the number is positive (TRUE) or negative (FALSE).</div>
+</li>
+</ul>
+<a id="getExponent()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getExponent</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;getExponent()</pre>
+<div class="block">The exponent of the floating-point number, given as numeric value.</div>
+</li>
+</ul>
+<a id="getMantissa()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMantissa</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;getMantissa()</pre>
+<div class="block">The mantissa (aka significand) of the floating-point number, given as numeric value.</div>
+</li>
+</ul>
+<a id="getExponentSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getExponentSize</h4>
+<pre class="methodSignature">public abstract&nbsp;int&nbsp;getExponentSize()</pre>
+</li>
+</ul>
+<a id="getMantissaSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMantissaSize</h4>
+<pre class="methodSignature">public abstract&nbsp;int&nbsp;getMantissaSize()</pre>
+</li>
+</ul>
+<a id="of(boolean,java.math.BigInteger,java.math.BigInteger,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>of</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;of&#8203;(boolean&nbsp;sign,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+                                     int&nbsp;exponentSize,
+                                     int&nbsp;mantissaSize)</pre>
+</li>
+</ul>
+<a id="of(java.lang.String,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>of</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;of&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;bits,
+                                     int&nbsp;exponentSize,
+                                     int&nbsp;mantissaSize)</pre>
+</li>
+</ul>
+<a id="floatValue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>floatValue</h4>
+<pre class="methodSignature">public&nbsp;float&nbsp;floatValue()</pre>
+<div class="block">compute a representation as Java-based float value, if possible.</div>
+</li>
+</ul>
+<a id="doubleValue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>doubleValue</h4>
+<pre class="methodSignature">public&nbsp;double&nbsp;doubleValue()</pre>
+<div class="block">compute a representation as Java-based double value, if possible.</div>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<div class="block">Return a bit-representation of sign-bit, exponent, and mantissa, i.e., a concatenation of their
+ bit-representations in this exact ordering.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html b/api/org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html
new file mode 100644
index 0000000000..0858ca57fd
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html
@@ -0,0 +1,417 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FloatingPointRoundingMode (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FloatingPointRoundingMode (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum FloatingPointRoundingMode" class="title">Enum FloatingPointRoundingMode</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FloatingPointRoundingMode</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public enum <span class="typeNameLabel">FloatingPointRoundingMode</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&gt;</pre>
+<div class="block">Possible floating point rounding modes.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NEAREST_TIES_AWAY">NEAREST_TIES_AWAY</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NEAREST_TIES_TO_EVEN">NEAREST_TIES_TO_EVEN</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TOWARD_NEGATIVE">TOWARD_NEGATIVE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TOWARD_POSITIVE">TOWARD_POSITIVE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TOWARD_ZERO">TOWARD_ZERO</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="NEAREST_TIES_TO_EVEN">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NEAREST_TIES_TO_EVEN</h4>
+<pre>public static final&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a> NEAREST_TIES_TO_EVEN</pre>
+</li>
+</ul>
+<a id="NEAREST_TIES_AWAY">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NEAREST_TIES_AWAY</h4>
+<pre>public static final&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a> NEAREST_TIES_AWAY</pre>
+</li>
+</ul>
+<a id="TOWARD_POSITIVE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>TOWARD_POSITIVE</h4>
+<pre>public static final&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a> TOWARD_POSITIVE</pre>
+</li>
+</ul>
+<a id="TOWARD_NEGATIVE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>TOWARD_NEGATIVE</h4>
+<pre>public static final&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a> TOWARD_NEGATIVE</pre>
+</li>
+</ul>
+<a id="TOWARD_ZERO">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>TOWARD_ZERO</h4>
+<pre>public static final&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a> TOWARD_ZERO</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (FloatingPointRoundingMode c : FloatingPointRoundingMode.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html b/api/org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html
new file mode 100644
index 0000000000..b4b3568fe4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html
@@ -0,0 +1,220 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FloatingPointRoundingModeFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FloatingPointRoundingModeFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface FloatingPointRoundingModeFormula" class="title">Interface FloatingPointRoundingModeFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">FloatingPointRoundingModeFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">Formula representing a rounding mode for floating-point operations. This is currently unused by
+ the API but necessary for traversal of formulas with such terms.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/Formula.html b/api/org/sosy_lab/java_smt/api/Formula.html
new file mode 100644
index 0000000000..0bb8a6e297
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/Formula.html
@@ -0,0 +1,313 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Formula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Formula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface Formula" class="title">Interface Formula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Subinterfaces:</dt>
+<dd><code><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code>, <code><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code>, <code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code>, <code><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code>, <code><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code>, <code><a href="FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointRoundingModeFormula</a></code>, <code><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></code>, <code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code>, <code><a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></code>, <code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code>, <code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">Formula</span></pre>
+<div class="block">An arbitrary SMT formula.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;other)</code></th>
+<td class="colLast">
+<div class="block">checks whether the other object is a formula of the same structure.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">
+<div class="block">returns a valid hashCode satisfying the constraints given by <a href="#equals(java.lang.Object)"><code>equals(java.lang.Object)</code></a>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">returns an arbitrary representation of the formula, might be human- or machine-readable.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<div class="block">returns an arbitrary representation of the formula, might be human- or machine-readable.
+
+ <p>We do not guarantee that the returned String is in any way related to the formula. The
+ solver might apply escaping or even un-escaping. A user should not use the returned String for
+ further processing. For analyzing formulas, we recommend using a <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;other)</pre>
+<div class="block">checks whether the other object is a formula of the same structure. Does not apply an expensive
+ SAT-check to check equisatisfiability.
+
+ <p>Two formulas that are structured in the same way, are determined as "equal". Due to
+ transformations and simplifications, two equisatisfiable formulas with different structure
+ might not be determined as "equal".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">int&nbsp;hashCode()</pre>
+<div class="block">returns a valid hashCode satisfying the constraints given by <a href="#equals(java.lang.Object)"><code>equals(java.lang.Object)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaManager.html b/api/org/sosy_lab/java_smt/api/FormulaManager.html
new file mode 100644
index 0000000000..4b6f61ee2c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaManager.html
@@ -0,0 +1,966 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface FormulaManager" class="title">Interface FormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">FormulaManager</span></pre>
+<div class="block">FormulaManager class contains all operations which can be performed on formulas.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input,
+           <a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)</code></th>
+<td class="colLast">
+<div class="block">Apply a tactic which performs formula transformation.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pT)</code></th>
+<td class="colLast">
+<div class="block">Serialize an input formula to an SMT-LIB format.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#escape(java.lang.String)">escape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayFormulaManager()">getArrayFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Array-Theory.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBitvectorFormulaManager()">getBitvectorFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Bitvector-Theory.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBooleanFormulaManager()">getBooleanFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Boolean-Theory.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnumerationFormulaManager()">getEnumerationFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloatingPointFormulaManager()">getFloatingPointFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Floating-Point-Theory.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType(T)">getFormulaType</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Returns the type of the given Formula.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIntegerFormulaManager()">getIntegerFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Integer-Theory.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getQuantifiedFormulaManager()">getQuantifiedFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the interface for handling quantifiers.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRationalFormulaManager()">getRationalFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Rational-Theory.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSLFormulaManager()">getSLFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStringFormulaManager()">getStringFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the String Theory.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUFManager()">getUFManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isValidName(java.lang.String)">isValidName</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication</a></span>&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication</a></span>&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parse(java.lang.String)">parse</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)</code></th>
+<td class="colLast">
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#simplify(T)">simplify</a></span>&#8203;(T&nbsp;input)</code></th>
+<td class="colLast">
+<div class="block">Simplify an input formula, while ensuring equivalence.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substitute(T,java.util.Map)">substitute</a></span>&#8203;(T&nbsp;f,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;fromToMapping)</code></th>
+<td class="colLast">
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(T&nbsp;f,
+                    <a href="visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+             <a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</code></th>
+<td class="colLast">
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unescape(java.lang.String)">unescape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+     <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with a given visitor.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getIntegerFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIntegerFormulaManager</h4>
+<pre class="methodSignature"><a href="IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;getIntegerFormulaManager()</pre>
+<div class="block">Returns the Integer-Theory. Because most SAT-solvers support automatic casting between Integer-
+ and Rational-Theory, the Integer- and the RationalFormulaManager both return the same Formulas
+ for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL and others.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getRationalFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRationalFormulaManager</h4>
+<pre class="methodSignature"><a href="RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;getRationalFormulaManager()</pre>
+<div class="block">Returns the Rational-Theory. Because most SAT-solvers support automatic casting between
+ Integer- and Rational-Theory, the Integer- and the RationalFormulaManager both return the same
+ Formulas for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL, etc.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getBooleanFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBooleanFormulaManager</h4>
+<pre class="methodSignature"><a href="BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;getBooleanFormulaManager()</pre>
+<div class="block">Returns the Boolean-Theory.</div>
+</li>
+</ul>
+<a id="getArrayFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayFormulaManager</h4>
+<pre class="methodSignature"><a href="ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>&nbsp;getArrayFormulaManager()</pre>
+<div class="block">Returns the Array-Theory.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getBitvectorFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBitvectorFormulaManager</h4>
+<pre class="methodSignature"><a href="BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>&nbsp;getBitvectorFormulaManager()</pre>
+<div class="block">Returns the Bitvector-Theory.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getFloatingPointFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFloatingPointFormulaManager</h4>
+<pre class="methodSignature"><a href="FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>&nbsp;getFloatingPointFormulaManager()</pre>
+<div class="block">Returns the Floating-Point-Theory.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getUFManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUFManager</h4>
+<pre class="methodSignature"><a href="UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>&nbsp;getUFManager()</pre>
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+</li>
+</ul>
+<a id="getSLFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSLFormulaManager</h4>
+<pre class="methodSignature"><a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>&nbsp;getSLFormulaManager()</pre>
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getQuantifiedFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getQuantifiedFormulaManager</h4>
+<pre class="methodSignature"><a href="QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>&nbsp;getQuantifiedFormulaManager()</pre>
+<div class="block">Returns the interface for handling quantifiers.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getStringFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStringFormulaManager</h4>
+<pre class="methodSignature"><a href="StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>&nbsp;getStringFormulaManager()</pre>
+<div class="block">Returns the String Theory.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="getEnumerationFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnumerationFormulaManager</h4>
+<pre class="methodSignature"><a href="EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>&nbsp;getEnumerationFormulaManager()</pre>
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsupportedOperationException</a></code> - If the theory is not supported by the solver.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeVariable&#8203;(<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formulaType</code> - the type of the variable.</dd>
+<dd><code>name</code> - the name of the variable.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the created variable.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                      <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaType(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="getFormulaType(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;getFormulaType&#8203;(T&nbsp;formula)</pre>
+<div class="block">Returns the type of the given Formula.</div>
+</li>
+</ul>
+<a id="parse(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>parse</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;parse&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)
+              throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></pre>
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format. We expect exactly one
+ assertion to be contained in the query.
+
+ <p>Example: <code>(declare-fun x () Int)(assert (= 0 x))</code>
+
+ <p>It depends on the used SMT solver whether the given query must be self-contained and include
+ declarations for all used symbols or not, and also whether the query is allowed to contain
+ symbols with equal name, but different type/sort than existing symbols. The safest way is to
+ always declare all used symbols and to avoid conflicting types for them.
+
+ <p>The behavior of the SMT solver is undefined if commands are provided in the SMTLIB-based
+ String that are different from declarations or an assertion, such as <code>push/pop</code> or
+ <code>set-info</code>. Most solvers just ignore those commands.
+
+ <p>Variables that are defined, but not used in the assertion, might be ignored by the SMT
+ solver and they might not be available for later usage.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A single formula from the assertion in the internal representation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the string cannot be parsed.</dd>
+</dl>
+</li>
+</ul>
+<a id="dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dumpFormula</h4>
+<pre class="methodSignature"><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a>&nbsp;dumpFormula&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pT)</pre>
+<div class="block">Serialize an input formula to an SMT-LIB format. Very useful when passing formulas between
+ different solvers.
+
+ <p>To get a String, simply call <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink"><code>Object.toString()</code></a> on the returned object. This method
+ is lazy and does not create an output string until the returned object is actually used.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>SMT-LIB formula serialization.</dd>
+</dl>
+</li>
+</ul>
+<a id="applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyTactic</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyTactic&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input,
+                           <a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)
+                    throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Apply a tactic which performs formula transformation. The available tactics depend on the used
+ solver.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="simplify(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="simplify(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>simplify</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;simplify&#8203;(T&nbsp;input)
+                        throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Simplify an input formula, while ensuring equivalence.
+
+ <p>For solvers that do not provide a simplification API, an original formula is returned.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>input</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Simplified version of the formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+            <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block">Visit the formula with a given visitor.
+
+ <p>This method does <b>not recursively visit</b> sub-components of a formula its own, so the
+ given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a> needs to call such visitation on its own.
+
+ <p>Please be aware that calling this method might cause extensive stack usage depending on the
+ nesting of the given formula and the given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. Additionally, sub-formulas
+ that are used several times in the formula might be visited several times. For an efficient
+ formula traversing, we also provide <a href="#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>visitRecursively(Formula, FormulaVisitor)</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - formula to be visited</dd>
+<dd><code>rFormulaVisitor</code> - an implementation that provides steps for each kind of formula.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">void&nbsp;visitRecursively&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                      <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block">Visit the formula recursively with a given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. This method traverses
+ sub-components of a formula automatically, depending on the return value of the <a href="visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>TraversalProcess</code></a> in the given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in PRE-ORDER manner with regard to caching identical subtrees, i.e., a
+ parent will be visited BEFORE its children. The unmodified child-formulas are passed as
+ argument to the parent's visitation.</div>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a><a id="transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;transformRecursively&#8203;(T&nbsp;f,
+                                           <a href="visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</pre>
+<div class="block">Visit the formula recursively with a given <a href="visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in POST-ORDER manner with regard to caching identical subtrees, i.e.,
+ a parent will be visited AFTER its children. The result of the child-visitation is passed as
+ argument to the parent's visitation.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pFormulaVisitor</code> - Transformation described by the user.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariables(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariables</h4>
+<pre class="methodSignature"><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariables&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature"><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariablesAndUFs&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas. If an UF occurs multiple times
+     in the input formula, an arbitrary instance of an application of this UF is in the map.</dd>
+</dl>
+</li>
+</ul>
+<a id="substitute(org.sosy_lab.java_smt.api.Formula,java.util.Map)">
+<!--   -->
+</a><a id="substitute(T,java.util.Map)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substitute</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;substitute&#8203;(T&nbsp;f,
+                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;fromToMapping)</pre>
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.
+
+ <p>E.g. if <code>changeFrom</code> contains a variable <code>a</code> and <code>changeTo</code> contains a
+ variable <code>b</code> all occurrences of <code>a</code> will be changed to <code>b</code> in the returned
+ formula.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula to change.</dd>
+<dd><code>fromToMapping</code> - Mapping of old and new formula parts.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula with parts replaced.</dd>
+</dl>
+</li>
+</ul>
+<a id="translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>translateFrom</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;translateFrom&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+                             <a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</pre>
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.
+ Default implementation relies on string serialization (<a href="#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>dumpFormula(BooleanFormula)</code></a> and
+ <a href="#parse(java.lang.String)"><code>parse(String)</code></a>), but each solver may implement more efficient translation between its
+ own contexts.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Formula belonging to <code>otherContext</code>.</dd>
+<dd><code>otherManager</code> - Formula manager belonging to the other context.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula belonging to <code>this</code> context.</dd>
+</dl>
+</li>
+</ul>
+<a id="isValidName(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isValidName</h4>
+<pre class="methodSignature">boolean&nbsp;isValidName&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.
+
+ <p>We explicitly state that with further development of SMT solvers and the SMTLib
+ specification, the list of forbidden variable names may change in the future. Users should if
+ possible not use logical or mathematical operators, or keywords strongly depending on SMTlib.
+
+ <p>If a variable name is rejected, a possibility is escaping, e.g. either substituting the
+ whole variable name or just every invalid character with an escaped form. We recommend using an
+ escape sequence based on the token "JAVASMT", because it might be unusual enough to appear when
+ encoding a user's problem in SMT. Please note that you might also have to handle escaping the
+ escape sequence. Examples:
+
+ <ul>
+   <li>the invalid variable name <code>"="</code> (logical operator for equality) can be
+       replaced with a string <code>"JAVASMT_EQUALS"</code>.
+   <li>the invalid SMTlib-escaped variable name <code>"|test|"</code> (the solver SMTInterpol
+       does not allow the pipe symbol <code>"|"</code> in names) can be replaced with <code>
+       "JAVASMT_PIPEtestJAVASMT_PIPE"</code>.
+ </ul></div>
+</li>
+</ul>
+<a id="escape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>escape</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;escape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.
+
+ <p>See <a href="#isValidName(java.lang.String)"><code>isValidName(String)</code></a> for further details.</div>
+</li>
+</ul>
+<a id="unescape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>unescape</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;unescape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.
+
+ <p>The result is undefined for Strings that are not properly escaped.
+
+ <p>See <a href="#isValidName(java.lang.String)"><code>isValidName(String)</code></a> for further details.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html b/api/org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html
new file mode 100644
index 0000000000..f648cd5618
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html
@@ -0,0 +1,423 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType.ArrayFormulaType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType.ArrayFormulaType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType.ArrayFormulaType" class="title">Class FormulaType.ArrayFormulaType&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.FormulaType</a>&lt;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType&lt;TI,&#8203;TE&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</dd>
+</dl>
+<hr>
+<pre>public static final class <span class="typeNameLabel">FormulaType.ArrayFormulaType&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</span>
+extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;, <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>, <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>, <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>, <a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#BooleanType">BooleanType</a>, <a href="FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a>, <a href="FormulaType.html#IntegerType">IntegerType</a>, <a href="FormulaType.html#RationalType">RationalType</a>, <a href="FormulaType.html#RegexType">RegexType</a>, <a href="FormulaType.html#StringType">StringType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getElementType()">getElementType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIndexType()">getIndexType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isArrayType()">isArrayType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toSMTLIBString()">toSMTLIBString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#fromString(java.lang.String)">fromString</a>, <a href="FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a>, <a href="FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a>, <a href="FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a>, <a href="FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a>, <a href="FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType</a>, <a href="FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a>, <a href="FormulaType.html#isBitvectorType()">isBitvectorType</a>, <a href="FormulaType.html#isBooleanType()">isBooleanType</a>, <a href="FormulaType.html#isEnumerationType()">isEnumerationType</a>, <a href="FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a>, <a href="FormulaType.html#isFloatingPointType()">isFloatingPointType</a>, <a href="FormulaType.html#isIntegerType()">isIntegerType</a>, <a href="FormulaType.html#isNumeralType()">isNumeralType</a>, <a href="FormulaType.html#isRationalType()">isRationalType</a>, <a href="FormulaType.html#isRegexType()">isRegexType</a>, <a href="FormulaType.html#isSLType()">isSLType</a>, <a href="FormulaType.html#isStringType()">isStringType</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getElementType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getElementType</h4>
+<pre class="methodSignature">public&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a>&gt;&nbsp;getElementType()</pre>
+</li>
+</ul>
+<a id="getIndexType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIndexType</h4>
+<pre class="methodSignature">public&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a>&gt;&nbsp;getIndexType()</pre>
+</li>
+</ul>
+<a id="isArrayType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isArrayType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isArrayType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="FormulaType.html#isArrayType()">isArrayType</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toString()">toString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toSMTLIBString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSMTLIBString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toSMTLIBString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="FormulaType.html#toSMTLIBString()">FormulaType</a></code></span></div>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toSMTLIBString()">toSMTLIBString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html b/api/org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html
new file mode 100644
index 0000000000..ed7a9b88bc
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html
@@ -0,0 +1,410 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType.BitvectorType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType.BitvectorType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType.BitvectorType" class="title">Class FormulaType.BitvectorType</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.FormulaType</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType.BitvectorType</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</dd>
+</dl>
+<hr>
+<pre>@Immutable
+public static final class <span class="typeNameLabel">FormulaType.BitvectorType</span>
+extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;, <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>, <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>, <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>, <a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#BooleanType">BooleanType</a>, <a href="FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a>, <a href="FormulaType.html#IntegerType">IntegerType</a>, <a href="FormulaType.html#RationalType">RationalType</a>, <a href="FormulaType.html#RegexType">RegexType</a>, <a href="FormulaType.html#StringType">StringType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;pObj)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSize()">getSize</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isBitvectorType()">isBitvectorType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toSMTLIBString()">toSMTLIBString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#fromString(java.lang.String)">fromString</a>, <a href="FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a>, <a href="FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a>, <a href="FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a>, <a href="FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a>, <a href="FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType</a>, <a href="FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a>, <a href="FormulaType.html#isArrayType()">isArrayType</a>, <a href="FormulaType.html#isBooleanType()">isBooleanType</a>, <a href="FormulaType.html#isEnumerationType()">isEnumerationType</a>, <a href="FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a>, <a href="FormulaType.html#isFloatingPointType()">isFloatingPointType</a>, <a href="FormulaType.html#isIntegerType()">isIntegerType</a>, <a href="FormulaType.html#isNumeralType()">isNumeralType</a>, <a href="FormulaType.html#isRationalType()">isRationalType</a>, <a href="FormulaType.html#isRegexType()">isRegexType</a>, <a href="FormulaType.html#isSLType()">isSLType</a>, <a href="FormulaType.html#isStringType()">isStringType</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="isBitvectorType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isBitvectorType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isBitvectorType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="FormulaType.html#isBitvectorType()">isBitvectorType</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getSize()</pre>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toString()">toString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;pObj)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toSMTLIBString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSMTLIBString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toSMTLIBString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="FormulaType.html#toSMTLIBString()">FormulaType</a></code></span></div>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toSMTLIBString()">toSMTLIBString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html b/api/org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html
new file mode 100644
index 0000000000..fcc46efc62
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html
@@ -0,0 +1,437 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType.EnumerationFormulaType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType.EnumerationFormulaType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType.EnumerationFormulaType" class="title">Class FormulaType.EnumerationFormulaType</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.FormulaType</a>&lt;<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</dd>
+</dl>
+<hr>
+<pre>public static final class <span class="typeNameLabel">FormulaType.EnumerationFormulaType</span>
+extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;, <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>, <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>, <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>, <a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#BooleanType">BooleanType</a>, <a href="FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a>, <a href="FormulaType.html#IntegerType">IntegerType</a>, <a href="FormulaType.html#RationalType">RationalType</a>, <a href="FormulaType.html#RegexType">RegexType</a>, <a href="FormulaType.html#StringType">StringType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getCardinality()">getCardinality</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getElements()">getElements</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getName()">getName</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEnumerationType()">isEnumerationType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toSMTLIBString()">toSMTLIBString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#fromString(java.lang.String)">fromString</a>, <a href="FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a>, <a href="FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a>, <a href="FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a>, <a href="FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a>, <a href="FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType</a>, <a href="FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a>, <a href="FormulaType.html#isArrayType()">isArrayType</a>, <a href="FormulaType.html#isBitvectorType()">isBitvectorType</a>, <a href="FormulaType.html#isBooleanType()">isBooleanType</a>, <a href="FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a>, <a href="FormulaType.html#isFloatingPointType()">isFloatingPointType</a>, <a href="FormulaType.html#isIntegerType()">isIntegerType</a>, <a href="FormulaType.html#isNumeralType()">isNumeralType</a>, <a href="FormulaType.html#isRationalType()">isRationalType</a>, <a href="FormulaType.html#isRegexType()">isRegexType</a>, <a href="FormulaType.html#isSLType()">isSLType</a>, <a href="FormulaType.html#isStringType()">isStringType</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getName</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getName()</pre>
+</li>
+</ul>
+<a id="getElements()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getElements</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getElements()</pre>
+</li>
+</ul>
+<a id="getCardinality()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getCardinality</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getCardinality()</pre>
+</li>
+</ul>
+<a id="isEnumerationType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEnumerationType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isEnumerationType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="FormulaType.html#isEnumerationType()">isEnumerationType</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toString()">toString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toSMTLIBString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSMTLIBString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toSMTLIBString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="FormulaType.html#toSMTLIBString()">FormulaType</a></code></span></div>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toSMTLIBString()">toSMTLIBString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html b/api/org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html
new file mode 100644
index 0000000000..1dd649dcc5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html
@@ -0,0 +1,441 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType.FloatingPointType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType.FloatingPointType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType.FloatingPointType" class="title">Class FormulaType.FloatingPointType</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.FormulaType</a>&lt;<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType.FloatingPointType</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</dd>
+</dl>
+<hr>
+<pre>@Immutable
+public static final class <span class="typeNameLabel">FormulaType.FloatingPointType</span>
+extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;, <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>, <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>, <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>, <a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#BooleanType">BooleanType</a>, <a href="FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a>, <a href="FormulaType.html#IntegerType">IntegerType</a>, <a href="FormulaType.html#RationalType">RationalType</a>, <a href="FormulaType.html#RegexType">RegexType</a>, <a href="FormulaType.html#StringType">StringType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getExponentSize()">getExponentSize</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMantissaSize()">getMantissaSize</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTotalSize()">getTotalSize</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return the total size of a value of this type in bits.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFloatingPointType()">isFloatingPointType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toSMTLIBString()">toSMTLIBString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#fromString(java.lang.String)">fromString</a>, <a href="FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a>, <a href="FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a>, <a href="FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a>, <a href="FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a>, <a href="FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType</a>, <a href="FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a>, <a href="FormulaType.html#isArrayType()">isArrayType</a>, <a href="FormulaType.html#isBitvectorType()">isBitvectorType</a>, <a href="FormulaType.html#isBooleanType()">isBooleanType</a>, <a href="FormulaType.html#isEnumerationType()">isEnumerationType</a>, <a href="FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a>, <a href="FormulaType.html#isIntegerType()">isIntegerType</a>, <a href="FormulaType.html#isNumeralType()">isNumeralType</a>, <a href="FormulaType.html#isRationalType()">isRationalType</a>, <a href="FormulaType.html#isRegexType()">isRegexType</a>, <a href="FormulaType.html#isSLType()">isSLType</a>, <a href="FormulaType.html#isStringType()">isStringType</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="isFloatingPointType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFloatingPointType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isFloatingPointType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="FormulaType.html#isFloatingPointType()">isFloatingPointType</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="getExponentSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getExponentSize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getExponentSize()</pre>
+</li>
+</ul>
+<a id="getMantissaSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMantissaSize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getMantissaSize()</pre>
+</li>
+</ul>
+<a id="getTotalSize()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTotalSize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getTotalSize()</pre>
+<div class="block">Return the total size of a value of this type in bits.</div>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;obj)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toString()">toString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="toSMTLIBString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSMTLIBString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toSMTLIBString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="FormulaType.html#toSMTLIBString()">FormulaType</a></code></span></div>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaType.html#toSMTLIBString()">toSMTLIBString</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.NumeralType.html b/api/org/sosy_lab/java_smt/api/FormulaType.NumeralType.html
new file mode 100644
index 0000000000..64648daaf7
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.NumeralType.html
@@ -0,0 +1,360 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType.NumeralType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType.NumeralType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType.NumeralType" class="title">Class FormulaType.NumeralType&lt;T extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.FormulaType</a>&lt;T&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType.NumeralType&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.html" title="type parameter in FormulaType">T</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</dd>
+</dl>
+<hr>
+<pre>@Immutable
+public abstract static class <span class="typeNameLabel">FormulaType.NumeralType&lt;T extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</span>
+extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;, <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>, <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>, <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>, <a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#BooleanType">BooleanType</a>, <a href="FormulaType.html#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a>, <a href="FormulaType.html#IntegerType">IntegerType</a>, <a href="FormulaType.html#RationalType">RationalType</a>, <a href="FormulaType.html#RegexType">RegexType</a>, <a href="FormulaType.html#StringType">StringType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">NumeralType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNumeralType()">isNumeralType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FormulaType">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a></h3>
+<code><a href="FormulaType.html#fromString(java.lang.String)">fromString</a>, <a href="FormulaType.html#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a>, <a href="FormulaType.html#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a>, <a href="FormulaType.html#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a>, <a href="FormulaType.html#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a>, <a href="FormulaType.html#getFloatingPointType(int,int)">getFloatingPointType</a>, <a href="FormulaType.html#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a>, <a href="FormulaType.html#isArrayType()">isArrayType</a>, <a href="FormulaType.html#isBitvectorType()">isBitvectorType</a>, <a href="FormulaType.html#isBooleanType()">isBooleanType</a>, <a href="FormulaType.html#isEnumerationType()">isEnumerationType</a>, <a href="FormulaType.html#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a>, <a href="FormulaType.html#isFloatingPointType()">isFloatingPointType</a>, <a href="FormulaType.html#isIntegerType()">isIntegerType</a>, <a href="FormulaType.html#isRationalType()">isRationalType</a>, <a href="FormulaType.html#isRegexType()">isRegexType</a>, <a href="FormulaType.html#isSLType()">isSLType</a>, <a href="FormulaType.html#isStringType()">isStringType</a>, <a href="FormulaType.html#toSMTLIBString()">toSMTLIBString</a>, <a href="FormulaType.html#toString()">toString</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NumeralType</h4>
+<pre>public&nbsp;NumeralType()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="isNumeralType()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isNumeralType</h4>
+<pre class="methodSignature">public final&nbsp;boolean&nbsp;isNumeralType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="FormulaType.html#isNumeralType()">isNumeralType</a></code>&nbsp;in class&nbsp;<code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FormulaType.html b/api/org/sosy_lab/java_smt/api/FormulaType.html
new file mode 100644
index 0000000000..47160f7815
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FormulaType.html
@@ -0,0 +1,726 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":6,"i20":6};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class FormulaType" class="title">Class FormulaType&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FormulaType&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>T</code> - Formula class corresponding to the given formula type.</dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a></code>, <code><a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></code>, <code><a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code>, <code><a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></code>, <code><a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public abstract class <span class="typeNameLabel">FormulaType&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Type of a formula.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TI</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="FormulaType.ArrayFormulaType.html" title="type parameter in FormulaType.ArrayFormulaType">TE</a> extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;<a href="FormulaType.NumeralType.html" title="type parameter in FormulaType.NumeralType">T</a> extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BooleanType">BooleanType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointRoundingModeFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#FloatingPointRoundingModeType">FloatingPointRoundingModeType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#IntegerType">IntegerType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#RationalType">RationalType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#RegexType">RegexType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#StringType">StringType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fromString(java.lang.String)">fromString</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;t)</code></th>
+<td class="colLast">
+<div class="block">Parse a string and return the corresponding type.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static &lt;TD extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TR extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TD,&#8203;TR&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">getArrayType</a></span>&#8203;(<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TD&gt;&nbsp;pDomainSort,
+            <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TR&gt;&nbsp;pRangeSort)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBitvectorTypeWithSize(int)">getBitvectorTypeWithSize</a></span>&#8203;(int&nbsp;size)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>static <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDoublePrecisionFloatingPointType()">getDoublePrecisionFloatingPointType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnumerationType(java.lang.String,java.util.Set)">getEnumerationType</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElements)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>static <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloatingPointType(int,int)">getFloatingPointType</a></span>&#8203;(int&nbsp;exponentSize,
+                    int&nbsp;mantissaSize)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>static <a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSinglePrecisionFloatingPointType()">getSinglePrecisionFloatingPointType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isArrayType()">isArrayType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isBitvectorType()">isBitvectorType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isBooleanType()">isBooleanType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEnumerationType()">isEnumerationType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFloatingPointRoundingModeType()">isFloatingPointRoundingModeType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFloatingPointType()">isFloatingPointType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isIntegerType()">isIntegerType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNumeralType()">isNumeralType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isRationalType()">isRationalType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isRegexType()">isRegexType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSLType()">isSLType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isStringType()">isStringType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>abstract <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toSMTLIBString()">toSMTLIBString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>abstract <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="RationalType">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RationalType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt; RationalType</pre>
+</li>
+</ul>
+<a id="IntegerType">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>IntegerType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt; IntegerType</pre>
+</li>
+</ul>
+<a id="BooleanType">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BooleanType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt; BooleanType</pre>
+</li>
+</ul>
+<a id="FloatingPointRoundingModeType">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FloatingPointRoundingModeType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointRoundingModeFormula</a>&gt; FloatingPointRoundingModeType</pre>
+</li>
+</ul>
+<a id="StringType">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>StringType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt; StringType</pre>
+</li>
+</ul>
+<a id="RegexType">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>RegexType</h4>
+<pre>public static final&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt; RegexType</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="isArrayType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isArrayType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isArrayType()</pre>
+</li>
+</ul>
+<a id="isBitvectorType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isBitvectorType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isBitvectorType()</pre>
+</li>
+</ul>
+<a id="isBooleanType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isBooleanType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isBooleanType()</pre>
+</li>
+</ul>
+<a id="isFloatingPointType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFloatingPointType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isFloatingPointType()</pre>
+</li>
+</ul>
+<a id="isFloatingPointRoundingModeType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFloatingPointRoundingModeType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isFloatingPointRoundingModeType()</pre>
+</li>
+</ul>
+<a id="isNumeralType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNumeralType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isNumeralType()</pre>
+</li>
+</ul>
+<a id="isRationalType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isRationalType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isRationalType()</pre>
+</li>
+</ul>
+<a id="isIntegerType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isIntegerType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isIntegerType()</pre>
+</li>
+</ul>
+<a id="isSLType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSLType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isSLType()</pre>
+</li>
+</ul>
+<a id="isStringType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isStringType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isStringType()</pre>
+</li>
+</ul>
+<a id="isRegexType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isRegexType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isRegexType()</pre>
+</li>
+</ul>
+<a id="isEnumerationType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEnumerationType</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isEnumerationType()</pre>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toSMTLIBString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toSMTLIBString</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toSMTLIBString()</pre>
+<div class="block">return the correctly formatted SMTLIB2 type declaration.</div>
+</li>
+</ul>
+<a id="getBitvectorTypeWithSize(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBitvectorTypeWithSize</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;getBitvectorTypeWithSize&#8203;(int&nbsp;size)</pre>
+</li>
+</ul>
+<a id="getFloatingPointType(int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFloatingPointType</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;getFloatingPointType&#8203;(int&nbsp;exponentSize,
+                                                                 int&nbsp;mantissaSize)</pre>
+</li>
+</ul>
+<a id="getSinglePrecisionFloatingPointType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSinglePrecisionFloatingPointType</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;getSinglePrecisionFloatingPointType()</pre>
+</li>
+</ul>
+<a id="getDoublePrecisionFloatingPointType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getDoublePrecisionFloatingPointType</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;getDoublePrecisionFloatingPointType()</pre>
+</li>
+</ul>
+<a id="getArrayType(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayType</h4>
+<pre class="methodSignature">public static&nbsp;&lt;TD extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TR extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TD,&#8203;TR&gt;&nbsp;getArrayType&#8203;(<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TD&gt;&nbsp;pDomainSort,
+                                                                                                                   <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TR&gt;&nbsp;pRangeSort)</pre>
+</li>
+</ul>
+<a id="getEnumerationType(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnumerationType</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;getEnumerationType&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElements)</pre>
+</li>
+</ul>
+<a id="fromString(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>fromString</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;fromString&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;t)</pre>
+<div class="block">Parse a string and return the corresponding type. This method is the counterpart of <a href="#toString()"><code>toString()</code></a>.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FunctionDeclaration.html b/api/org/sosy_lab/java_smt/api/FunctionDeclaration.html
new file mode 100644
index 0000000000..318eb6e983
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FunctionDeclaration.html
@@ -0,0 +1,315 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FunctionDeclaration (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FunctionDeclaration (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface FunctionDeclaration" class="title">Interface FunctionDeclaration&lt;E extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">FunctionDeclaration&lt;E extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</span></pre>
+<div class="block">Function declaration, for both UFs and built-in functions (theory and boolean).
+
+ <p>Can be instantiated using <a href="FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration&lt;T&gt;, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;)</code></a></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArgumentTypes()">getArgumentTypes</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKind()">getKind</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getName()">getName</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FunctionDeclaration.html" title="type parameter in FunctionDeclaration">E</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getType()">getType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getKind()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getKind</h4>
+<pre class="methodSignature"><a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&nbsp;getKind()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Type of the function (LT / GT / UF / etc...).</dd>
+</dl>
+</li>
+</ul>
+<a id="getName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getName</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getName()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Name of the function (UF name / "LT" / etc...).</dd>
+</dl>
+</li>
+</ul>
+<a id="getType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getType</h4>
+<pre class="methodSignature"><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="FunctionDeclaration.html" title="type parameter in FunctionDeclaration">E</a>&gt;&nbsp;getType()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Sort of the function output.</dd>
+</dl>
+</li>
+</ul>
+<a id="getArgumentTypes()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getArgumentTypes</h4>
+<pre class="methodSignature"><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;getArgumentTypes()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Sorts of the arguments.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/FunctionDeclarationKind.html b/api/org/sosy_lab/java_smt/api/FunctionDeclarationKind.html
new file mode 100644
index 0000000000..9b927652b1
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/FunctionDeclarationKind.html
@@ -0,0 +1,2177 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FunctionDeclarationKind (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FunctionDeclarationKind (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum FunctionDeclarationKind" class="title">Enum FunctionDeclarationKind</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.FunctionDeclarationKind</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public enum <span class="typeNameLabel">FunctionDeclarationKind</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&gt;</pre>
+<div class="block">Types of function declarations.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api"><code>FunctionDeclaration</code></a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#ADD">ADD</a></span></code></th>
+<td class="colLast">
+<div class="block">Addition over integers and rationals.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#AND">AND</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ADD">BV_ADD</a></span></code></th>
+<td class="colLast">
+<div class="block">Addition over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_AND">BV_AND</a></span></code></th>
+<td class="colLast">
+<div class="block">Bitwise AND over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ASHR">BV_ASHR</a></span></code></th>
+<td class="colLast">
+<div class="block">Arithmetic right-shift over bitvectors (fill from left with value of first bit).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_CONCAT">BV_CONCAT</a></span></code></th>
+<td class="colLast">
+<div class="block">Concatenation over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_EQ">BV_EQ</a></span></code></th>
+<td class="colLast">
+<div class="block">Equality over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_EXTRACT">BV_EXTRACT</a></span></code></th>
+<td class="colLast">
+<div class="block">Extraction over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_LSHR">BV_LSHR</a></span></code></th>
+<td class="colLast">
+<div class="block">Logical right-shift over bitvectors (fill from left with zeroes).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_MUL">BV_MUL</a></span></code></th>
+<td class="colLast">
+<div class="block">Multiplication over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_NEG">BV_NEG</a></span></code></th>
+<td class="colLast">
+<div class="block">Negation of a bitvector.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_NOT">BV_NOT</a></span></code></th>
+<td class="colLast">
+<div class="block">Bitwise negation of a bitvector.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_OR">BV_OR</a></span></code></th>
+<td class="colLast">
+<div class="block">Bitwise OR over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ROTATE_LEFT">BV_ROTATE_LEFT</a></span></code></th>
+<td class="colLast">
+<div class="block">Performs a circular left rotation on the bitvector.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ROTATE_LEFT_BY_INT">BV_ROTATE_LEFT_BY_INT</a></span></code></th>
+<td class="colLast">
+<div class="block">Performs a circular left rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ROTATE_RIGHT">BV_ROTATE_RIGHT</a></span></code></th>
+<td class="colLast">
+<div class="block">Performs a circular right rotation on the bitvector.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ROTATE_RIGHT_BY_INT">BV_ROTATE_RIGHT_BY_INT</a></span></code></th>
+<td class="colLast">
+<div class="block">Performs a circular right rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SCASTTO_FP">BV_SCASTTO_FP</a></span></code></th>
+<td class="colLast">
+<div class="block">Cast a signed bitvector to a floating-point number.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SDIV">BV_SDIV</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed division over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SGE">BV_SGE</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SGT">BV_SGT</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned greater-than over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SHL">BV_SHL</a></span></code></th>
+<td class="colLast">
+<div class="block">Logical left-shift over bitvectors (fill from right with zeroes).</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SIGN_EXTENSION">BV_SIGN_EXTENSION</a></span></code></th>
+<td class="colLast">
+<div class="block">Extend bitvectors according to their sign.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SLE">BV_SLE</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SLT">BV_SLT</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned less-than over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SMOD">BV_SMOD</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed modulo over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SREM">BV_SREM</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed remainder over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_SUB">BV_SUB</a></span></code></th>
+<td class="colLast">
+<div class="block">Subtraction over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_UCASTTO_FP">BV_UCASTTO_FP</a></span></code></th>
+<td class="colLast">
+<div class="block">Cast an unsigned bitvector to a floating-point number.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_UDIV">BV_UDIV</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned division over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_UGE">BV_UGE</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned greater-than-or-equal over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_UGT">BV_UGT</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed greater-than over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ULE">BV_ULE</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned less-than-or-equal over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ULT">BV_ULT</a></span></code></th>
+<td class="colLast">
+<div class="block">Signed less-than over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_UREM">BV_UREM</a></span></code></th>
+<td class="colLast">
+<div class="block">Unsigned remainder over bitvectors.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_XOR">BV_XOR</a></span></code></th>
+<td class="colLast">
+<div class="block">Bitwise XOR over bitvectors.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#BV_ZERO_EXTENSION">BV_ZERO_EXTENSION</a></span></code></th>
+<td class="colLast">
+<div class="block">Extend bitvectors with zeros.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CONST">CONST</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DISTINCT">DISTINCT</a></span></code></th>
+<td class="colLast">
+<div class="block">Distinct operator for a set of numeric formulas.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#DIV">DIV</a></span></code></th>
+<td class="colLast">
+<div class="block">Division over rationals and integer division over integers.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#EQ">EQ</a></span></code></th>
+<td class="colLast">
+<div class="block">Equality over integers and rationals.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#EQ_ZERO">EQ_ZERO</a></span></code></th>
+<td class="colLast">
+<div class="block">Unary comparison to zero.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FLOOR">FLOOR</a></span></code></th>
+<td class="colLast">
+<div class="block">Floor operation, converts from rationals to integers, also known as <code>to_int</code>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ABS">FP_ABS</a></span></code></th>
+<td class="colLast">
+<div class="block">Absolute value of a floating point.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ADD">FP_ADD</a></span></code></th>
+<td class="colLast">
+<div class="block">Addition over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_AS_IEEEBV">FP_AS_IEEEBV</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_CASTTO_FP">FP_CASTTO_FP</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_CASTTO_SBV">FP_CASTTO_SBV</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_CASTTO_UBV">FP_CASTTO_UBV</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_DIV">FP_DIV</a></span></code></th>
+<td class="colLast">
+<div class="block">Division over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_EQ">FP_EQ</a></span></code></th>
+<td class="colLast">
+<div class="block">Equal over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_FROM_IEEEBV">FP_FROM_IEEEBV</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_GE">FP_GE</a></span></code></th>
+<td class="colLast">
+<div class="block">Greater-than-or-equal over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_GT">FP_GT</a></span></code></th>
+<td class="colLast">
+<div class="block">Greater-than over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_INF">FP_IS_INF</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_NAN">FP_IS_NAN</a></span></code></th>
+<td class="colLast">
+<div class="block">Further FP queries.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_NEGATIVE">FP_IS_NEGATIVE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_NORMAL">FP_IS_NORMAL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_SUBNORMAL">FP_IS_SUBNORMAL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_IS_ZERO">FP_IS_ZERO</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_LE">FP_LE</a></span></code></th>
+<td class="colLast">
+<div class="block">Less-than-or-equal over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_LT">FP_LT</a></span></code></th>
+<td class="colLast">
+<div class="block">Less-than over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_MAX">FP_MAX</a></span></code></th>
+<td class="colLast">
+<div class="block">Maximum of two floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_MIN">FP_MIN</a></span></code></th>
+<td class="colLast">
+<div class="block">Minimum of two floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_MUL">FP_MUL</a></span></code></th>
+<td class="colLast">
+<div class="block">Multiplication over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_NEG">FP_NEG</a></span></code></th>
+<td class="colLast">
+<div class="block">Negation of a floating point.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_REM">FP_REM</a></span></code></th>
+<td class="colLast">
+<div class="block">Remainder of the floating point division.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_AWAY">FP_ROUND_AWAY</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_EVEN">FP_ROUND_EVEN</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_NEGATIVE">FP_ROUND_NEGATIVE</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_POSITIVE">FP_ROUND_POSITIVE</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_TO_INTEGRAL">FP_ROUND_TO_INTEGRAL</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_ROUND_ZERO">FP_ROUND_ZERO</a></span></code></th>
+<td class="colLast">
+<div class="block">Rounding over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_SQRT">FP_SQRT</a></span></code></th>
+<td class="colLast">
+<div class="block">Square root of a floating point.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FP_SUB">FP_SUB</a></span></code></th>
+<td class="colLast">
+<div class="block">Subtraction over floating points.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GT">GT</a></span></code></th>
+<td class="colLast">
+<div class="block">Greater-than over integers and rationals.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GTE">GTE</a></span></code></th>
+<td class="colLast">
+<div class="block">Greater-than-or-equal over integers and rationals.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GTE_ZERO">GTE_ZERO</a></span></code></th>
+<td class="colLast">
+<div class="block">Unary comparison with zero.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#IFF">IFF</a></span></code></th>
+<td class="colLast">
+<div class="block">If and only if.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#IMPLIES">IMPLIES</a></span></code></th>
+<td class="colLast">
+<div class="block">Implication between two boolean formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#INT_TO_STR">INT_TO_STR</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#ITE">ITE</a></span></code></th>
+<td class="colLast">
+<div class="block">If-then-else operator.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#LT">LT</a></span></code></th>
+<td class="colLast">
+<div class="block">Less-than over integers and rationals.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#LTE">LTE</a></span></code></th>
+<td class="colLast">
+<div class="block">Less-than-or-equal over integers and rationals.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#MODULO">MODULO</a></span></code></th>
+<td class="colLast">
+<div class="block">Modulo operator over integers.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#MUL">MUL</a></span></code></th>
+<td class="colLast">
+<div class="block">Multiplication over integers and rationals.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NOT">NOT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#OR">OR</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#OTHER">OTHER</a></span></code></th>
+<td class="colLast">
+<div class="block">Solvers support a lot of different built-in theories.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_COMPLEMENT">RE_COMPLEMENT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_CONCAT">RE_CONCAT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_DIFFERENCE">RE_DIFFERENCE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_INTERSECT">RE_INTERSECT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_OPTIONAL">RE_OPTIONAL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_PLUS">RE_PLUS</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_RANGE">RE_RANGE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_STAR">RE_STAR</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#RE_UNION">RE_UNION</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SELECT">SELECT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STORE">STORE</a></span></code></th>
+<td class="colLast">
+<div class="block">Store and select on arrays, and constant initialization.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_CHAR_AT">STR_CHAR_AT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_CONCAT">STR_CONCAT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_CONTAINS">STR_CONTAINS</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_IN_RE">STR_IN_RE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_INDEX_OF">STR_INDEX_OF</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_LE">STR_LE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_LENGTH">STR_LENGTH</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_LT">STR_LT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_PREFIX">STR_PREFIX</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_REPLACE">STR_REPLACE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_REPLACE_ALL">STR_REPLACE_ALL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_SUBSTRING">STR_SUBSTRING</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_SUFFIX">STR_SUFFIX</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_TO_INT">STR_TO_INT</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#STR_TO_RE">STR_TO_RE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SUB">SUB</a></span></code></th>
+<td class="colLast">
+<div class="block">Subtraction over integers and rationals.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TO_REAL">TO_REAL</a></span></code></th>
+<td class="colLast">
+<div class="block">Identity operation, converts from integers to rationals, also known as <code>to_real</code>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#UF">UF</a></span></code></th>
+<td class="colLast">
+<div class="block">Uninterpreted function.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#UMINUS">UMINUS</a></span></code></th>
+<td class="colLast">
+<div class="block">Unary minus.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#VAR">VAR</a></span></code></th>
+<td class="colLast">
+<div class="block">User-defined variable.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#XOR">XOR</a></span></code></th>
+<td class="colLast">
+<div class="block">Exclusive OR over two formulas.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="AND">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>AND</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> AND</pre>
+</li>
+</ul>
+<a id="NOT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NOT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> NOT</pre>
+</li>
+</ul>
+<a id="OR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>OR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> OR</pre>
+</li>
+</ul>
+<a id="IFF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>IFF</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> IFF</pre>
+<div class="block">If and only if.</div>
+</li>
+</ul>
+<a id="ITE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ITE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> ITE</pre>
+<div class="block">If-then-else operator.</div>
+</li>
+</ul>
+<a id="XOR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>XOR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> XOR</pre>
+<div class="block">Exclusive OR over two formulas.</div>
+</li>
+</ul>
+<a id="IMPLIES">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>IMPLIES</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> IMPLIES</pre>
+<div class="block">Implication between two boolean formulas.</div>
+</li>
+</ul>
+<a id="DISTINCT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DISTINCT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> DISTINCT</pre>
+<div class="block">Distinct operator for a set of numeric formulas.</div>
+</li>
+</ul>
+<a id="STORE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STORE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STORE</pre>
+<div class="block">Store and select on arrays, and constant initialization.</div>
+</li>
+</ul>
+<a id="SELECT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SELECT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> SELECT</pre>
+</li>
+</ul>
+<a id="CONST">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>CONST</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> CONST</pre>
+</li>
+</ul>
+<a id="UMINUS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>UMINUS</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> UMINUS</pre>
+<div class="block">Unary minus.</div>
+</li>
+</ul>
+<a id="SUB">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SUB</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> SUB</pre>
+<div class="block">Subtraction over integers and rationals.</div>
+</li>
+</ul>
+<a id="ADD">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ADD</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> ADD</pre>
+<div class="block">Addition over integers and rationals.</div>
+</li>
+</ul>
+<a id="DIV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>DIV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> DIV</pre>
+<div class="block">Division over rationals and integer division over integers.</div>
+</li>
+</ul>
+<a id="MUL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>MUL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> MUL</pre>
+<div class="block">Multiplication over integers and rationals.</div>
+</li>
+</ul>
+<a id="MODULO">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>MODULO</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> MODULO</pre>
+<div class="block">Modulo operator over integers.</div>
+</li>
+</ul>
+<a id="UF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>UF</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> UF</pre>
+<div class="block">Uninterpreted function.</div>
+</li>
+</ul>
+<a id="VAR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>VAR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> VAR</pre>
+<div class="block">User-defined variable.</div>
+</li>
+</ul>
+<a id="LT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>LT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> LT</pre>
+<div class="block">Less-than over integers and rationals.</div>
+</li>
+</ul>
+<a id="LTE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>LTE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> LTE</pre>
+<div class="block">Less-than-or-equal over integers and rationals.</div>
+</li>
+</ul>
+<a id="GT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> GT</pre>
+<div class="block">Greater-than over integers and rationals.</div>
+</li>
+</ul>
+<a id="GTE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GTE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> GTE</pre>
+<div class="block">Greater-than-or-equal over integers and rationals.</div>
+</li>
+</ul>
+<a id="EQ">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>EQ</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> EQ</pre>
+<div class="block">Equality over integers and rationals. Binary equality is modelled with <code>IFF</code>.</div>
+</li>
+</ul>
+<a id="EQ_ZERO">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>EQ_ZERO</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> EQ_ZERO</pre>
+<div class="block">Unary comparison to zero.</div>
+</li>
+</ul>
+<a id="GTE_ZERO">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GTE_ZERO</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> GTE_ZERO</pre>
+<div class="block">Unary comparison with zero.</div>
+</li>
+</ul>
+<a id="FLOOR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FLOOR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FLOOR</pre>
+<div class="block">Floor operation, converts from rationals to integers, also known as <code>to_int</code>.</div>
+</li>
+</ul>
+<a id="TO_REAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>TO_REAL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> TO_REAL</pre>
+<div class="block">Identity operation, converts from integers to rationals, also known as <code>to_real</code>.</div>
+</li>
+</ul>
+<a id="BV_EXTRACT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_EXTRACT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_EXTRACT</pre>
+<div class="block">Extraction over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_CONCAT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_CONCAT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_CONCAT</pre>
+<div class="block">Concatenation over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SIGN_EXTENSION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SIGN_EXTENSION</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SIGN_EXTENSION</pre>
+<div class="block">Extend bitvectors according to their sign.</div>
+</li>
+</ul>
+<a id="BV_ZERO_EXTENSION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ZERO_EXTENSION</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ZERO_EXTENSION</pre>
+<div class="block">Extend bitvectors with zeros.</div>
+</li>
+</ul>
+<a id="BV_NOT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_NOT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_NOT</pre>
+<div class="block">Bitwise negation of a bitvector.</div>
+</li>
+</ul>
+<a id="BV_NEG">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_NEG</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_NEG</pre>
+<div class="block">Negation of a bitvector.</div>
+</li>
+</ul>
+<a id="BV_OR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_OR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_OR</pre>
+<div class="block">Bitwise OR over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_AND">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_AND</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_AND</pre>
+<div class="block">Bitwise AND over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_XOR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_XOR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_XOR</pre>
+<div class="block">Bitwise XOR over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SUB">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SUB</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SUB</pre>
+<div class="block">Subtraction over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_ADD">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ADD</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ADD</pre>
+<div class="block">Addition over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SDIV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SDIV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SDIV</pre>
+<div class="block">Signed division over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_UDIV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_UDIV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_UDIV</pre>
+<div class="block">Unsigned division over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SREM">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SREM</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SREM</pre>
+<div class="block">Signed remainder over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_UREM">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_UREM</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_UREM</pre>
+<div class="block">Unsigned remainder over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SMOD">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SMOD</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SMOD</pre>
+<div class="block">Signed modulo over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_MUL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_MUL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_MUL</pre>
+<div class="block">Multiplication over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_ULT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ULT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ULT</pre>
+<div class="block">Signed less-than over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SLT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SLT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SLT</pre>
+<div class="block">Unsigned less-than over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_ULE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ULE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ULE</pre>
+<div class="block">Unsigned less-than-or-equal over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SLE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SLE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SLE</pre>
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_UGT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_UGT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_UGT</pre>
+<div class="block">Signed greater-than over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SGT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SGT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SGT</pre>
+<div class="block">Unsigned greater-than over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_UGE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_UGE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_UGE</pre>
+<div class="block">Unsigned greater-than-or-equal over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_SGE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SGE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SGE</pre>
+<div class="block">Signed greater-than-or-equal over bitvectors.</div>
+</li>
+</ul>
+<a id="BV_EQ">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_EQ</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_EQ</pre>
+<div class="block">Equality over bitvectors. Binary equality is modeled with <code>IFF</code>.</div>
+</li>
+</ul>
+<a id="BV_SHL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SHL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SHL</pre>
+<div class="block">Logical left-shift over bitvectors (fill from right with zeroes).</div>
+</li>
+</ul>
+<a id="BV_LSHR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_LSHR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_LSHR</pre>
+<div class="block">Logical right-shift over bitvectors (fill from left with zeroes).</div>
+</li>
+</ul>
+<a id="BV_ASHR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ASHR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ASHR</pre>
+<div class="block">Arithmetic right-shift over bitvectors (fill from left with value of first bit).</div>
+</li>
+</ul>
+<a id="BV_ROTATE_LEFT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ROTATE_LEFT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ROTATE_LEFT</pre>
+<div class="block">Performs a circular left rotation on the bitvector.</div>
+</li>
+</ul>
+<a id="BV_ROTATE_RIGHT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ROTATE_RIGHT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ROTATE_RIGHT</pre>
+<div class="block">Performs a circular right rotation on the bitvector.</div>
+</li>
+</ul>
+<a id="BV_ROTATE_LEFT_BY_INT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ROTATE_LEFT_BY_INT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ROTATE_LEFT_BY_INT</pre>
+<div class="block">Performs a circular left rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</li>
+</ul>
+<a id="BV_ROTATE_RIGHT_BY_INT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_ROTATE_RIGHT_BY_INT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_ROTATE_RIGHT_BY_INT</pre>
+<div class="block">Performs a circular right rotation on the bitvector by a specified number of positions,
+ determined by an integer value.</div>
+</li>
+</ul>
+<a id="BV_UCASTTO_FP">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_UCASTTO_FP</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_UCASTTO_FP</pre>
+<div class="block">Cast an unsigned bitvector to a floating-point number.</div>
+</li>
+</ul>
+<a id="BV_SCASTTO_FP">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BV_SCASTTO_FP</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> BV_SCASTTO_FP</pre>
+<div class="block">Cast a signed bitvector to a floating-point number.</div>
+</li>
+</ul>
+<a id="FP_NEG">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_NEG</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_NEG</pre>
+<div class="block">Negation of a floating point.</div>
+</li>
+</ul>
+<a id="FP_ABS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ABS</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ABS</pre>
+<div class="block">Absolute value of a floating point.</div>
+</li>
+</ul>
+<a id="FP_MAX">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_MAX</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_MAX</pre>
+<div class="block">Maximum of two floating points.</div>
+</li>
+</ul>
+<a id="FP_MIN">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_MIN</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_MIN</pre>
+<div class="block">Minimum of two floating points.</div>
+</li>
+</ul>
+<a id="FP_SQRT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_SQRT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_SQRT</pre>
+<div class="block">Square root of a floating point.</div>
+</li>
+</ul>
+<a id="FP_SUB">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_SUB</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_SUB</pre>
+<div class="block">Subtraction over floating points.</div>
+</li>
+</ul>
+<a id="FP_ADD">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ADD</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ADD</pre>
+<div class="block">Addition over floating points.</div>
+</li>
+</ul>
+<a id="FP_DIV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_DIV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_DIV</pre>
+<div class="block">Division over floating points.</div>
+</li>
+</ul>
+<a id="FP_REM">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_REM</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_REM</pre>
+<div class="block">Remainder of the floating point division.</div>
+</li>
+</ul>
+<a id="FP_MUL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_MUL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_MUL</pre>
+<div class="block">Multiplication over floating points.</div>
+</li>
+</ul>
+<a id="FP_LT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_LT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_LT</pre>
+<div class="block">Less-than over floating points.</div>
+</li>
+</ul>
+<a id="FP_LE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_LE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_LE</pre>
+<div class="block">Less-than-or-equal over floating points.</div>
+</li>
+</ul>
+<a id="FP_GE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_GE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_GE</pre>
+<div class="block">Greater-than-or-equal over floating points.</div>
+</li>
+</ul>
+<a id="FP_GT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_GT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_GT</pre>
+<div class="block">Greater-than over floating points.</div>
+</li>
+</ul>
+<a id="FP_EQ">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_EQ</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_EQ</pre>
+<div class="block">Equal over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_EVEN">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_EVEN</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_EVEN</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_AWAY">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_AWAY</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_AWAY</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_POSITIVE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_POSITIVE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_POSITIVE</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_NEGATIVE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_NEGATIVE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_NEGATIVE</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_ZERO">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_ZERO</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_ZERO</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_ROUND_TO_INTEGRAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_ROUND_TO_INTEGRAL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_ROUND_TO_INTEGRAL</pre>
+<div class="block">Rounding over floating points.</div>
+</li>
+</ul>
+<a id="FP_IS_NAN">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_NAN</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_NAN</pre>
+<div class="block">Further FP queries.</div>
+</li>
+</ul>
+<a id="FP_IS_INF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_INF</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_INF</pre>
+</li>
+</ul>
+<a id="FP_IS_ZERO">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_ZERO</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_ZERO</pre>
+</li>
+</ul>
+<a id="FP_IS_NEGATIVE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_NEGATIVE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_NEGATIVE</pre>
+</li>
+</ul>
+<a id="FP_IS_SUBNORMAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_SUBNORMAL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_SUBNORMAL</pre>
+</li>
+</ul>
+<a id="FP_IS_NORMAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_IS_NORMAL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_IS_NORMAL</pre>
+</li>
+</ul>
+<a id="FP_CASTTO_FP">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_CASTTO_FP</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_CASTTO_FP</pre>
+</li>
+</ul>
+<a id="FP_CASTTO_SBV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_CASTTO_SBV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_CASTTO_SBV</pre>
+</li>
+</ul>
+<a id="FP_CASTTO_UBV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_CASTTO_UBV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_CASTTO_UBV</pre>
+</li>
+</ul>
+<a id="FP_AS_IEEEBV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_AS_IEEEBV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_AS_IEEEBV</pre>
+</li>
+</ul>
+<a id="FP_FROM_IEEEBV">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FP_FROM_IEEEBV</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> FP_FROM_IEEEBV</pre>
+</li>
+</ul>
+<a id="STR_CONCAT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_CONCAT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_CONCAT</pre>
+</li>
+</ul>
+<a id="STR_PREFIX">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_PREFIX</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_PREFIX</pre>
+</li>
+</ul>
+<a id="STR_SUFFIX">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_SUFFIX</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_SUFFIX</pre>
+</li>
+</ul>
+<a id="STR_CONTAINS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_CONTAINS</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_CONTAINS</pre>
+</li>
+</ul>
+<a id="STR_SUBSTRING">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_SUBSTRING</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_SUBSTRING</pre>
+</li>
+</ul>
+<a id="STR_REPLACE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_REPLACE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_REPLACE</pre>
+</li>
+</ul>
+<a id="STR_REPLACE_ALL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_REPLACE_ALL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_REPLACE_ALL</pre>
+</li>
+</ul>
+<a id="STR_CHAR_AT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_CHAR_AT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_CHAR_AT</pre>
+</li>
+</ul>
+<a id="STR_LENGTH">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_LENGTH</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_LENGTH</pre>
+</li>
+</ul>
+<a id="STR_INDEX_OF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_INDEX_OF</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_INDEX_OF</pre>
+</li>
+</ul>
+<a id="STR_TO_RE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_TO_RE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_TO_RE</pre>
+</li>
+</ul>
+<a id="STR_IN_RE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_IN_RE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_IN_RE</pre>
+</li>
+</ul>
+<a id="STR_TO_INT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_TO_INT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_TO_INT</pre>
+</li>
+</ul>
+<a id="INT_TO_STR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>INT_TO_STR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> INT_TO_STR</pre>
+</li>
+</ul>
+<a id="STR_LT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_LT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_LT</pre>
+</li>
+</ul>
+<a id="STR_LE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>STR_LE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> STR_LE</pre>
+</li>
+</ul>
+<a id="RE_PLUS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_PLUS</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_PLUS</pre>
+</li>
+</ul>
+<a id="RE_STAR">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_STAR</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_STAR</pre>
+</li>
+</ul>
+<a id="RE_OPTIONAL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_OPTIONAL</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_OPTIONAL</pre>
+</li>
+</ul>
+<a id="RE_CONCAT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_CONCAT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_CONCAT</pre>
+</li>
+</ul>
+<a id="RE_UNION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_UNION</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_UNION</pre>
+</li>
+</ul>
+<a id="RE_RANGE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_RANGE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_RANGE</pre>
+</li>
+</ul>
+<a id="RE_INTERSECT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_INTERSECT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_INTERSECT</pre>
+</li>
+</ul>
+<a id="RE_COMPLEMENT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_COMPLEMENT</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_COMPLEMENT</pre>
+</li>
+</ul>
+<a id="RE_DIFFERENCE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>RE_DIFFERENCE</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> RE_DIFFERENCE</pre>
+</li>
+</ul>
+<a id="OTHER">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>OTHER</h4>
+<pre>public static final&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a> OTHER</pre>
+<div class="block">Solvers support a lot of different built-in theories. We enforce standardization only across a
+ small subset.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (FunctionDeclarationKind c : FunctionDeclarationKind.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/IntegerFormulaManager.html b/api/org/sosy_lab/java_smt/api/IntegerFormulaManager.html
new file mode 100644
index 0000000000..36d04901d4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/IntegerFormulaManager.html
@@ -0,0 +1,355 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>IntegerFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="IntegerFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":18,"i1":6,"i2":6,"i3":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface IntegerFormulaManager" class="title">Interface IntegerFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">IntegerFormulaManager</span>
+extends <a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</pre>
+<div class="block">Interface which operates over <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.IntegerFormula</code></a>s.
+
+ <p>Integer formulas always take integral formulas as arguments.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>default <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType()">getFormulaType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">modularCongruence</a></span>&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                 <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                 long&nbsp;n)</code></th>
+<td class="colLast">
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">modularCongruence</a></span>&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                 <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;n)</code></th>
+<td class="colLast">
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">modulo</a></span>&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;numerator,
+      <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;denominator)</code></th>
+<td class="colLast">
+<div class="block">Create a formula representing the modulo of two operands according to Boute's Euclidean
+ definition.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></h3>
+<code><a href="NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="NumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="NumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="NumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                                 <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;n)</pre>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</li>
+</ul>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                                 <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                                 long&nbsp;n)</pre>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</li>
+</ul>
+<a id="modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modulo</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;modulo&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;numerator,
+                                     <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;denominator)</pre>
+<div class="block">Create a formula representing the modulo of two operands according to Boute's Euclidean
+ definition. The quotient (div numerator denominator) of the internal modulo calculation is
+ floored for positive denominators and rounded up for negative denominators.
+
+ <p>If the denominator evaluates to zero (modulo-by-zero), either directly as value or
+ indirectly via an additional constraint, then the solver is allowed to choose an arbitrary
+ value for the result of the modulo operation (cf. SMTLIB standard for the division operator in
+ Ints or Reals theory).
+
+ <p>Examples:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == 1
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == 2
+   <li>-10 % (-3) == 2
+ </ul>
+
+ <p>Note: Some solvers, e.g., Yices2, abort with an exception when exploring a modulo-by-zero
+ during the SAT-check. This is not compliant to the SMTLIB standard, but sadly happens.</div>
+</li>
+</ul>
+<a id="getFormulaType()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">default&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;&nbsp;getFormulaType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="NumeralFormulaManager.html#getFormulaType()">getFormulaType</a></code>&nbsp;in interface&nbsp;<code><a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html b/api/org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html
new file mode 100644
index 0000000000..b87868aa5b
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html
@@ -0,0 +1,500 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>InterpolatingProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="InterpolatingProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":1,"i1":6,"i2":18,"i3":18,"i4":6,"i5":18};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface InterpolatingProverEnvironment" class="title">Interface InterpolatingProverEnvironment&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>T</code> - The type of the objects which can be used to select formulas for interpolant creation.</dd>
+</dl>
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a></code>, <code><a href="../basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">InterpolatingProverEnvironment&lt;T&gt;</span>
+extends <a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</pre>
+<div class="block">This class provides an interface to an incremental SMT solver with methods for pushing and
+ popping formulas as well as SAT checks. Furthermore, interpolants can be generated for an
+ unsatisfiable list of formulas.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>The non-interpolating ProverEnvironment for general notes that also apply
+     to this interface.</code></a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkTreeStructure(int,int%5B%5D)">checkTreeStructure</a></span>&#8203;(int&nbsp;numOfPartitions,
+                  int[]&nbsp;startOfSubTree)</code></th>
+<td class="colLast">
+<div class="block">Checks for a valid subtree-structure.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInterpolant(java.util.Collection)">getInterpolant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulasOfA)</code></th>
+<td class="colLast">
+<div class="block">Get an interpolant for two groups of formulas.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>default <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSeqInterpolants(java.util.List)">getSeqInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas)</code></th>
+<td class="colLast">
+<div class="block">This method returns interpolants of an 'inductive sequence'.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>default <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSeqInterpolants0(java.util.List)">getSeqInterpolants0</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulas)</code></th>
+<td class="colLast">
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="#getSeqInterpolants(java.util.List)"><code>getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a>.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas,
+                   int[]&nbsp;startOfSubTree)</code></th>
+<td class="colLast">
+<div class="block">Compute a sequence of interpolants.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>default <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTreeInterpolants0(java.util.List,int%5B%5D)">getTreeInterpolants0</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulas,
+                    int[]&nbsp;startOfSubTree)</code></th>
+<td class="colLast">
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="#getTreeInterpolants(java.util.List,int%5B%5D)"><code>getTreeInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;, int[])</code></a>.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="BasicProverEnvironment.html#close()">close</a>, <a href="BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="BasicProverEnvironment.html#getModel()">getModel</a>, <a href="BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="BasicProverEnvironment.html#pop()">pop</a>, <a href="BasicProverEnvironment.html#push()">push</a>, <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="BasicProverEnvironment.html#size()">size</a>, <a href="BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getInterpolant(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getInterpolant</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getInterpolant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulasOfA)
+                       throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Get an interpolant for two groups of formulas. This should be called only immediately after an
+ <a href="BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>true</code>.
+
+ <p>There is no direct guarantee that the interpolants returned are part of an inductive
+ sequence', however this seems to work for most solvers as long as the same proof is used, i.e.
+ all interpolants are computed after the same SAT-check. If a solver does not use the same
+ internal proof for several interpolation queries (such as CVC5), then the returned interpolants
+ might not satisfy the sequence-criteria. We suggest the proper method <a href="#getSeqInterpolants(java.util.List)"><code>getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a> for that case.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formulasOfA</code> - A collection of values returned by <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(BooleanFormula)</code></a>. All the
+     corresponding formulas from group A, the remaining formulas form group B.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An interpolant for A and B</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSeqInterpolants(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSeqInterpolants</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getSeqInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas)
+                                         throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">This method returns interpolants of an 'inductive sequence'. This property must be supported by
+ the interpolation-strategy of the underlying SMT-solver! Depending on the underlying SMT-solver
+ this method might be faster than N direct calls to getInterpolant().
+
+ <p>The prover stack should contain the partitioned formulas, but any order is allowed. For an
+ input of N partitions we return N-1 interpolants. Any asserted formula that is on the prover
+ stack and not part of the partitioned list, will be used for background theory and its symbols
+ can appear in any interpolant.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a 'inductive sequence' of interpolants, such that the implication <code>AND(I_i, P_i)
+     =&gt; I_(i+1)</code> is satisfied for all i, where P_i is the conjunction of all formulas in
+     partition i.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSeqInterpolants0(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSeqInterpolants0</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getSeqInterpolants0&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulas)
+                                          throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="#getSeqInterpolants(java.util.List)"><code>getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a>.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#getSeqInterpolants(java.util.List)"><code>getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="getTreeInterpolants(java.util.List,int[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTreeInterpolants</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getTreeInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas,
+                                         int[]&nbsp;startOfSubTree)
+                                  throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Compute a sequence of interpolants. The nesting array describes the start of the subtree for
+ tree interpolants. For inductive sequences of interpolants use a nesting array completely
+ filled with 0.
+
+ <p>Example:
+
+ <pre>
+ A  D
+ |  |
+ B  E
+ | /
+ C
+ |
+ F  H
+ | /
+ G
+
+ arrayIndex     = [0,1,2,3,4,5,6,7]  // only for demonstration, not needed
+ partition      = [A,B,D,E,C,F,H,G]  // post-order of tree
+ startOfSubTree = [0,0,2,2,0,0,6,0]  // index of left-most leaf of the current element
+ </pre>
+
+ <p>The prover stack should contain the partitioned formulas. For an input of N partitions
+ (nodes in the tree) we return N-1 interpolants (one interpolant for/below each node except the
+ root). Any asserted formula that is on the prover stack and not part of the partitioned list,
+ will be used for background theory and its symbols can appear in any interpolant.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>partitionedFormulas</code> - of formulas</dd>
+<dd><code>startOfSubTree</code> - The start of the subtree containing the formula at this index as root.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Tree interpolants respecting the nesting relation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getTreeInterpolants0(java.util.List,int[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTreeInterpolants0</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getTreeInterpolants0&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="InterpolatingProverEnvironment.html" title="type parameter in InterpolatingProverEnvironment">T</a>&gt;&nbsp;formulas,
+                                                  int[]&nbsp;startOfSubTree)
+                                           throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">This utility method wraps each formula in a collection and then forwards to <a href="#getTreeInterpolants(java.util.List,int%5B%5D)"><code>getTreeInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;, int[])</code></a>.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#getTreeInterpolants(java.util.List,int%5B%5D)"><code>getTreeInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;, int[])</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="checkTreeStructure(int,int[])">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>checkTreeStructure</h4>
+<pre class="methodSignature">static&nbsp;boolean&nbsp;checkTreeStructure&#8203;(int&nbsp;numOfPartitions,
+                                  int[]&nbsp;startOfSubTree)</pre>
+<div class="block">Checks for a valid subtree-structure. This code is taken from SMTinterpol.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/Model.ValueAssignment.html b/api/org/sosy_lab/java_smt/api/Model.ValueAssignment.html
new file mode 100644
index 0000000000..9259bf1561
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/Model.ValueAssignment.html
@@ -0,0 +1,506 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Model.ValueAssignment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Model.ValueAssignment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class Model.ValueAssignment" class="title">Class Model.ValueAssignment</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.Model.ValueAssignment</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></dd>
+</dl>
+<hr>
+<pre>public static final class <span class="typeNameLabel">Model.ValueAssignment</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula,java.lang.String,java.lang.Object,java.util.List)">ValueAssignment</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;keyFormula,
+               <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;valueFormula,
+               <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;?&gt;&nbsp;argumentInterpretation)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;o)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArgInterpretation(int)">getArgInterpretation</a></span>&#8203;(int&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArgumentsInterpretation()">getArgumentsInterpretation</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Interpretation assigned for function arguments.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArity()">getArity</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAssignmentAsFormula()">getAssignmentAsFormula</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The formula AST representing the equality of key and value.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getKey()">getKey</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The formula AST which is assigned a given value.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getName()">getName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Variable name for variables, function name for UFs, and array name for arrays.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getValue()">getValue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Value: see the <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(org.sosy_lab.java_smt.api.Formula)</code></a> methods for the possible types.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getValueAsFormula()">getValueAsFormula</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The formula AST which is assigned to a given key.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFunction()">isFunction</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula,java.lang.String,java.lang.Object,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ValueAssignment</h4>
+<pre>public&nbsp;ValueAssignment&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;keyFormula,
+                       <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;valueFormula,
+                       <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;?&gt;&nbsp;argumentInterpretation)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getKey()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getKey</h4>
+<pre class="methodSignature">public&nbsp;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;getKey()</pre>
+<div class="block">The formula AST which is assigned a given value.</div>
+</li>
+</ul>
+<a id="getValueAsFormula()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getValueAsFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;getValueAsFormula()</pre>
+<div class="block">The formula AST which is assigned to a given key.</div>
+</li>
+</ul>
+<a id="getAssignmentAsFormula()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getAssignmentAsFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getAssignmentAsFormula()</pre>
+<div class="block">The formula AST representing the equality of key and value.</div>
+</li>
+</ul>
+<a id="getName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getName</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getName()</pre>
+<div class="block">Variable name for variables, function name for UFs, and array name for arrays.</div>
+</li>
+</ul>
+<a id="getValue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getValue</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;getValue()</pre>
+<div class="block">Value: see the <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(org.sosy_lab.java_smt.api.Formula)</code></a> methods for the possible types.
+
+ <p>We return only values that can be used in Java, i.e., boolean or numeral values
+ (Rational/Double/BigInteger/Long/Integer).</div>
+</li>
+</ul>
+<a id="getArgumentsInterpretation()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArgumentsInterpretation</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;getArgumentsInterpretation()</pre>
+<div class="block">Interpretation assigned for function arguments. Empty for variables.</div>
+</li>
+</ul>
+<a id="isFunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFunction</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isFunction()</pre>
+</li>
+</ul>
+<a id="getArity()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArity</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getArity()</pre>
+</li>
+</ul>
+<a id="getArgInterpretation(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArgInterpretation</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;getArgInterpretation&#8203;(int&nbsp;i)</pre>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equals(java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equals</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;o)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="hashCode()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>hashCode</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/Model.html b/api/org/sosy_lab/java_smt/api/Model.html
new file mode 100644
index 0000000000..a90c4f4f1a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/Model.html
@@ -0,0 +1,398 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Model (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Model (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":18,"i3":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface Model" class="title">Interface Model</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></code>, <code><a href="../basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></code>, <code><a href="../delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">Model</span>
+extends <a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">This class provides a model with concrete evaluations for symbols and formulas from the
+ satisfiable solver environment.
+
+ <p>This class is an extensions of <a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api"><code>Evaluator</code></a> and provides more features:
+
+ <ul>
+   <li>a listing of model assignments, i.e., the user can iterate over all available symbols and
+       their assignments,
+   <li>a guaranteed availability even after applying any operation on the original prover stack, i
+       .e., the model instance stays constant and remains valid for one given satisfiable prover
+       environment.
+ </ul></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#asList()">asList</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Free resources associated with this model (existing <a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>default <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Iterator.html?is-external=true" title="class or interface in java.util" class="externalLink">Iterator</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#iterator()">iterator</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Iterate over all values present in the model.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Pretty-printing of the model values.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Evaluator">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></h3>
+<code><a href="Evaluator.html#eval(T)">eval</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a>, <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Iterable">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#forEach(java.util.function.Consumer)" title="class or interface in java.lang" class="externalLink">forEach</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#spliterator()" title="class or interface in java.lang" class="externalLink">spliterator</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="iterator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>iterator</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Iterator.html?is-external=true" title="class or interface in java.util" class="externalLink">Iterator</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;iterator()</pre>
+<div class="block">Iterate over all values present in the model. Note that iterating multiple times may be
+ inefficient for some solvers, it is recommended to use <a href="BasicProverEnvironment.html#getModelAssignments()"><code>BasicProverEnvironment.getModelAssignments()</code></a> instead in this case.
+
+ <p>The iteration includes value assignments for...
+
+ <ul>
+   <li>all relevant free variables of simple type. If a variable is irrelevant for
+       satisfiability, it can be <code>null</code> or missing in the iteration.
+   <li>(nested) arrays with all accesses. If an array access is applied within a quantified
+       context, some value assignments can be missing in the iteration. Please use a direct
+       evaluation query to get the evaluation in such a case.
+   <li>uninterpreted functions with all applications. If an uninterpreted function is applied
+       within a quantified context, some value assignments can be missing in the iteration.
+       Please use a direct evaluation query to get the evaluation in such a case.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#iterator()" title="class or interface in java.lang" class="externalLink">iterator</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="asList()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>asList</h4>
+<pre class="methodSignature"><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;asList()</pre>
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<div class="block">Pretty-printing of the model values.
+
+ <p>Please only use this method for debugging and not for retrieving relevant information about
+ the model. The returned model representation is not intended for further usage like parsing,
+ because we do not guarantee any specific format, e.g., for arrays and uninterpreted functions,
+ and we allow the SMT solver to include arbitrary additional information about the current
+ solver state, e.g., any available symbol in the solver, even from other provers, and temporary
+ internal symbols.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">void&nbsp;close()</pre>
+<div class="block">Free resources associated with this model (existing <a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc. and <a href="#iterator()"><code>iterator()</code></a> must not be called again).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="Evaluator.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html b/api/org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html
new file mode 100644
index 0000000000..9676216251
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html
@@ -0,0 +1,239 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NumeralFormula.IntegerFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NumeralFormula.IntegerFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface NumeralFormula.IntegerFormula" class="title">Interface NumeralFormula.IntegerFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code>, <code><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></code></dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public static interface <span class="typeNameLabel">NumeralFormula.IntegerFormula</span>
+extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormula">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></h3>
+<code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>, <a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html b/api/org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html
new file mode 100644
index 0000000000..8bb49c0063
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html
@@ -0,0 +1,239 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NumeralFormula.RationalFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NumeralFormula.RationalFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface NumeralFormula.RationalFormula" class="title">Interface NumeralFormula.RationalFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code>, <code><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></code></dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public static interface <span class="typeNameLabel">NumeralFormula.RationalFormula</span>
+extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormula">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></h3>
+<code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>, <a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/NumeralFormula.html b/api/org/sosy_lab/java_smt/api/NumeralFormula.html
new file mode 100644
index 0000000000..09d0847172
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/NumeralFormula.html
@@ -0,0 +1,251 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NumeralFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NumeralFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface NumeralFormula" class="title">Interface NumeralFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Subinterfaces:</dt>
+<dd><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code>, <code><a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">NumeralFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">Formulas of any numeral sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static interface&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static interface&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/NumeralFormulaManager.html b/api/org/sosy_lab/java_smt/api/NumeralFormulaManager.html
new file mode 100644
index 0000000000..4b3a9e8bdb
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/NumeralFormulaManager.html
@@ -0,0 +1,622 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NumeralFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NumeralFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface NumeralFormulaManager" class="title">Interface NumeralFormulaManager&lt;ParamFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>ParamFormulaType</code> - formulaType of the parameters</dd>
+<dd><code>ResultFormulaType</code> - formulaType of arithmetic results</dd>
+</dl>
+<dl>
+<dt>All Known Subinterfaces:</dt>
+<dd><code><a href="IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code>, <code><a href="RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">NumeralFormulaManager&lt;ParamFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</span></pre>
+<div class="block">This interface represents the Numeral Theory.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(ParamFormulaType,ParamFormulaType)">add</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+   <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</code></th>
+<td class="colLast">
+<div class="block">All given numbers are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(ParamFormulaType,ParamFormulaType)">divide</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;numerator,
+      <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;denominator)</code></th>
+<td class="colLast">
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(ParamFormulaType,ParamFormulaType)">equal</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+     <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floor(ParamFormulaType)">floor</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType()">getFormulaType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+               <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+           <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+            <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double)">makeNumber</a></span>&#8203;(double&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(long)">makeNumber</a></span>&#8203;(long&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pI)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(ParamFormulaType,ParamFormulaType)">multiply</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(ParamFormulaType)">negate</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(ParamFormulaType,ParamFormulaType)">subtract</a></span>&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sum(java.util.List)">sum</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeNumber(long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(long&nbsp;number)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="makeNumber(double)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(double&nbsp;number)</pre>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;number)</pre>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pI)</pre>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</pre>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="getFormulaType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature"><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&gt;&nbsp;getFormulaType()</pre>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="negate(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;negate&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="add(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;add&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                      <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="sum(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sum</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;sum&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="subtract(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;subtract&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                           <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="divide(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;divide&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;numerator,
+                         <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;denominator)</pre>
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.
+
+ <p>If the denominator evaluates to zero (division-by-zero), either directly as value or
+ indirectly via an additional constraint, then the solver is allowed to choose an arbitrary
+ value for the result of the division (cf. SMTLIB standard for the division operator in Ints or
+ Reals theory).
+
+ <p>Note: Some solvers, e.g., Yices2, abort with an exception when exploring a division-by-zero
+ during the SAT-check. This is not compliant to the SMTLIB standard, but sadly happens.</div>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="multiply(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature"><a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ResultFormulaType</a>&nbsp;multiply&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                           <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="equal(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                     <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</pre>
+<div class="block">All given numbers are pairwise unequal.</div>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                           <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                               <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                        <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                            <a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+</li>
+</ul>
+<a id="floor(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="floor(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>floor</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;floor&#8203;(<a href="NumeralFormulaManager.html" title="type parameter in NumeralFormulaManager">ParamFormulaType</a>&nbsp;formula)</pre>
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.
+
+ <p>For rational formulas, SMTlib2 denotes this operation as <code>to_int</code>.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html b/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html
new file mode 100644
index 0000000000..851316a46e
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html
@@ -0,0 +1,404 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>OptimizationProverEnvironment.OptStatus (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="OptimizationProverEnvironment.OptStatus (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum OptimizationProverEnvironment.OptStatus" class="title">Enum OptimizationProverEnvironment.OptStatus</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.OptimizationProverEnvironment.OptStatus</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">OptimizationProverEnvironment.OptStatus</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&gt;</pre>
+<div class="block">Status of the optimization problem.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#OPT">OPT</a></span></code></th>
+<td class="colLast">
+<div class="block">The solution was found (may be unbounded).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#UNDEF">UNDEF</a></span></code></th>
+<td class="colLast">
+<div class="block">The result is unknown.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#UNSAT">UNSAT</a></span></code></th>
+<td class="colLast">
+<div class="block">The set of constraints is unsatisfiable.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="OPT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>OPT</h4>
+<pre>public static final&nbsp;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a> OPT</pre>
+<div class="block">The solution was found (may be unbounded).</div>
+</li>
+</ul>
+<a id="UNSAT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>UNSAT</h4>
+<pre>public static final&nbsp;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a> UNSAT</pre>
+<div class="block">The set of constraints is unsatisfiable.</div>
+</li>
+</ul>
+<a id="UNDEF">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>UNDEF</h4>
+<pre>public static final&nbsp;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a> UNDEF</pre>
+<div class="block">The result is unknown.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (OptimizationProverEnvironment.OptStatus c : OptimizationProverEnvironment.OptStatus.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html b/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html
new file mode 100644
index 0000000000..7e4fe26735
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html
@@ -0,0 +1,459 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>OptimizationProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="OptimizationProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface OptimizationProverEnvironment" class="title">Interface OptimizationProverEnvironment</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">OptimizationProverEnvironment</span>
+extends <a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">Interface for optimization modulo SMT.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></span></code></th>
+<td class="colLast">
+<div class="block">Status of the optimization problem.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#check()">check</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Optimize the objective function subject to the previously imposed constraints.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getModel()">getModel</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lower(int,org.sosy_lab.common.rationals.Rational)">lower</a></span>&#8203;(int&nbsp;handle,
+     <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#maximize(org.sosy_lab.java_smt.api.Formula)">maximize</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</code></th>
+<td class="colLast">
+<div class="block">Add the maximization <code>objective</code>.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#minimize(org.sosy_lab.java_smt.api.Formula)">minimize</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</code></th>
+<td class="colLast">
+<div class="block">Add minimization <code>objective</code>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#upper(int,org.sosy_lab.common.rationals.Rational)">upper</a></span>&#8203;(int&nbsp;handle,
+     <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="BasicProverEnvironment.html#close()">close</a>, <a href="BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="BasicProverEnvironment.html#pop()">pop</a>, <a href="BasicProverEnvironment.html#push()">push</a>, <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="BasicProverEnvironment.html#size()">size</a>, <a href="BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="maximize(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>maximize</h4>
+<pre class="methodSignature">int&nbsp;maximize&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</pre>
+<div class="block">Add the maximization <code>objective</code>.
+
+ <p><b>Note: <code>push/pop</code> may be used for switching objectives</b></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Objective handle, to be used for retrieving the value.</dd>
+</dl>
+</li>
+</ul>
+<a id="minimize(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>minimize</h4>
+<pre class="methodSignature">int&nbsp;minimize&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</pre>
+<div class="block">Add minimization <code>objective</code>.
+
+ <p><b>Note: <code>push/pop</code> may be used for switching objectives</b></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Objective handle, to be used for retrieving the value.</dd>
+</dl>
+</li>
+</ul>
+<a id="check()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>check</h4>
+<pre class="methodSignature"><a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&nbsp;check()
+                                       throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                              <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Optimize the objective function subject to the previously imposed constraints.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Status of the optimization problem.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="upper(int,org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>upper</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;&nbsp;upper&#8203;(int&nbsp;handle,
+                         <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>epsilon</code> - Value to substitute for the <code>epsilon</code>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Upper approximation of the optimized value, or absent optional if the objective is
+     unbounded.</dd>
+</dl>
+</li>
+</ul>
+<a id="lower(int,org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lower</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;&nbsp;lower&#8203;(int&nbsp;handle,
+                         <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>epsilon</code> - Value to substitute for the <code>epsilon</code>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Lower approximation of the optimized value, or absent optional if the objective is
+     unbounded.</dd>
+</dl>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature"><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+        throws <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.
+
+ <p>Please note that the prover is allowed to use standard numbers for any real variable in the
+ model after a sat-query returned <a href="OptimizationProverEnvironment.OptStatus.html#OPT"><code>OptimizationProverEnvironment.OptStatus.OPT</code></a>. For integer formulas, we expect the
+ optimal assignment.
+
+ <p>Example 1: For the constraint 'x&lt;10' with a real x, the upper bound of x is '10-epsilon'
+ (epsilon can even be set to zero). The model can return the assignment x=9. To get an optimal
+ assignment, query the solver with an additional constraint 'x == 10-epsilon'.
+
+ <p>Example 2: For the constraint 'x&lt;10' with an integer x, the upper bound of x is '9'
+ (epsilon is irrelevant here and can be zero). The model returns the optimal assignment x=9.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BasicProverEnvironment.html#getModel()">getModel</a></code>&nbsp;in interface&nbsp;<code><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/PropagatorBackend.html b/api/org/sosy_lab/java_smt/api/PropagatorBackend.html
new file mode 100644
index 0000000000..34b9ce5552
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/PropagatorBackend.html
@@ -0,0 +1,404 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>PropagatorBackend (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="PropagatorBackend (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface PropagatorBackend" class="title">Interface PropagatorBackend</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public interface <span class="typeNameLabel">PropagatorBackend</span></pre>
+<div class="block">The PropagatorBackend class is used by <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> to implement custom user
+ propagators. It contains functions to interact with the SAT/SMT core during solving, for example,
+ it provides the ability to propagate conflicts and to influence the decision-making.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#notifyOnDecision()">notifyOnDecision</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Enables tracking of decisions made for the associated <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(BooleanFormula, boolean)</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#notifyOnFinalCheck()">notifyOnFinalCheck</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Enables the final callback <a href="UserPropagator.html#onFinalCheck()"><code>UserPropagator.onFinalCheck()</code></a> that is invoked when the
+ solver finds a full satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#notifyOnKnownValue()">notifyOnKnownValue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Enables tracking of expression values for the associated <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)">propagateConflict</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[]&nbsp;conflictExpressions)</code></th>
+<td class="colLast">
+<div class="block">Raises a conflict caused by a set of conflicting assignments.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)">propagateConsequence</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[]&nbsp;assignedExpressions,
+                    <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;consequence)</code></th>
+<td class="colLast">
+<div class="block">Propagates a consequence implied by a set of assigned expressions.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)">propagateNextDecision</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&gt;&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Propagates a decision to be made by the solver.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</code></th>
+<td class="colLast">
+<div class="block">Registers an expression to be observed by a <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>registerExpression</h4>
+<pre class="methodSignature">void&nbsp;registerExpression&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</pre>
+<div class="block">Registers an expression to be observed by a <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>. See <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> and <a href="UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> for more information.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>theoryExpr</code> - The expression to observe.</dd>
+</dl>
+</li>
+</ul>
+<a id="propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>propagateConflict</h4>
+<pre class="methodSignature">void&nbsp;propagateConflict&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[]&nbsp;conflictExpressions)</pre>
+<div class="block">Raises a conflict caused by a set of conflicting assignments. Shall only be called from within
+ a callback by <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> such as <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> and <a href="UserPropagator.html#onFinalCheck()"><code>UserPropagator.onFinalCheck()</code></a>.
+
+ <p>Effectively causes the solver to learn the implication "<code>conflictExpressions</code> =&gt;
+ false"</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>conflictExpressions</code> - A set of inconsistent assignments.</dd>
+</dl>
+</li>
+</ul>
+<a id="propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[],org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>propagateConsequence</h4>
+<pre class="methodSignature">void&nbsp;propagateConsequence&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[]&nbsp;assignedExpressions,
+                          <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;consequence)</pre>
+<div class="block">Propagates a consequence implied by a set of assigned expressions. Shall only be called from
+ within a callback by <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> such as <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> and
+ <a href="UserPropagator.html#onFinalCheck()"><code>UserPropagator.onFinalCheck()</code></a>.
+
+ <p>Effectively causes the solver to learn the implication "/\ <code>assignedExpressions</code> =&gt;
+ <code>consequence</code>" It is possible to have an empty set of <code>assignedExpressions</code> to
+ generate a theory lemma.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assignedExpressions</code> - A set of assigned expressions.</dd>
+<dd><code>consequence</code> - The consequence implied by the assigned expressions.</dd>
+</dl>
+</li>
+</ul>
+<a id="propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>propagateNextDecision</h4>
+<pre class="methodSignature">boolean&nbsp;propagateNextDecision&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&gt;&nbsp;value)</pre>
+<div class="block">Propagates a decision to be made by the solver. If called during <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>, will set the next decision to be made. If called during <a href="UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>, will overwrite the current decision to be made.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>expr</code> - The expression to assign to next.</dd>
+<dd><code>value</code> - The value to be assigned. If not given, the solver will decide.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>False, if the value of <code>expr</code> is already assigned. True, otherwise. Note that the
+     value of <code>expr</code> may already be decided before being reported via <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>.</dd>
+</dl>
+</li>
+</ul>
+<a id="notifyOnKnownValue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>notifyOnKnownValue</h4>
+<pre class="methodSignature">void&nbsp;notifyOnKnownValue()</pre>
+<div class="block">Enables tracking of expression values for the associated <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a>.
+
+ <p>This function is typically called from <a href="UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"><code>UserPropagator.initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)</code></a> if the
+ theory solver needs to listen to the value of expressions registered by <a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="notifyOnDecision()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>notifyOnDecision</h4>
+<pre class="methodSignature">void&nbsp;notifyOnDecision()</pre>
+<div class="block">Enables tracking of decisions made for the associated <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> via <a href="UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(BooleanFormula, boolean)</code></a>.
+
+ <p>This function is typically called from <a href="UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"><code>UserPropagator.initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)</code></a> if the
+ theory solver needs to listen to and/or modify the decisions made by the solver on expressions
+ registered by <a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="notifyOnFinalCheck()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>notifyOnFinalCheck</h4>
+<pre class="methodSignature">void&nbsp;notifyOnFinalCheck()</pre>
+<div class="block">Enables the final callback <a href="UserPropagator.html#onFinalCheck()"><code>UserPropagator.onFinalCheck()</code></a> that is invoked when the
+ solver finds a full satisfying assignment.
+
+ <p>This function is typically called from <a href="UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)"><code>UserPropagator.initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)</code></a> if the
+ theory solver needs to perform final consistency checks.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/ProverEnvironment.html b/api/org/sosy_lab/java_smt/api/ProverEnvironment.html
new file mode 100644
index 0000000000..b58b46716c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/ProverEnvironment.html
@@ -0,0 +1,264 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface ProverEnvironment" class="title">Interface ProverEnvironment</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></code>, <code><a href="../basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">ProverEnvironment</span>
+extends <a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</pre>
+<div class="block">An interface to an incremental SMT solver with methods for pushing and popping formulas as well
+ as SAT checks. Instances of this class can be used once for a series of related queries. After
+ that, the <a href="BasicProverEnvironment.html#close()"><code>BasicProverEnvironment.close()</code></a> method should be called (preferably using the try-with-resources
+ syntax). All methods are expected to throw <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>IllegalStateException</code></a>s after close was called.
+
+ <p>All solving methods are expected to throw <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api"><code>SolverException</code></a> if the solver fails to solve
+ the given query, and <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>InterruptedException</code></a> if a thread interrupt was requested or a
+ shutdown request via the <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink"><code>ShutdownNotifier</code></a>. It is not guaranteed, though, that solvers
+ respond in a timely manner (or at all) to shut down or interrupt requests.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="BasicProverEnvironment.html#close()">close</a>, <a href="BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="BasicProverEnvironment.html#getModel()">getModel</a>, <a href="BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="BasicProverEnvironment.html#pop()">pop</a>, <a href="BasicProverEnvironment.html#push()">push</a>, <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="BasicProverEnvironment.html#size()">size</a>, <a href="BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html b/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html
new file mode 100644
index 0000000000..04af2b339e
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html
@@ -0,0 +1,381 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>QuantifiedFormulaManager.Quantifier (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="QuantifiedFormulaManager.Quantifier (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum QuantifiedFormulaManager.Quantifier" class="title">Enum QuantifiedFormulaManager.Quantifier</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">QuantifiedFormulaManager.Quantifier</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#EXISTS">EXISTS</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#FORALL">FORALL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="FORALL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>FORALL</h4>
+<pre>public static final&nbsp;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a> FORALL</pre>
+</li>
+</ul>
+<a id="EXISTS">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>EXISTS</h4>
+<pre>public static final&nbsp;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a> EXISTS</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (QuantifiedFormulaManager.Quantifier c : QuantifiedFormulaManager.Quantifier.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html b/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html
new file mode 100644
index 0000000000..8642ca204f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html
@@ -0,0 +1,410 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>QuantifiedFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="QuantifiedFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":18,"i2":18,"i3":18,"i4":18,"i5":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface QuantifiedFormulaManager" class="title">Interface QuantifiedFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">QuantifiedFormulaManager</span></pre>
+<div class="block">This interface contains methods for working with any theory with quantifiers.
+
+ <p>ATTENTION: Not every theory has a quantifier elimination property!</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Eliminate the quantifiers for a given formula.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>default <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+      <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>default <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;quantifiedArg,
+      <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">
+<div class="block">Syntax sugar, see <a href="#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>exists(List, BooleanFormula)</code></a>.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>default <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+      <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>default <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a></span>&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;quantifiedArg,
+      <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">
+<div class="block">Syntax sugar, see <a href="#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>forall(List, BooleanFormula)</code></a>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier</a></span>&#8203;(<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+            <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>exists</h4>
+<pre class="methodSignature">default&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;exists&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+                              <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pVariables</code> - The variables that will get bound (variables) by the quantification.</dd>
+<dd><code>pBody</code> - The <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>} within that the binding will be performed.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An existentially quantified formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the list <code>pVariables</code> is empty.</dd>
+</dl>
+</li>
+</ul>
+<a id="forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>forall</h4>
+<pre class="methodSignature">default&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;forall&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+                              <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pVariables</code> - The variables that will get bound (variables) by the quantification.</dd>
+<dd><code>pBody</code> - The <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>} within that the binding will be performed.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A universally quantified formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the list <code>pVariables</code> is empty.</dd>
+</dl>
+</li>
+</ul>
+<a id="forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>forall</h4>
+<pre class="methodSignature">default&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;forall&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;quantifiedArg,
+                              <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<div class="block">Syntax sugar, see <a href="#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>forall(List, BooleanFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>exists</h4>
+<pre class="methodSignature">default&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;exists&#8203;(<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;quantifiedArg,
+                              <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<div class="block">Syntax sugar, see <a href="#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>exists(List, BooleanFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>mkQuantifier</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;mkQuantifier&#8203;(<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+                            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+                            <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>q</code> - Quantifier type</dd>
+<dd><code>pVariables</code> - The variables that will get bound (variables) by the quantification.</dd>
+<dd><code>pBody</code> - The <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>} within that the binding will be performed.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A quantified formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the list <code>pVariables</code> is empty.</dd>
+</dl>
+</li>
+</ul>
+<a id="eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>eliminateQuantifiers</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;eliminateQuantifiers&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                    <a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Eliminate the quantifiers for a given formula. If this is not possible, it will return the
+ input formula. Note that CVC4 only supports this for LIA and LRA.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - Formula with quantifiers.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>New formula without quantifiers.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/RationalFormulaManager.html b/api/org/sosy_lab/java_smt/api/RationalFormulaManager.html
new file mode 100644
index 0000000000..d53dd179a4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/RationalFormulaManager.html
@@ -0,0 +1,272 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>RationalFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="RationalFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":18};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface RationalFormulaManager" class="title">Interface RationalFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">RationalFormulaManager</span>
+extends <a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</pre>
+<div class="block">Interface for operating over <a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.RationalFormula</code></a>.
+
+ <p>Rational formulas may take both integral and rational formulas as arguments.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>default <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType()">getFormulaType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></h3>
+<code><a href="NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="NumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="NumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="NumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaType()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">default&nbsp;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;&nbsp;getFormulaType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="NumeralFormulaManager.html#getFormulaType()">getFormulaType</a></code>&nbsp;in interface&nbsp;<code><a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/RegexFormula.html b/api/org/sosy_lab/java_smt/api/RegexFormula.html
new file mode 100644
index 0000000000..19c446d261
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/RegexFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>RegexFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="RegexFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface RegexFormula" class="title">Interface RegexFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">RegexFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the string sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/SLFormulaManager.html b/api/org/sosy_lab/java_smt/api/SLFormulaManager.html
new file mode 100644
index 0000000000..281537dc92
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/SLFormulaManager.html
@@ -0,0 +1,329 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SLFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SLFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface SLFormulaManager" class="title">Interface SLFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">SLFormulaManager</span></pre>
+<div class="block">The <a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>SLFormulaManager</code></a> can build formulae for separation logic.
+
+ <p>Info: A <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> only supports the assertion of well-typed SL-formulae, i.e.
+ all formulae for one heap need to use matching types (sorts) for the AdressFormulae and
+ ValueFormulae. The user has to take care of this, otherwise the <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a>
+ complains at runtime!</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;<br><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeEmptyHeap(AT,VT)">makeEmptyHeap</a></span>&#8203;(AT&nbsp;pAdressType,
+             VT&nbsp;pValueType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+             <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;<br>AF</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNilElement(AT)">makeNilElement</a></span>&#8203;(AT&nbsp;pAdressType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePointsTo(AF,VF)">makePointsTo</a></span>&#8203;(AF&nbsp;ptr,
+            VF&nbsp;to)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+        <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeStar</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeStar&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                        <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+</li>
+</ul>
+<a id="makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makePointsTo(AF,VF)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePointsTo</h4>
+<pre class="methodSignature">&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makePointsTo&#8203;(AF&nbsp;ptr,
+                                                                          VF&nbsp;to)</pre>
+</li>
+</ul>
+<a id="makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMagicWand</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeMagicWand&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                             <a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+</li>
+</ul>
+<a id="makeEmptyHeap(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeEmptyHeap(AT,VT)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeEmptyHeap</h4>
+<pre class="methodSignature">&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;&nbsp;<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeEmptyHeap&#8203;(AT&nbsp;pAdressType,
+                                                                                                                                             VT&nbsp;pValueType)</pre>
+</li>
+</ul>
+<a id="makeNilElement(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeNilElement(AT)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>makeNilElement</h4>
+<pre class="methodSignature">&lt;AF extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;&nbsp;AF&nbsp;makeNilElement&#8203;(AT&nbsp;pAdressType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html b/api/org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html
new file mode 100644
index 0000000000..bd93125f7d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html
@@ -0,0 +1,441 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverContext.ProverOptions (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverContext.ProverOptions (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum SolverContext.ProverOptions" class="title">Enum SolverContext.ProverOptions</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.SolverContext.ProverOptions</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing interface:</dt>
+<dd><a href="SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">SolverContext.ProverOptions</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;</pre>
+<div class="block">Options for the prover environment.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#ENABLE_SEPARATION_LOGIC">ENABLE_SEPARATION_LOGIC</a></span></code></th>
+<td class="colLast">
+<div class="block">Whether the solver should enable support for formulae build in SL theory.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GENERATE_ALL_SAT">GENERATE_ALL_SAT</a></span></code></th>
+<td class="colLast">
+<div class="block">Whether the solver should allow to query all satisfying assignments for satisfiable formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GENERATE_MODELS">GENERATE_MODELS</a></span></code></th>
+<td class="colLast">
+<div class="block">Whether the solver should generate models (i.e., satisfying assignments) for satisfiable
+ formulas.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GENERATE_UNSAT_CORE">GENERATE_UNSAT_CORE</a></span></code></th>
+<td class="colLast">
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS">GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS</a></span></code></th>
+<td class="colLast">
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas <b>only</b> over
+ the assumptions explicitly passed to the solver.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="GENERATE_MODELS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GENERATE_MODELS</h4>
+<pre>public static final&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a> GENERATE_MODELS</pre>
+<div class="block">Whether the solver should generate models (i.e., satisfying assignments) for satisfiable
+ formulas.</div>
+</li>
+</ul>
+<a id="GENERATE_ALL_SAT">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GENERATE_ALL_SAT</h4>
+<pre>public static final&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a> GENERATE_ALL_SAT</pre>
+<div class="block">Whether the solver should allow to query all satisfying assignments for satisfiable formulas.</div>
+</li>
+</ul>
+<a id="GENERATE_UNSAT_CORE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GENERATE_UNSAT_CORE</h4>
+<pre>public static final&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a> GENERATE_UNSAT_CORE</pre>
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas. Unsat core is
+ generated over all formulas asserted with <a href="BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.addConstraint(BooleanFormula)</code></a> or <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(BooleanFormula)</code></a>.</div>
+</li>
+</ul>
+<a id="GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS</h4>
+<pre>public static final&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a> GENERATE_UNSAT_CORE_OVER_ASSUMPTIONS</pre>
+<div class="block">Whether the solver should generate an unsat core for unsatisfiable formulas <b>only</b> over
+ the assumptions explicitly passed to the solver.</div>
+</li>
+</ul>
+<a id="ENABLE_SEPARATION_LOGIC">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ENABLE_SEPARATION_LOGIC</h4>
+<pre>public static final&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a> ENABLE_SEPARATION_LOGIC</pre>
+<div class="block">Whether the solver should enable support for formulae build in SL theory.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (SolverContext.ProverOptions c : SolverContext.ProverOptions.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/SolverContext.html b/api/org/sosy_lab/java_smt/api/SolverContext.html
new file mode 100644
index 0000000000..624af053b5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/SolverContext.html
@@ -0,0 +1,460 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":18,"i4":6,"i5":6,"i6":6,"i7":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface SolverContext" class="title">Interface SolverContext</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></code>, <code><a href="../delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></code>, <code><a href="../delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></code>, <code><a href="../delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></code>, <code><a href="../delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">SolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">Instances of this interface provide access to an SMT solver. A single SolverContext should be
+ used only from a single thread.
+
+ <p>If you wish to use multiple contexts (even for the same solver), create one SolverContext per
+ each. Formulas can be transferred between different contexts using <a href="FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)"><code>FormulaManager.translateFrom(BooleanFormula, FormulaManager)</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></span></code></th>
+<td class="colLast">
+<div class="block">Options for the prover environment.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Close the solver context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverName()">getSolverName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>default <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a complete solver context.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get version information out of the solver.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature"><a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature"><a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block">Create a fresh new <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature"><a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block">Create a fresh new <a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature"><a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block">Create a fresh new <a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+<div class="block">Get version information out of the solver.
+
+ <p>In most cases, the version contains the name of the solver followed by some numbers and
+ additional info about the version, e.g., "SMTInterpol 2.5-12-g3d15a15c".</div>
+</li>
+</ul>
+<a id="getSolverName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverName</h4>
+<pre class="methodSignature"><a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;getSolverName()</pre>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).
+
+ <p>This is an uppercase String matching the enum identifier from <a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><code>SolverContextFactory.Solvers</code></a></div>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">default&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block">Get statistics for a complete solver context. The returned mapping is intended to provide the
+ solver-internal statistics. The keys can differ between individual solvers.
+
+ <p>Calling the statistics several times for the same context returns accumulated number, i.e.,
+ we currently do not provide any possibility to reset the statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="BasicProverEnvironment.html#getStatistics()"><code>BasicProverEnvironment.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">void&nbsp;close()</pre>
+<div class="block">Close the solver context.
+
+ <p>After calling this method, further access to any object that had been returned from this
+ context is not wanted, i.e., it depends on the solver. Java-based solvers might wait for the
+ next garbage collection with any cleanup operation. Native solvers might even reference invalid
+ memory and cause segmentation faults.
+
+ <p>Necessary for the solvers implemented in native code, frees the associated memory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/SolverException.html b/api/org/sosy_lab/java_smt/api/SolverException.html
new file mode 100644
index 0000000000..e63b87ce69
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/SolverException.html
@@ -0,0 +1,308 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverException (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverException (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Class SolverException" class="title">Class SolverException</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Throwable</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Exception.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Exception</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.SolverException</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">SolverException</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Exception.html?is-external=true" title="class or interface in java.lang" class="externalLink">Exception</a></pre>
+<div class="block">Exception thrown if there is an error during SMT solving.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../serialized-form.html#org.sosy_lab.java_smt.api.SolverException">Serialized Form</a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">SolverException</a></span>&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;msg)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String,java.lang.Throwable)">SolverException</a></span>&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;msg,
+               @Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Throwable</a>&nbsp;t)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Throwable">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Throwable</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#addSuppressed(java.lang.Throwable)" title="class or interface in java.lang" class="externalLink">addSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#fillInStackTrace()" title="class or interface in java.lang" class="externalLink">fillInStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#getCause()" title="class or interface in java.lang" class="externalLink">getCause</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#getLocalizedMessage()" title="class or interface in java.lang" class="externalLink">getLocalizedMessage</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#getMessage()" title="class or interface in java.lang" class="externalLink">getMessage</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#getStackTrace()" title="class or interface in java.lang" class="externalLink">getStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#getSuppressed()" title="class or interface in java.lang" class="externalLink">getSuppressed</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#initCause(java.lang.Throwable)" title="class or interface in java.lang" class="externalLink">initCause</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#printStackTrace()" title="class or interface in java.lang" class="externalLink">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintStream)" title="class or interface in java.lang" class="externalLink">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#printStackTrace(java.io.PrintWriter)" title="class or interface in java.lang" class="externalLink">printStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#setStackTrace(java.lang.StackTraceElement%5B%5D)" title="class or interface in java.lang" class="externalLink">setStackTrace</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SolverException</h4>
+<pre>public&nbsp;SolverException&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;msg)</pre>
+</li>
+</ul>
+<a id="&lt;init&gt;(java.lang.String,java.lang.Throwable)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SolverException</h4>
+<pre>public&nbsp;SolverException&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;msg,
+                       @Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Throwable</a>&nbsp;t)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/StringFormula.html b/api/org/sosy_lab/java_smt/api/StringFormula.html
new file mode 100644
index 0000000000..278c22eaa2
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/StringFormula.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>StringFormula (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="StringFormula (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface StringFormula" class="title">Interface StringFormula</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Superinterfaces:</dt>
+<dd><code><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></dd>
+</dl>
+<hr>
+<pre>@Immutable
+public interface <span class="typeNameLabel">StringFormula</span>
+extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></pre>
+<div class="block">A formula of the string sort.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Formula">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></h3>
+<code><a href="Formula.html#equals(java.lang.Object)">equals</a>, <a href="Formula.html#hashCode()">hashCode</a>, <a href="Formula.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/StringFormulaManager.html b/api/org/sosy_lab/java_smt/api/StringFormulaManager.html
new file mode 100644
index 0000000000..9c3378faf2
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/StringFormulaManager.html
@@ -0,0 +1,953 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>StringFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="StringFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":18,"i7":18,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":18,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface StringFormulaManager" class="title">Interface StringFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a></code>, <code><a href="../delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">StringFormulaManager</span></pre>
+<div class="block">Manager for dealing with string formulas. Functions come from
+ http://smtlib.cs.uiowa.edu/theories-UnicodeStrings.shtml.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t5" class="tableTab"><span><a href="javascript:show(16);">Default Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#all()">all</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allChar()">allChar</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+      <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</code></th>
+<td class="colLast">
+<div class="block">Get a substring of length 1 from the given String.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(java.util.List)">concat</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>default <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(org.sosy_lab.java_smt.api.RegexFormula...)">concat</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>...&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>default <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(org.sosy_lab.java_smt.api.StringFormula...)">concat</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>...&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concatRegex(java.util.List)">concatRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+        <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+          <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+     <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+               <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+           <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+  <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+       <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+       <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</code></th>
+<td class="colLast">
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+            <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#length(org.sosy_lab.java_smt.api.StringFormula)">length</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+            <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+        <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeRegex(java.lang.String)">makeRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeString(java.lang.String)">makeString</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of type String with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#none()">none</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>default <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#range(char,char)">range</a></span>&#8203;(char&nbsp;start,
+     char&nbsp;end)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+     <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+       <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+       <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+          <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+          <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+         <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+         <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</code></th>
+<td class="colLast">
+<div class="block">Get a substring from the given String.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+     int&nbsp;repetitions)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula</a></span>&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Interpret a String formula as an Integer formula.</div>
+</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula</a></span>&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Interpret an Integer formula as a String formula.</div>
+</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union</a></span>&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+     <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeString(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeString</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeString&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block">Returns a <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the string value the returned <code>Formula</code> should represent</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a Formula representing the given value</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block">Creates a variable of type String with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                     <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                           <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                               <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                        <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                            <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+</li>
+</ul>
+<a id="prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>prefix</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;prefix&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+                      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+</li>
+</ul>
+<a id="suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>suffix</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;suffix&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+                      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+</li>
+</ul>
+<a id="contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>contains</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;contains&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                        <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</pre>
+</li>
+</ul>
+<a id="indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>indexOf</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;indexOf&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                                      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+                                      <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</pre>
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.
+ startIndex (inlcuded) denotes the start of the search for the index.</div>
+</li>
+</ul>
+<a id="charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>charAt</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;charAt&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                     <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</pre>
+<div class="block">Get a substring of length 1 from the given String.
+
+ <p>The result is underspecified, if the index is out of bounds for the given String.</div>
+</li>
+</ul>
+<a id="substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substring</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;substring&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                        <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+                        <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</pre>
+<div class="block">Get a substring from the given String.
+
+ <p>The result is underspecified, if the start index is out of bounds for the given String or if
+ the requested length is negative. The length of the result is the minimum of the requested
+ length and the remaining length of the given String.</div>
+</li>
+</ul>
+<a id="replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replace</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replace&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                      <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+</li>
+</ul>
+<a id="replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replaceAll</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replaceAll&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                         <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                         <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+</li>
+</ul>
+<a id="length(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>length</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+</li>
+</ul>
+<a id="concat(org.sosy_lab.java_smt.api.StringFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">default&nbsp;<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;concat&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>...&nbsp;parts)</pre>
+</li>
+</ul>
+<a id="concat(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;concat&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</pre>
+</li>
+</ul>
+<a id="in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>in</h4>
+<pre class="methodSignature"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;in&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                  <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>str</code> - formula representing the string to match</dd>
+<dd><code>regex</code> - formula representing the regular expression</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a formula representing the acceptance of the string by the regular expression</dd>
+</dl>
+</li>
+</ul>
+<a id="makeRegex(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeRegex</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;makeRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block">Returns a <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.
+
+ <p>This method does not parse an existing regex from String, but uses the String directly as a
+ constant.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the regular expression the returned <code>Formula</code> should represent</dd>
+</dl>
+</li>
+</ul>
+<a id="none()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>none</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;none()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the empty set of strings</dd>
+</dl>
+</li>
+</ul>
+<a id="all()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>all</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;all()</pre>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings, also known as Regex <code>".*"</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="allChar()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allChar</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;allChar()</pre>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings of length 1, also known as DOT operator which
+     represents one arbitrary char, or as Regex <code>"."</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>range</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;range&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+                   <a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the range regular expression over two sequences of length 1.</dd>
+</dl>
+</li>
+</ul>
+<a id="range(char,char)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>range</h4>
+<pre class="methodSignature">default&nbsp;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;range&#8203;(char&nbsp;start,
+                           char&nbsp;end)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the range regular expression over two chars.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)"><code>range(StringFormula, StringFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="concat(org.sosy_lab.java_smt.api.RegexFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">default&nbsp;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;concat&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>...&nbsp;parts)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation</dd>
+</dl>
+</li>
+</ul>
+<a id="concatRegex(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concatRegex</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;concatRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation</dd>
+</dl>
+</li>
+</ul>
+<a id="union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>union</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;union&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                   <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the union</dd>
+</dl>
+</li>
+</ul>
+<a id="intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>intersection</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;intersection&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                          <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the intersection</dd>
+</dl>
+</li>
+</ul>
+<a id="complement(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>complement</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;complement&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure</dd>
+</dl>
+</li>
+</ul>
+<a id="closure(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closure</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;closure&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure (0 or more), also known as STAR operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>difference</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;difference&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                        <a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the difference</dd>
+</dl>
+</li>
+</ul>
+<a id="cross(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>cross</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;cross&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene cross (1 or more), also known as PLUS operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="optional(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>optional</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;optional&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the optionality, also known as QUESTIONMARK operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="times(org.sosy_lab.java_smt.api.RegexFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>times</h4>
+<pre class="methodSignature"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;times&#8203;(<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+                   int&nbsp;repetitions)</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation n times</dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block">Interpret a String formula as an Integer formula.
+
+ <p>The number is interpreted in base 10 and has no leading zeros. The method works as expected
+ for positive numbers, including zero. It returns the constant value of <code>-1</code> for
+ negative numbers or invalid number representations, for example if any char is no digit.</div>
+</li>
+</ul>
+<a id="toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toStringFormula</h4>
+<pre class="methodSignature"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;toStringFormula&#8203;(<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</pre>
+<div class="block">Interpret an Integer formula as a String formula.
+
+ <p>The number is in base 10. The method works as expected for positive numbers, including zero.
+ It returns the empty string <code>""</code> for negative numbers.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/Tactic.html b/api/org/sosy_lab/java_smt/api/Tactic.html
new file mode 100644
index 0000000000..a62337442d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/Tactic.html
@@ -0,0 +1,430 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Tactic (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Tactic (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Enum Tactic" class="title">Enum Tactic</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.Tactic</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public enum <span class="typeNameLabel">Tactic</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&gt;</pre>
+<div class="block">Tactic is a generic formula to formula transformation.
+
+ <p>Depending on whether the chosen solver supports the transformation, at runtime switches
+ between solver-provided implementation and our own generic visitor-based one.
+
+ <p>Tactics can be applied using <a href="FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)"><code>FormulaManager.applyTactic(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.Tactic)</code></a></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#ACKERMANNIZATION">ACKERMANNIZATION</a></span></code></th>
+<td class="colLast">
+<div class="block">Replaces all applications of UFs with fresh variables and adds constraints to enforce the
+ functional consistency.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#NNF">NNF</a></span></code></th>
+<td class="colLast">
+<div class="block">Convert the formula to NNF (negated normal form).</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#QE_LIGHT">QE_LIGHT</a></span></code></th>
+<td class="colLast">
+<div class="block">Perform "best-effort" quantifier elimination: when the bound variable can be "cheaply"
+ eliminated using a pattern-matching approach, eliminate it, and otherwise leave it as-is.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#TSEITIN_CNF">TSEITIN_CNF</a></span></code></th>
+<td class="colLast">
+<div class="block">Convert the formula to CNF (conjunctive normal form), using extra fresh variables to avoid the
+ size explosion.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="ACKERMANNIZATION">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ACKERMANNIZATION</h4>
+<pre>public static final&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a> ACKERMANNIZATION</pre>
+<div class="block">Replaces all applications of UFs with fresh variables and adds constraints to enforce the
+ functional consistency. Quantified formulas are not supported.</div>
+</li>
+</ul>
+<a id="NNF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>NNF</h4>
+<pre>public static final&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a> NNF</pre>
+<div class="block">Convert the formula to NNF (negated normal form).</div>
+</li>
+</ul>
+<a id="TSEITIN_CNF">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>TSEITIN_CNF</h4>
+<pre>public static final&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a> TSEITIN_CNF</pre>
+<div class="block">Convert the formula to CNF (conjunctive normal form), using extra fresh variables to avoid the
+ size explosion. The resulting formula is not <i>equivalent</i> but only <i>equisatisfiable</i>
+ to the original one.
+
+ <p>NB: currently this tactic does not have a default implementation.</div>
+</li>
+</ul>
+<a id="QE_LIGHT">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>QE_LIGHT</h4>
+<pre>public static final&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a> QE_LIGHT</pre>
+<div class="block">Perform "best-effort" quantifier elimination: when the bound variable can be "cheaply"
+ eliminated using a pattern-matching approach, eliminate it, and otherwise leave it as-is.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (Tactic c : Tactic.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/UFManager.html b/api/org/sosy_lab/java_smt/api/UFManager.html
new file mode 100644
index 0000000000..b7e310f014
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/UFManager.html
@@ -0,0 +1,378 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>UFManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="UFManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface UFManager" class="title">Interface UFManager</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a></code>, <code><a href="../delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">UFManager</span></pre>
+<div class="block">Manager for dealing with uninterpreted functions (UFs).</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF</a></span>&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create an uninterpreted function call.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF</a></span>&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+      <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</code></th>
+<td class="colLast">
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+         <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+         <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+         <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                     <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+                                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;args)</pre>
+<div class="block">Declare an uninterpreted function.</div>
+</li>
+</ul>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                     <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+                                                     <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;args)</pre>
+<div class="block">Declare an uninterpreted function.</div>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+<div class="block">Create an uninterpreted function call.
+
+ <p>Simply delegates to <a href="FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(FunctionDeclaration, List)</code></a></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>funcType</code> - Declaration of the function to call.</dd>
+<dd><code>args</code> - Arguments of the function.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Instantiated function call.</dd>
+</dl>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+                             <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>callUF(FunctionDeclaration, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                       <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</pre>
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                       <a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                       <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"><code>declareAndCallUF(String, FormulaType, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/UserPropagator.html b/api/org/sosy_lab/java_smt/api/UserPropagator.html
new file mode 100644
index 0000000000..cdf6de8114
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/UserPropagator.html
@@ -0,0 +1,421 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>UserPropagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="UserPropagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api</a></div>
+<h2 title="Interface UserPropagator" class="title">Interface UserPropagator</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code>, <code><a href="../example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></code>, <code><a href="../example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">UserPropagator</span></pre>
+<div class="block">Allows user-defined propagators (~ theory solvers) to be implemented. It is advised to inherit
+ from <a href="../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl"><code>AbstractUserPropagator</code></a> rather than implementing this
+ interface directly.
+
+ <p>A user propagator provides various callbacks that are invoked by the solver during the solving
+ process. Within these callbacks, the user can react to and influence the solver by calling into
+ the <a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><code>PropagatorBackend</code></a>. For example, he can raise conflicts whenever the solver makes
+ assignments inconsistent to the user-defined theory.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></span>&#8203;(<a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;backend)</code></th>
+<td class="colLast">
+<div class="block">This method is invoked after the user propagator is registered via <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+          boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver decides to branch on a registered expression.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onFinalCheck()">onFinalCheck</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+            boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>).</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPop(int)">onPop</a></span>&#8203;(int&nbsp;numPoppedLevels)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver backtracks.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPush()">onPush</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked whenever the solver creates a new decision level.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></span>&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</code></th>
+<td class="colLast">
+<div class="block">Registers an expression to be observed by the <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="onPush()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPush</h4>
+<pre class="methodSignature">void&nbsp;onPush()</pre>
+<div class="block">This callback is invoked whenever the solver creates a new decision level. A user propagator
+ should maintain backtracking points on each push to enable later backtracking.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+</li>
+</ul>
+<a id="onPop(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPop</h4>
+<pre class="methodSignature">void&nbsp;onPop&#8203;(int&nbsp;numPoppedLevels)</pre>
+<div class="block">This callback is invoked when the solver backtracks. The solver can backtrack multiple levels
+ simultaneously.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numPoppedLevels</code> - The number of levels to backtrack (~ number of pushes to backtrack).</dd>
+</dl>
+</li>
+</ul>
+<a id="onFinalCheck()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onFinalCheck</h4>
+<pre class="methodSignature">void&nbsp;onFinalCheck()</pre>
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment. The user can
+ check the found model for consistency and potentially raise conflicts via <a href="PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(BooleanFormula[])</code></a>.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="PropagatorBackend.html#notifyOnFinalCheck()"><code>PropagatorBackend.notifyOnFinalCheck()</code></a>.</div>
+</li>
+</ul>
+<a id="onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onKnownValue</h4>
+<pre class="methodSignature">void&nbsp;onKnownValue&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                  boolean&nbsp;value)</pre>
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can raise conflicts via <a href="PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])</code></a>, propagate consequences via <a href="PropagatorBackend.html#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)"><code>PropagatorBackend.propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[], org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, or influence the solvers decision heuristics via
+ <a href="PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>The reported value is only known on the current and later push levels, but will get
+ invalidated when backtracking.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>expr</code> - The expressions whose value is known.</dd>
+<dd><code>value</code> - The value of the expression.</dd>
+</dl>
+</li>
+</ul>
+<a id="onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onDecision</h4>
+<pre class="methodSignature">void&nbsp;onDecision&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                boolean&nbsp;value)</pre>
+<div class="block">This callback is invoked if the solver decides to branch on a registered expression. (<a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can change the decision by calling <a href="PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="PropagatorBackend.html#notifyOnDecision()"><code>PropagatorBackend.notifyOnDecision()</code></a>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>expr</code> - The expressions whose value gets decided (usually a literal).</dd>
+<dd><code>value</code> - The decision value.</dd>
+</dl>
+</li>
+</ul>
+<a id="initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>initializeWithBackend</h4>
+<pre class="methodSignature">void&nbsp;initializeWithBackend&#8203;(<a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;backend)</pre>
+<div class="block">This method is invoked after the user propagator is registered via <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>. The user can enable notifications by
+ accessing the provided <a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><code>PropagatorBackend</code></a>.
+
+ <p>Warning: During its lifetime, a user propagator shall only be registered once via <a href="BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a> for otherwise unexpected errors can
+ occur. Implementations are advised to throw exceptions if this method is called multiple times.</div>
+</li>
+</ul>
+<a id="registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>registerExpression</h4>
+<pre class="methodSignature">void&nbsp;registerExpression&#8203;(<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</pre>
+<div class="block">Registers an expression to be observed by the <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>. Solver actions related to
+ the expression are reported:
+
+ <ul>
+   <li>The callback <a href="#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> gets invoked if the value of a
+       registered expression becomes known (if notification was enabled via <a href="PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>).
+   <li>The callback <a href="#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>onDecision(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> gets invoked right before the solver
+       decides on the value of a registered expression (if notification was enabled via <a href="PropagatorBackend.html#notifyOnDecision()"><code>PropagatorBackend.notifyOnDecision()</code></a>).
+ </ul></div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>theoryExpr</code> - The expression to observe.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/package-summary.html b/api/org/sosy_lab/java_smt/api/package-summary.html
new file mode 100644
index 0000000000..f5ee7db663
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/package-summary.html
@@ -0,0 +1,500 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.api (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.api (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.api</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">The core interfaces for abstracting from SMT solvers and providing a common API for all solvers.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</th>
+<td class="colLast">
+<div class="block">A formula of the array sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></th>
+<td class="colLast">
+<div class="block">This interface represents the theory of (arbitrarily nested) arrays.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</th>
+<td class="colLast">
+<div class="block">Super interface for <a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> and <a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> that
+ provides only the common operations.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;</th>
+<td class="colLast">
+<div class="block">Interface for the <a href="BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)"><code>BasicProverEnvironment.allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback&lt;R&gt;, java.util.List&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a> callback.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></th>
+<td class="colLast">
+<div class="block">A formula of the bitvector sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Manager for dealing with formulas of the bitvector sort.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></th>
+<td class="colLast">
+<div class="block">A formula of the boolean sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Manager for dealing with boolean formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></th>
+<td class="colLast">
+<div class="block">A formula of the enumeration sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></th>
+<td class="colLast">
+<div class="block">This interface represents the theory of enumeration, i.e., datatype of limited domain sort (as
+ defined in the SMTLIB2 standard).</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></th>
+<td class="colLast">
+<div class="block">This class provides methods to get concrete evaluations for formulas from the satisfiable solver
+ environment.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></th>
+<td class="colLast">
+<div class="block">Formula of the floating point sort.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Floating point operations.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointRoundingModeFormula</a></th>
+<td class="colLast">
+<div class="block">Formula representing a rounding mode for floating-point operations.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></th>
+<td class="colLast">
+<div class="block">An arbitrary SMT formula.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></th>
+<td class="colLast">
+<div class="block">FormulaManager class contains all operations which can be performed on formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;E extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</th>
+<td class="colLast">
+<div class="block">Function declaration, for both UFs and built-in functions (theory and boolean).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Interface which operates over <a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.IntegerFormula</code></a>s.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</th>
+<td class="colLast">
+<div class="block">This class provides an interface to an incremental SMT solver with methods for pushing and
+ popping formulas as well as SAT checks.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></th>
+<td class="colLast">
+<div class="block">This class provides a model with concrete evaluations for symbols and formulas from the
+ satisfiable solver environment.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a></th>
+<td class="colLast">
+<div class="block">Formulas of any numeral sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</th>
+<td class="colLast">
+<div class="block">This interface represents the Numeral Theory.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></th>
+<td class="colLast">
+<div class="block">Interface for optimization modulo SMT.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></th>
+<td class="colLast">
+<div class="block">The PropagatorBackend class is used by <a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a> to implement custom user
+ propagators.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></th>
+<td class="colLast">
+<div class="block">An interface to an incremental SMT solver with methods for pushing and popping formulas as well
+ as SAT checks.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></th>
+<td class="colLast">
+<div class="block">This interface contains methods for working with any theory with quantifiers.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Interface for operating over <a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormula.RationalFormula</code></a>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></th>
+<td class="colLast">
+<div class="block">A formula of the string sort.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></th>
+<td class="colLast">
+<div class="block">The <a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>SLFormulaManager</code></a> can build formulae for separation logic.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></th>
+<td class="colLast">
+<div class="block">Instances of this interface provide access to an SMT solver.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></th>
+<td class="colLast">
+<div class="block">A formula of the string sort.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></th>
+<td class="colLast">
+<div class="block">Manager for dealing with string formulas.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></th>
+<td class="colLast">
+<div class="block">Manager for dealing with uninterpreted functions (UFs).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></th>
+<td class="colLast">
+<div class="block">Allows user-defined propagators (~ theory solvers) to be implemented.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></th>
+<td class="colLast">
+<div class="block">Represents a floating-point number with customizable precision, consisting of sign, exponent, and
+ mantissa components.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</th>
+<td class="colLast">
+<div class="block">Type of a formula.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.NumeralType</a>&lt;T extends <a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a></th>
+<td class="colLast">
+<div class="block">Possible floating point rounding modes.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a></th>
+<td class="colLast">
+<div class="block">Types of function declarations.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></th>
+<td class="colLast">
+<div class="block">Status of the optimization problem.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></th>
+<td class="colLast">
+<div class="block">Options for the prover environment.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a></th>
+<td class="colLast">
+<div class="block">Tactic is a generic formula to formula transformation.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Exception</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></th>
+<td class="colLast">
+<div class="block">Exception thrown if there is an error during SMT solving.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/package-tree.html b/api/org/sosy_lab/java_smt/api/package-tree.html
new file mode 100644
index 0000000000..dea9ec0458
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/package-tree.html
@@ -0,0 +1,267 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.api Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.api Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.api</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointNumber</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.ArrayFormulaType</span></a>&lt;TI,&#8203;TE&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.BitvectorType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.EnumerationFormulaType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.FloatingPointType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.NumeralType</span></a>&lt;T&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model.ValueAssignment</span></a></li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Throwable</span></a> (implements java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Exception.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Exception</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="SolverException.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverException</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormulaManager</span></a></li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">AutoCloseable</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">InterpolatingProverEnvironment</span></a>&lt;T&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ProverEnvironment</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Evaluator</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;T&gt;)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends org.sosy_lab.java_smt.api.<a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>, java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment</span></a> (also extends org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment.AllSatCallback</span></a>&lt;R&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Formula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Formula</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormula</span></a>&lt;TI,&#8203;TE&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingModeFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.IntegerFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.RationalFormula</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RegexFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormula</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclaration</span></a>&lt;E&gt;</li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Iterable</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, org.sosy_lab.java_smt.api.<a href="Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormulaManager</span></a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">IntegerFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RationalFormulaManager</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">PropagatorBackend</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SLFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="UFManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UFManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UserPropagator</span></a></li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingMode</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclarationKind</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment.OptStatus</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager.Quantifier</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext.ProverOptions</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="Tactic.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">Tactic</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html
new file mode 100644
index 0000000000..89bfc13969
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html
@@ -0,0 +1,606 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BooleanFormulaTransformationVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BooleanFormulaTransformationVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class BooleanFormulaTransformationVisitor" class="title">Class BooleanFormulaTransformationVisitor</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="../../basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">BooleanFormulaTransformationVisitor</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</pre>
+<div class="block">Base class for visitors for boolean formulas that recursively transform boolean formulas.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)"><code>BooleanFormulaManager.transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)</code></a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">BooleanFormulaTransformationVisitor</a></span>&#8203;(<a href="../FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pMgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAnd(java.util.List)">visitAnd</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;processedOperands)</code></th>
+<td class="colLast">
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pAtom,
+         <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;decl)</code></th>
+<td class="colLast">
+<div class="block">Visit an SMT atom.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+             int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(boolean)">visitConstant</a></span>&#8203;(boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant with a given value.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedCondition,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedThenFormula,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedElseFormula)</code></th>
+<td class="colLast">
+<div class="block">Visit an if-then-else expression.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an implication.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand)</code></th>
+<td class="colLast">
+<div class="block">Visit a NOT-expression.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitOr(java.util.List)">visitOr</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;processedOperands)</code></th>
+<td class="colLast">
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedBody)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+        <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit a XOR-expression.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>BooleanFormulaTransformationVisitor</h4>
+<pre>protected&nbsp;BooleanFormulaTransformationVisitor&#8203;(<a href="../FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pMgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitConstant(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitConstant&#8203;(boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitConstant(boolean)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a constant with a given value.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitConstant(boolean)">visitConstant</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#makeBoolean(boolean)"><code>BooleanFormulaManager.makeBoolean(boolean)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVar</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitBoundVar&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+                                    int&nbsp;deBruijnIdx)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitAtom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitAtom&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pAtom,
+                                <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;decl)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an SMT atom. An atom can be a theory expression, constant, or a variable.
+
+ <p>This is anything with a boolean sort which is not covered by the cases above.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitNot</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitNot&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a NOT-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>processedOperand</code> - Negated term.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.not(org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAnd(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitAnd</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitAnd&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;processedOperands)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitAnd(java.util.List)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.
+
+ <p>An AND-expression with zero arguments is equisatisfiable to 'TRUE'. An AND-expression with
+ one argument is equal to the argument itself. In all other cases, default boolean logic
+ applies.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitAnd(java.util.List)">visitAnd</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitOr(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitOr</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitOr&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;processedOperands)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitOr(java.util.List)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.
+
+ <p>An OR-expression with zero arguments is equisatisfiable to 'TRUE'. An OR-expression with one
+ argument is equal to the argument itself. In all other cases, default boolean logic applies.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitOr(java.util.List)">visitOr</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitXor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitXor&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a XOR-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.xor(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitEquivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitEquivalence&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                                       <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.equivalence(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitImplication</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitImplication&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                                       <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an implication.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.implication(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitIfThenElse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitIfThenElse&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedCondition,
+                                      <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedThenFormula,
+                                      <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedElseFormula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an if-then-else expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"><code>BooleanFormulaManager.ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula, T, T)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitQuantifier&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+                                      <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+                                      <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedBody)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>quantifier</code> - Quantifier type: FORALL- or EXISTS-</dd>
+<dd><code>quantifiedAST</code> - AST of the quantified node. Provided because it is difficult to re-create
+     from the parameters.</dd>
+<dd><code>boundVars</code> - Variables bound by this quantifier.</dd>
+<dd><code>processedBody</code> - Body of the quantified expression.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.forall(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.exists(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html
new file mode 100644
index 0000000000..ecb1b3654c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html
@@ -0,0 +1,506 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BooleanFormulaVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BooleanFormulaVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Interface BooleanFormulaVisitor" class="title">Interface BooleanFormulaVisitor&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>R</code> - Desired return type.</dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code>, <code><a href="DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a></code>, <code><a href="../../basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">BooleanFormulaVisitor&lt;R&gt;</span></pre>
+<div class="block">Visitor iterating through the boolean part of the formula. Use <a href="../BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"><code>BooleanFormulaManager.visit(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor&lt;R&gt;)</code></a> for visiting formulas.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAnd(java.util.List)">visitAnd</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;atom,
+         <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;funcDecl)</code></th>
+<td class="colLast">
+<div class="block">Visit an SMT atom.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+             int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(boolean)">visitConstant</a></span>&#8203;(boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant with a given value.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;condition,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;thenFormula,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;elseFormula)</code></th>
+<td class="colLast">
+<div class="block">Visit an if-then-else expression.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an implication.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand)</code></th>
+<td class="colLast">
+<div class="block">Visit a NOT-expression.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitOr(java.util.List)">visitOr</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+        <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</code></th>
+<td class="colLast">
+<div class="block">Visit a XOR-expression.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitConstant(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitConstant&#8203;(boolean&nbsp;value)</pre>
+<div class="block">Visit a constant with a given value.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#makeBoolean(boolean)"><code>BooleanFormulaManager.makeBoolean(boolean)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVar</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitBoundVar&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+                int&nbsp;deBruijnIdx)</pre>
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+</li>
+</ul>
+<a id="visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitNot</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitNot&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand)</pre>
+<div class="block">Visit a NOT-expression.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>operand</code> - Negated term.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.not(org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAnd(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitAnd</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitAnd&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;operands)</pre>
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.
+
+ <p>An AND-expression with zero arguments is equisatisfiable to 'TRUE'. An AND-expression with
+ one argument is equal to the argument itself. In all other cases, default boolean logic
+ applies.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitOr(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitOr</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitOr&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;operands)</pre>
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.
+
+ <p>An OR-expression with zero arguments is equisatisfiable to 'TRUE'. An OR-expression with one
+ argument is equal to the argument itself. In all other cases, default boolean logic applies.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitXor</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitXor&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+           <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</pre>
+<div class="block">Visit a XOR-expression.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.xor(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitEquivalence</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitEquivalence&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+                   <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</pre>
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.equivalence(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitImplication</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitImplication&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+                   <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</pre>
+<div class="block">Visit an implication.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.implication(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitIfThenElse</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitIfThenElse&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;condition,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;thenFormula,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;elseFormula)</pre>
+<div class="block">Visit an if-then-else expression.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"><code>BooleanFormulaManager.ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula, T, T)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitQuantifier&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</pre>
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>quantifier</code> - Quantifier type: FORALL- or EXISTS-</dd>
+<dd><code>quantifiedAST</code> - AST of the quantified node. Provided because it is difficult to re-create
+     from the parameters.</dd>
+<dd><code>boundVars</code> - Variables bound by this quantifier.</dd>
+<dd><code>body</code> - Body of the quantified expression.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.forall(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.exists(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitAtom</h4>
+<pre class="methodSignature"><a href="BooleanFormulaVisitor.html" title="type parameter in BooleanFormulaVisitor">R</a>&nbsp;visitAtom&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;atom,
+            <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;funcDecl)</pre>
+<div class="block">Visit an SMT atom. An atom can be a theory expression, constant, or a variable.
+
+ <p>This is anything with a boolean sort which is not covered by the cases above.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html
new file mode 100644
index 0000000000..c6fba5728c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html
@@ -0,0 +1,614 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DefaultBooleanFormulaVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DefaultBooleanFormulaVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":6,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class DefaultBooleanFormulaVisitor" class="title">Class DefaultBooleanFormulaVisitor&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.DefaultBooleanFormulaVisitor&lt;R&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>R</code> - Return type for each traversal operation.</dd>
+</dl>
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;</code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">DefaultBooleanFormulaVisitor&lt;R&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;</pre>
+<div class="block">A formula visitor which allows for the default implementation.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">DefaultBooleanFormulaVisitor</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAnd(java.util.List)">visitAnd</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pOperands)</code></th>
+<td class="colLast">
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pAtom,
+         <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;decl)</code></th>
+<td class="colLast">
+<div class="block">Visit an SMT atom.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+             int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(boolean)">visitConstant</a></span>&#8203;(boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant with a given value.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitDefault()">visitDefault</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pCondition,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pThenFormula,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pElseFormula)</code></th>
+<td class="colLast">
+<div class="block">Visit an if-then-else expression.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand1,
+                <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an implication.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand)</code></th>
+<td class="colLast">
+<div class="block">Visit a NOT-expression.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitOr(java.util.List)">visitOr</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pOperands)</code></th>
+<td class="colLast">
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+        <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</code></th>
+<td class="colLast">
+<div class="block">Visit a XOR-expression.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DefaultBooleanFormulaVisitor</h4>
+<pre>public&nbsp;DefaultBooleanFormulaVisitor()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitDefault()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitDefault</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitDefault()</pre>
+</li>
+</ul>
+<a id="visitConstant(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitConstant&#8203;(boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitConstant(boolean)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a constant with a given value.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitConstant(boolean)">visitConstant</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#makeBoolean(boolean)"><code>BooleanFormulaManager.makeBoolean(boolean)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVar</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitBoundVar&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+                       int&nbsp;deBruijnIdx)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a boolean variable bound by a quantifier.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitAtom</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitAtom&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pAtom,
+                   <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;decl)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an SMT atom. An atom can be a theory expression, constant, or a variable.
+
+ <p>This is anything with a boolean sort which is not covered by the cases above.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitNot</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitNot&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a NOT-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOperand</code> - Negated term.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.not(org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitAnd(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitAnd</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitAnd&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pOperands)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitAnd(java.util.List)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an AND-expression with an arbitrary number of boolean arguments.
+
+ <p>An AND-expression with zero arguments is equisatisfiable to 'TRUE'. An AND-expression with
+ one argument is equal to the argument itself. In all other cases, default boolean logic
+ applies.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitAnd(java.util.List)">visitAnd</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitOr(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitOr</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitOr&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pOperands)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitOr(java.util.List)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an OR-expression with an arbitrary number of boolean arguments.
+
+ <p>An OR-expression with zero arguments is equisatisfiable to 'TRUE'. An OR-expression with one
+ argument is equal to the argument itself. In all other cases, default boolean logic applies.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitOr(java.util.List)">visitOr</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitXor</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitXor&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand1,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;operand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a XOR-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.xor(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitEquivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitEquivalence&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand1,
+                          <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.equivalence(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitImplication</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitImplication&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand1,
+                          <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an implication.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.implication(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitIfThenElse</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitIfThenElse&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pCondition,
+                         <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pThenFormula,
+                         <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pElseFormula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an if-then-else expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"><code>BooleanFormulaManager.ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula, T, T)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&nbsp;visitQuantifier&#8203;(<a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+                         <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;quantifiedAST,
+                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVars,
+                         <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="BooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a quantifier: forall- or exists-.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="BooleanFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="DefaultBooleanFormulaVisitor.html" title="type parameter in DefaultBooleanFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>quantifier</code> - Quantifier type: FORALL- or EXISTS-</dd>
+<dd><code>quantifiedAST</code> - AST of the quantified node. Provided because it is difficult to re-create
+     from the parameters.</dd>
+<dd><code>boundVars</code> - Variables bound by this quantifier.</dd>
+<dd><code>body</code> - Body of the quantified expression.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.forall(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, 
+<a href="../QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)"><code>QuantifiedFormulaManager.exists(java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html
new file mode 100644
index 0000000000..b7e97c5b68
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html
@@ -0,0 +1,479 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DefaultFormulaVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DefaultFormulaVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":6,"i3":10,"i4":10,"i5":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class DefaultFormulaVisitor" class="title">Class DefaultFormulaVisitor&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.DefaultFormulaVisitor&lt;R&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;</code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">DefaultFormulaVisitor&lt;R&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">DefaultFormulaVisitor</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                  int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitDefault(org.sosy_lab.java_smt.api.Formula)">visitDefault</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Method for default case, is called by all methods from this class if they are not overridden.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args,
+             <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</code></th>
+<td class="colLast">
+<div class="block">Visit an arbitrary, potentially uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+               <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantified node.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DefaultFormulaVisitor</h4>
+<pre>public&nbsp;DefaultFormulaVisitor()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitDefault(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitDefault</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitDefault&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block">Method for default case, is called by all methods from this class if they are not overridden.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula for the currently visited node.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An arbitrary value, will be passed through to the caller.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFreeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitFreeVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier. The variable can
+ have any sort (both boolean and non-boolean).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>name</code> - Variable name.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitBoundVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                            int&nbsp;deBruijnIdx)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a variable bound by a quantifier. The variable can have any sort (both boolean and
+ non-boolean).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>deBruijnIdx</code> - de-Bruijn index of the bound variable, which can be used to find the
+     matching quantifier.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitConstant&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the constant.</dd>
+<dd><code>value</code> - The value of the constant. It is either of type <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Boolean</code></a>, of a subtype of
+     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Number</code></a> (mostly a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigInteger</code></a>, a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigDecimal</code></a>, or a <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink"><code>Rational</code></a>),
+     or <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>String</code></a>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An arbitrary return value that is passed to the caller.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFunction</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitFunction&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args,
+                       <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit an arbitrary, potentially uninterpreted function. The function can have any sort.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Input function.</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dd><code>functionDeclaration</code> - Function declaration. Can be given to <a href="../FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration&lt;T&gt;, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;)</code></a> to construct a new instance of the same function with
+     different arguments.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&nbsp;visitQuantifier&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                         <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+                         <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a quantified node.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="DefaultFormulaVisitor.html" title="type parameter in DefaultFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Quantifier formula.</dd>
+<dd><code>q</code> - Quantifier type: either <code>FORALL</code> or <code>EXISTS</code>.</dd>
+<dd><code>boundVariables</code> - Variables bound by the quantifier. <b>NOTE:</b> not all solvers hold
+     metadata about bound variables. In case this is not available, this method will be called
+     with an empty list, yet <code>#mkQuantifier</code> will work fine with an empty list as well.</dd>
+<dd><code>body</code> - Body of the quantifier.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html
new file mode 100644
index 0000000000..e9bbd2b029
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html
@@ -0,0 +1,335 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ExpectedFormulaVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ExpectedFormulaVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class ExpectedFormulaVisitor" class="title">Class ExpectedFormulaVisitor&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">org.sosy_lab.java_smt.api.visitors.DefaultFormulaVisitor</a>&lt;R&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.ExpectedFormulaVisitor&lt;R&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;</code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">ExpectedFormulaVisitor&lt;R&gt;</span>
+extends <a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a>&lt;R&gt;</pre>
+<div class="block">Like <a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>DefaultFormulaVisitor</code></a>, but throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>UnsupportedOperationException</code></a> on
+ unexpected formula types.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">ExpectedFormulaVisitor</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected <a href="ExpectedFormulaVisitor.html" title="type parameter in ExpectedFormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitDefault(org.sosy_lab.java_smt.api.Formula)">visitDefault</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Method for default case, is called by all methods from this class if they are not overridden.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.visitors.DefaultFormulaVisitor">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.visitors.<a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></h3>
+<code><a href="DefaultFormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a>, <a href="DefaultFormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a>, <a href="DefaultFormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a>, <a href="DefaultFormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a>, <a href="DefaultFormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ExpectedFormulaVisitor</h4>
+<pre>public&nbsp;ExpectedFormulaVisitor()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitDefault(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitDefault</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="ExpectedFormulaVisitor.html" title="type parameter in ExpectedFormulaVisitor">R</a>&nbsp;visitDefault&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="DefaultFormulaVisitor.html#visitDefault(org.sosy_lab.java_smt.api.Formula)">DefaultFormulaVisitor</a></code></span></div>
+<div class="block">Method for default case, is called by all methods from this class if they are not overridden.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="DefaultFormulaVisitor.html#visitDefault(org.sosy_lab.java_smt.api.Formula)">visitDefault</a></code>&nbsp;in class&nbsp;<code><a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a>&lt;<a href="ExpectedFormulaVisitor.html" title="type parameter in ExpectedFormulaVisitor">R</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula for the currently visited node.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An arbitrary value, will be passed through to the caller.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html
new file mode 100644
index 0000000000..41cdca272f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html
@@ -0,0 +1,462 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaTransformationVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaTransformationVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class FormulaTransformationVisitor" class="title">Class FormulaTransformationVisitor</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">FormulaTransformationVisitor</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</pre>
+<div class="block">Abstract class for formula transformation.</div>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)"><code>FormulaManager.transformRecursively(T, org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)</code></a></dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">FormulaTransformationVisitor</a></span>&#8203;(<a href="../FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;fmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                  int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;newArgs,
+             <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</code></th>
+<td class="colLast">
+<div class="block">Visit an arbitrary, potentially uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+               <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transformedBody)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantified node.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>FormulaTransformationVisitor</h4>
+<pre>protected&nbsp;FormulaTransformationVisitor&#8203;(<a href="../FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;fmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFreeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;visitFreeVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier. The variable can
+ have any sort (both boolean and non-boolean).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>name</code> - Variable name.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;visitBoundVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                                  int&nbsp;deBruijnIdx)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a variable bound by a quantifier. The variable can have any sort (both boolean and
+ non-boolean).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>deBruijnIdx</code> - de-Bruijn index of the bound variable, which can be used to find the
+     matching quantifier.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;visitConstant&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the constant.</dd>
+<dd><code>value</code> - The value of the constant. It is either of type <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Boolean</code></a>, of a subtype of
+     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Number</code></a> (mostly a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigInteger</code></a>, a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigDecimal</code></a>, or a <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink"><code>Rational</code></a>),
+     or <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>String</code></a>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An arbitrary return value that is passed to the caller.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFunction</h4>
+<pre class="methodSignature">public&nbsp;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;visitFunction&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;newArgs,
+                             <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit an arbitrary, potentially uninterpreted function. The function can have any sort.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Input function.</dd>
+<dd><code>newArgs</code> - New arguments <b>after</b> the transformation</dd>
+<dd><code>functionDeclaration</code> - Function declaration</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Transformed function.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitQuantifier&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                      <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+                                      <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transformedBody)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="FormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">FormulaVisitor</a></code></span></div>
+<div class="block">Visit a quantified node.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="FormulaVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Quantifier formula.</dd>
+<dd><code>quantifier</code> - Quantifier type: either <code>FORALL</code> or <code>EXISTS</code>.</dd>
+<dd><code>boundVariables</code> - Variables bound by the quantifier. <b>NOTE:</b> not all solvers hold
+     metadata about bound variables. In case this is not available, this method will be called
+     with an empty list, yet <code>#mkQuantifier</code> will work fine with an empty list as well.</dd>
+<dd><code>transformedBody</code> - Quantifier body <b>already transformed</b> by the visitor.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Transformed AST</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html b/api/org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html
new file mode 100644
index 0000000000..c81ea5f03d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html
@@ -0,0 +1,385 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Interface FormulaVisitor" class="title">Interface FormulaVisitor&lt;R&gt;</h2>
+</div>
+<div class="contentContainer">
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>R</code> - Desired return type.</dd>
+</dl>
+<dl>
+<dt>All Known Implementing Classes:</dt>
+<dd><code><a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a></code>, <code><a href="ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a></code>, <code><a href="FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></code></dd>
+</dl>
+<hr>
+<pre>public interface <span class="typeNameLabel">FormulaVisitor&lt;R&gt;</span></pre>
+<div class="block">Visitor iterating through entire formula. Use <a href="../FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visit(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;R&gt;)</code></a> for visiting formulas.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">visitBoundVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                  int&nbsp;deBruijnIdx)</code></th>
+<td class="colLast">
+<div class="block">Visit a variable bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">visitConstant</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">visitFreeVariable</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitFunction</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args,
+             <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</code></th>
+<td class="colLast">
+<div class="block">Visit an arbitrary, potentially uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></span>&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+               <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+               <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</code></th>
+<td class="colLast">
+<div class="block">Visit a quantified node.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitFreeVariable(org.sosy_lab.java_smt.api.Formula,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFreeVariable</h4>
+<pre class="methodSignature"><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&nbsp;visitFreeVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Visit a free variable (such as "x", "y" or "z"), not bound by a quantifier. The variable can
+ have any sort (both boolean and non-boolean).</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>name</code> - Variable name.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitBoundVariable(org.sosy_lab.java_smt.api.Formula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitBoundVariable</h4>
+<pre class="methodSignature"><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&nbsp;visitBoundVariable&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                     int&nbsp;deBruijnIdx)</pre>
+<div class="block">Visit a variable bound by a quantifier. The variable can have any sort (both boolean and
+ non-boolean).</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the variable.</dd>
+<dd><code>deBruijnIdx</code> - de-Bruijn index of the bound variable, which can be used to find the
+     matching quantifier.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitConstant(org.sosy_lab.java_smt.api.Formula,java.lang.Object)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitConstant</h4>
+<pre class="methodSignature"><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&nbsp;visitConstant&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;value)</pre>
+<div class="block">Visit a constant, such as "true"/"false", a numeric constant like "1" or "1.0", a String
+ constant like 2hello world" or enumeration constant like "Blue".</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula representing the constant.</dd>
+<dd><code>value</code> - The value of the constant. It is either of type <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Boolean</code></a>, of a subtype of
+     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Number.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>Number</code></a> (mostly a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigInteger</code></a>, a <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink"><code>BigDecimal</code></a>, or a <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink"><code>Rational</code></a>),
+     or <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>String</code></a>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An arbitrary return value that is passed to the caller.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitFunction(org.sosy_lab.java_smt.api.Formula,java.util.List,org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitFunction</h4>
+<pre class="methodSignature"><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&nbsp;visitFunction&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args,
+                <a href="../FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;functionDeclaration)</pre>
+<div class="block">Visit an arbitrary, potentially uninterpreted function. The function can have any sort.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Input function.</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dd><code>functionDeclaration</code> - Function declaration. Can be given to <a href="../FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration&lt;T&gt;, java.util.List&lt;? extends org.sosy_lab.java_smt.api.Formula&gt;)</code></a> to construct a new instance of the same function with
+     different arguments.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitQuantifier(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitQuantifier</h4>
+<pre class="methodSignature"><a href="FormulaVisitor.html" title="type parameter in FormulaVisitor">R</a>&nbsp;visitQuantifier&#8203;(<a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                  <a href="../QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;quantifier,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;boundVariables,
+                  <a href="../BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;body)</pre>
+<div class="block">Visit a quantified node.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Quantifier formula.</dd>
+<dd><code>quantifier</code> - Quantifier type: either <code>FORALL</code> or <code>EXISTS</code>.</dd>
+<dd><code>boundVariables</code> - Variables bound by the quantifier. <b>NOTE:</b> not all solvers hold
+     metadata about bound variables. In case this is not available, this method will be called
+     with an empty list, yet <code>#mkQuantifier</code> will work fine with an empty list as well.</dd>
+<dd><code>body</code> - Body of the quantifier.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html b/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html
new file mode 100644
index 0000000000..7a736b9322
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html
@@ -0,0 +1,407 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>TraversalProcess.TraversalType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="TraversalProcess.TraversalType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Enum TraversalProcess.TraversalType" class="title">Enum TraversalProcess.TraversalType</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.TraversalProcess.TraversalType</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">TraversalProcess.TraversalType</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#ABORT_TYPE">ABORT_TYPE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CONTINUE_TYPE">CONTINUE_TYPE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#CUSTOM_TYPE">CUSTOM_TYPE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SKIP_TYPE">SKIP_TYPE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="CONTINUE_TYPE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>CONTINUE_TYPE</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a> CONTINUE_TYPE</pre>
+</li>
+</ul>
+<a id="SKIP_TYPE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SKIP_TYPE</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a> SKIP_TYPE</pre>
+</li>
+</ul>
+<a id="ABORT_TYPE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ABORT_TYPE</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a> ABORT_TYPE</pre>
+</li>
+</ul>
+<a id="CUSTOM_TYPE">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>CUSTOM_TYPE</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a> CUSTOM_TYPE</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (TraversalProcess.TraversalType c : TraversalProcess.TraversalType.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.html b/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.html
new file mode 100644
index 0000000000..fdba063e16
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/TraversalProcess.html
@@ -0,0 +1,421 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>TraversalProcess (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="TraversalProcess (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":9,"i2":9,"i3":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.api.visitors</a></div>
+<h2 title="Class TraversalProcess" class="title">Class TraversalProcess</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.api.visitors.TraversalProcess</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">TraversalProcess</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Return class that lets the visitor guide the recursive formula traversal process started with
+ <a href="../FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a>. or <a href="../BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)"><code>BooleanFormulaManager.visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ABORT">ABORT</a></span></code></th>
+<td class="colLast">
+<div class="block">Immediately abort traversal and return to caller.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CONTINUE">CONTINUE</a></span></code></th>
+<td class="colLast">
+<div class="block">Continue traversal and recurse into current formula subtree.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SKIP">SKIP</a></span></code></th>
+<td class="colLast">
+<div class="block">Continue traversal, but do not recurse into current formula subtree.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(org.sosy_lab.java_smt.api.Formula)">contains</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#custom(java.lang.Iterable)">custom</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;? extends <a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pToTraverse)</code></th>
+<td class="colLast">
+<div class="block">Traverse only the given children.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>static <a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#custom(org.sosy_lab.java_smt.api.Formula)">custom</a></span>&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pToTraverse)</code></th>
+<td class="colLast">
+<div class="block">Traverse only the given child.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getType()">getType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="CONTINUE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>CONTINUE</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a> CONTINUE</pre>
+<div class="block">Continue traversal and recurse into current formula subtree.</div>
+</li>
+</ul>
+<a id="SKIP">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SKIP</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a> SKIP</pre>
+<div class="block">Continue traversal, but do not recurse into current formula subtree.</div>
+</li>
+</ul>
+<a id="ABORT">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ABORT</h4>
+<pre>public static final&nbsp;<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a> ABORT</pre>
+<div class="block">Immediately abort traversal and return to caller.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="custom(java.lang.Iterable)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>custom</h4>
+<pre class="methodSignature">public static&nbsp;<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&nbsp;custom&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;? extends <a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pToTraverse)</pre>
+<div class="block">Traverse only the given children.
+
+ <p>NOTE: given formulas which are <em>not</em> children of the given node will be ignored.</div>
+</li>
+</ul>
+<a id="custom(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>custom</h4>
+<pre class="methodSignature">public static&nbsp;<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&nbsp;custom&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pToTraverse)</pre>
+<div class="block">Traverse only the given child.
+
+ <p>NOTE: any given which is <em>not</em> child of the given node will be ignored.</div>
+</li>
+</ul>
+<a id="getType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getType</h4>
+<pre class="methodSignature">public&nbsp;<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a>&nbsp;getType()</pre>
+</li>
+</ul>
+<a id="contains(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>contains</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;contains&#8203;(<a href="../Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/package-summary.html b/api/org/sosy_lab/java_smt/api/visitors/package-summary.html
new file mode 100644
index 0000000000..cdc9c1d871
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/package-summary.html
@@ -0,0 +1,241 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.api.visitors (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.api.visitors (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.api.visitors</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">The visitors of this package allow for efficient traversal, manipulation and transformation of
+ formulas.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Interface</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;</th>
+<td class="colLast">
+<div class="block">Visitor iterating through the boolean part of the formula.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;</th>
+<td class="colLast">
+<div class="block">Visitor iterating through entire formula.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></th>
+<td class="colLast">
+<div class="block">Base class for visitors for boolean formulas that recursively transform boolean formulas.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultBooleanFormulaVisitor</a>&lt;R&gt;</th>
+<td class="colLast">
+<div class="block">A formula visitor which allows for the default implementation.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">DefaultFormulaVisitor</a>&lt;R&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">ExpectedFormulaVisitor</a>&lt;R&gt;</th>
+<td class="colLast">
+<div class="block">Like <a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>DefaultFormulaVisitor</code></a>, but throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsupportedOperationException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>UnsupportedOperationException</code></a> on
+ unexpected formula types.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a></th>
+<td class="colLast">
+<div class="block">Abstract class for formula transformation.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a></th>
+<td class="colLast">
+<div class="block">Return class that lets the visitor guide the recursive formula traversal process started with
+ <a href="../FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a>.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors">TraversalProcess.TraversalType</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/api/visitors/package-tree.html b/api/org/sosy_lab/java_smt/api/visitors/package-tree.html
new file mode 100644
index 0000000000..e1241878ec
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/api/visitors/package-tree.html
@@ -0,0 +1,191 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.api.visitors Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.api.visitors Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.api.visitors</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaTransformationVisitor</span></a> (implements org.sosy_lab.java_smt.api.visitors.<a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultBooleanFormulaVisitor</span></a>&lt;R&gt; (implements org.sosy_lab.java_smt.api.visitors.<a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultFormulaVisitor</span></a>&lt;R&gt; (implements org.sosy_lab.java_smt.api.visitors.<a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">ExpectedFormulaVisitor</span></a>&lt;R&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaTransformationVisitor</span></a> (implements org.sosy_lab.java_smt.api.visitors.<a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaVisitor</span></a>&lt;R&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaVisitor</span></a>&lt;R&gt;</li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess.TraversalType</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html
new file mode 100644
index 0000000000..c54ed790cb
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html
@@ -0,0 +1,658 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractArrayFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractArrayFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":10,"i5":6,"i6":6,"i7":10,"i8":10,"i9":10,"i10":6,"i11":10,"i12":6,"i13":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractArrayFormulaManager" class="title">Class AbstractArrayFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractArrayFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractArrayFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractArrayFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TType</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TEnv</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+           <a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(TFormulaInfo,TFormulaInfo)">equivalence</a></span>&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray1,
+           <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected abstract &lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#internalMakeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">internalMakeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                 <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                 <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected abstract &lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#internalMakeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">internalMakeArray</a></span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                 <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType,
+                 <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;defaultElement)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(FTI,FTE,TE)">makeArray</a></span>&#8203;(FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType,
+         TE&nbsp;defaultElement)</code></th>
+<td class="colLast">
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(java.lang.String,FTI,FTE)">makeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType)</code></th>
+<td class="colLast">
+<div class="block">Declare a new array with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>TE</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+      TI&nbsp;pIndex)</code></th>
+<td class="colLast">
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#select(TFormulaInfo,TFormulaInfo)">select</a></span>&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray,
+      <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pIndex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+     TI&nbsp;pIndex,
+     TE&nbsp;pValue)</code></th>
+<td class="colLast">
+<div class="block">Store a value into a cell of the specified array.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#store(TFormulaInfo,TFormulaInfo,TFormulaInfo)">store</a></span>&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray,
+     <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pIndex,
+     <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pValue)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.ArrayFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></h3>
+<code><a href="../api/ArrayFormulaManager.html#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray</a>, <a href="../api/ArrayFormulaManager.html#makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)">makeArray</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractArrayFormulaManager</h4>
+<pre>protected&nbsp;AbstractArrayFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TType</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TEnv</a>,&#8203;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="select(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>select</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;TE&nbsp;select&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                               TI&nbsp;pIndex)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/ArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array from which to read</dd>
+<dd><code>pIndex</code> - The position from which to read</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the result of the "read"</dd>
+</dl>
+</li>
+</ul>
+<a id="select(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="select(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>select</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;select&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray,
+                                       <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pIndex)</pre>
+</li>
+</ul>
+<a id="store(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>store</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;store&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                                                     TI&nbsp;pIndex,
+                                                                                     TE&nbsp;pValue)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/ArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Store a value into a cell of the specified array.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array to which to write</dd>
+<dd><code>pIndex</code> - The position to which to write</dd>
+<dd><code>pValue</code> - The value that should be written</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the "write"</dd>
+</dl>
+</li>
+</ul>
+<a id="store(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="store(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>store</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;store&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray,
+                                      <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pIndex,
+                                      <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pValue)</pre>
+</li>
+</ul>
+<a id="makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeArray(java.lang.String,FTI,FTE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                                                                                             FTI&nbsp;pIndexType,
+                                                                                                                                                             FTE&nbsp;pElementType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/ArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Declare a new array with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">makeArray</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dd><code>pIndexType</code> - The type of the array index</dd>
+<dd><code>pElementType</code> - The type of the array elements</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makeArray(FTI,FTE,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(FTI&nbsp;pIndexType,
+                                                                                                                                                             FTE&nbsp;pElementType,
+                                                                                                                                                             TE&nbsp;defaultElement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/ArrayFormulaManager.html#makeArray(FTI,FTE,TE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#makeArray(FTI,FTE,TE)">makeArray</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dd><code>defaultElement</code> - The default value of all entries in the array.</dd>
+</dl>
+</li>
+</ul>
+<a id="internalMakeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>internalMakeArray</h4>
+<pre class="methodSignature">protected abstract&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;internalMakeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                                                                                                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType)</pre>
+</li>
+</ul>
+<a id="internalMakeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,java.lang.Object)">
+<!--   -->
+</a><a id="internalMakeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>internalMakeArray</h4>
+<pre class="methodSignature">protected abstract&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;internalMakeArray&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                                                                                                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType,
+                                                                                                <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;defaultElement)</pre>
+</li>
+</ul>
+<a id="getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIndexType</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;getIndexType&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getElementType</h4>
+<pre class="methodSignature">public&nbsp;&lt;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;getElementType&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+                                                                                <a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/ArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/ArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equivalence(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;equivalence&#8203;(<a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray1,
+                                            <a href="AbstractArrayFormulaManager.html" title="type parameter in AbstractArrayFormulaManager">TFormulaInfo</a>&nbsp;pArray2)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html
new file mode 100644
index 0000000000..3080cfeeb0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html
@@ -0,0 +1,1956 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractBitvectorFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractBitvectorFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":6,"i4":10,"i5":6,"i6":10,"i7":10,"i8":10,"i9":6,"i10":10,"i11":6,"i12":10,"i13":6,"i14":10,"i15":6,"i16":10,"i17":10,"i18":10,"i19":6,"i20":10,"i21":6,"i22":10,"i23":6,"i24":10,"i25":6,"i26":10,"i27":10,"i28":10,"i29":10,"i30":6,"i31":6,"i32":10,"i33":10,"i34":6,"i35":10,"i36":6,"i37":10,"i38":6,"i39":10,"i40":6,"i41":10,"i42":6,"i43":10,"i44":6,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":6,"i55":10,"i56":6,"i57":10,"i58":6,"i59":10,"i60":6,"i61":10,"i62":6,"i63":10,"i64":10,"i65":10,"i66":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractBitvectorFormulaManager" class="title">Class AbstractBitvectorFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractBitvectorFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractBitvectorFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager)">AbstractBitvectorFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator,
+                               <a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt;&nbsp;pBmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the addition of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(TFormulaInfo,TFormulaInfo)">add</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(TFormulaInfo,TFormulaInfo)">and</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+      <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pAppend)</code></th>
+<td class="colLast">
+<div class="block">Concatenate two bitvectors.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(TFormulaInfo,TFormulaInfo)">concat</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;number,
+      <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pAppend)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">All given bitvectors are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinctImpl(java.util.List)">distinctImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+      <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the division for two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(TFormulaInfo,TFormulaInfo,boolean)">divide</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+      <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+     <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(TFormulaInfo,TFormulaInfo)">equal</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+     <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+      int&nbsp;pExtensionBits,
+      boolean&nbsp;pSigned)</code></th>
+<td class="colLast">
+<div class="block">Extend a bitvector to the left (add most significant bits).</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extend(TFormulaInfo,int,boolean)">extend</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+      int&nbsp;pExtensionBits,
+      boolean&nbsp;pSigned)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+       int&nbsp;pMsb,
+       int&nbsp;pLsb)</code></th>
+<td class="colLast">
+<div class="block">Extract a range of bits from a bitvector.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extract(TFormulaInfo,int,int)">extract</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+       int&nbsp;pMsb,
+       int&nbsp;pLsb)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+               <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+               boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(TFormulaInfo,TFormulaInfo,boolean)">greaterOrEquals</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+               <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+               boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+           <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+           boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(TFormulaInfo,TFormulaInfo,boolean)">greaterThan</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+           <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+           boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+            <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+            boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(TFormulaInfo,TFormulaInfo,boolean)">lessOrEquals</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+            <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+            boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+        <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+        boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(TFormulaInfo,TFormulaInfo,boolean)">lessThan</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+        boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,long)">makeBitvector</a></span>&#8203;(int&nbsp;pLength,
+             long&nbsp;i)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,java.math.BigInteger)">makeBitvector</a></span>&#8203;(int&nbsp;pLength,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvectorImpl(int,long)">makeBitvectorImpl</a></span>&#8203;(int&nbsp;pLength,
+                 long&nbsp;pI)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvectorImpl(int,java.math.BigInteger)">makeBitvectorImpl</a></span>&#8203;(int&nbsp;pLength,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvectorImpl(int,TFormulaInfo)">makeBitvectorImpl</a></span>&#8203;(int&nbsp;length,
+                 <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(int,java.lang.String)">makeVariable</a></span>&#8203;(int&nbsp;pLength,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name and bitwidth.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="../api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(int,java.lang.String)">makeVariableImpl</a></span>&#8203;(int&nbsp;pLength,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+        <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the multiplication of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(TFormulaInfo,TFormulaInfo)">multiply</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1".</div>
+</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(TFormulaInfo)">negate</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(TFormulaInfo)">not</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+  <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(TFormulaInfo,TFormulaInfo)">or</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+  <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+         <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+         boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>BitvectorFormulaManager.divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.</div>
+</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(TFormulaInfo,TFormulaInfo,boolean)">remainder</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+         <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+         boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+          int&nbsp;pToRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+          <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i47" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(TFormulaInfo,TFormulaInfo)">rotateLeft</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+          <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToRotate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i48" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeftByConstant(TFormulaInfo,int)">rotateLeftByConstant</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                    int&nbsp;pToRotate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i49" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+           int&nbsp;pToRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i50" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+           <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i51" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(TFormulaInfo,TFormulaInfo)">rotateRight</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+           <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToRotate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i52" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRightByConstant(TFormulaInfo,int)">rotateRightByConstant</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                     int&nbsp;pToRotate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i53" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+         <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift.</div>
+</td>
+</tr>
+<tr id="i54" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftLeft(TFormulaInfo,TFormulaInfo)">shiftLeft</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+         <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToShift)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i55" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+          <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToShift,
+          boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Return a term representing the (arithmetic if signed is true) right shift of number by toShift.</div>
+</td>
+</tr>
+<tr id="i56" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftRight(TFormulaInfo,TFormulaInfo,boolean)">shiftRight</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+          <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;toShift,
+          boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i57" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+       <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i58" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#smodulo(TFormulaInfo,TFormulaInfo)">smodulo</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+       <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i59" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+        <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the subtraction of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i60" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(TFormulaInfo,TFormulaInfo)">subtract</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i61" class="rowColor">
+<td class="colFirst"><code><a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+</td>
+</tr>
+<tr id="i62" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormulaImpl(TFormulaInfo,boolean)">toIntegerFormulaImpl</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pI,
+                    boolean&nbsp;signed)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i63" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i64" class="altColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformValueToRange(int,java.math.BigInteger)">transformValueToRange</a></span>&#8203;(int&nbsp;pLength,
+                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">transform a negative value into its positive counterpart.</div>
+</td>
+</tr>
+<tr id="i65" class="rowColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i66" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(TFormulaInfo,TFormulaInfo)">xor</a></span>&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BitvectorFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></h3>
+<code><a href="../api/BitvectorFormulaManager.html#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">modulo</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractBitvectorFormulaManager</h4>
+<pre>protected&nbsp;AbstractBitvectorFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator,
+                                          <a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TType</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TEnv</a>,&#8203;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFuncDecl</a>&gt;&nbsp;pBmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                                      <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.
+
+ <p>If the numeral formula is too large for the given length, we cut off the largest bits and
+ only use the lest significant bits.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvectorImpl(int,java.lang.Object)">
+<!--   -->
+</a><a id="makeBitvectorImpl(int,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvectorImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;makeBitvectorImpl&#8203;(int&nbsp;length,
+                                                  <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                                                      boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormulaImpl(java.lang.Object,boolean)">
+<!--   -->
+</a><a id="toIntegerFormulaImpl(TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormulaImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;toIntegerFormulaImpl&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pI,
+                                                     boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;negate&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1". The given number is
+ interpreted as signed bitvector and corresponds to "2^BITSIZE - number". The result has the
+ same length as the given number.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(java.lang.Object)">
+<!--   -->
+</a><a id="negate(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;negate&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;add&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                            <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the addition of the given bitvectors. The result has the same length as the
+ given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 + number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="add(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;add&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;subtract&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                 <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the subtraction of the given bitvectors. The result has the same length as
+ the given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="subtract(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;subtract&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divide&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                               <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                               boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the division for two bitvector formulas.
+
+ <p>For signed bitvectors, the result is rounded towards zero (also called "truncated integer
+ division", similar to the division in the C99 standard), e.g., a user can assume the following
+ equations:
+
+ <ul>
+   <li>10 / 5 = 2
+   <li>10 / 3 = 3
+   <li>10 / (-3) = -3
+   <li>-10 / 5 = -2
+   <li>-10 / 3 = -3
+   <li>-10 / (-3) = 3
+ </ul>
+
+ <p>If the divisor evaluates to zero (division-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the division is defined as:
+
+ <ul>
+   <li>"-1" interpreted as bitvector (i.e., all bits set to "1"), if the dividend is
+       non-negative, and
+   <li>"1" interpreted as bitvector (i.e., all bits set to "0", except the last bit), if the
+       dividend is negative.
+ </ul>
+
+ <p>We refer to the SMTLIB standard version 2.6 for the division and remainder operators in BV
+ theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - dividend of the operation.</dd>
+<dd><code>pNumber2</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="divide(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="divide(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;divide&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                       <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                       boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;remainder&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                  <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                                  boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>BitvectorFormulaManager.divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.
+
+ <p>For unsigned bitvectors, this returns the remainder of unsigned bitvector division.
+
+ <p>For signed bitvectors, the sign of the result follows the sign of the dividend, i.e. the
+ quotient of the division is rounded in such a way that the sign of the result of the remainder
+ operation follows the sign of the dividend, e.g., a user can assume the following equations,
+ with bitvectors interpreted as signed decimal numbers and % representing signed remainder
+ (similar to the C programming language), to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == 1
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == -1
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - dividend of the operation. The sign bit is carried over from this bitvector for
+     signed operations.</dd>
+<dd><code>pNumber2</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="remainder(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="remainder(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;remainder&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                          <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                          boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>smodulo</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;smodulo&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.
+
+ <p>The sign of the result follows the sign of the divisor, i.e. the quotient calculated in the
+ modulo operation is rounded in such a way that the result of the smodulo operation follows the
+ sign of the divisor, e.g., a user can assume the following equations, with bitvectors
+ interpreted as signed decimal numbers and % representing signed modulo, to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == -2
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == 2
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.
+
+ <p>For unsigned modulo, we refer to the unsigned remainder method.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - dividend of the operation.</dd>
+<dd><code>pNumber2</code> - divisor of the operation.</dd>
+</dl>
+</li>
+</ul>
+<a id="smodulo(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="smodulo(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>smodulo</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;smodulo&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                        <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;multiply&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                 <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the multiplication of the given bitvectors. The result has the same length
+ as the given parameters. There can be an overflow, i.e., as one would expect from bitvector
+ logic. There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="multiply(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;multiply&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                            <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 == number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equal(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;equal&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                      <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                  <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                                  boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="greaterThan(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;greaterThan&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                            <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                            boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                      <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                                      boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="greaterOrEquals(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;greaterOrEquals&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                                <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                                boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                               <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                               boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="lessThan(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;lessThan&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                         boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber1,
+                                   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber2,
+                                   boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber1</code> - a Formula</dd>
+<dd><code>pNumber2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="lessOrEquals(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;lessOrEquals&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                             <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                             boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;not&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits</code> - Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>~bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="not(java.lang.Object)">
+<!--   -->
+</a><a id="not(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;not&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;and&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+                            <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="and(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;and&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;or&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+                           <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="or(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;or&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                   <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;xor&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits1,
+                            <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 ^ bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="xor(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="xor(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;xor&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="makeBitvector(int,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;pLength,
+                                      long&nbsp;i)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,long)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,long)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvectorImpl(int,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvectorImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;makeBitvectorImpl&#8203;(int&nbsp;pLength,
+                                         long&nbsp;pI)</pre>
+</li>
+</ul>
+<a id="makeBitvector(int,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;pLength,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvectorImpl(int,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvectorImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;makeBitvectorImpl&#8203;(int&nbsp;pLength,
+                                                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</pre>
+</li>
+</ul>
+<a id="transformValueToRange(int,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformValueToRange</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;transformValueToRange&#8203;(int&nbsp;pLength,
+                                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</pre>
+<div class="block">transform a negative value into its positive counterpart.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if the value is out of range for the given size.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(<a href="../api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)"><code>BitvectorFormulaManager.makeVariable(int, String)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(int,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(int&nbsp;pLength,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name and bitwidth.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(int,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(int&nbsp;pLength,
+                                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+</li>
+</ul>
+<a id="shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftRight&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToShift,
+                                   boolean&nbsp;signed)</pre>
+<div class="block">Return a term representing the (arithmetic if signed is true) right shift of number by toShift.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="shiftRight(java.lang.Object,java.lang.Object,boolean)">
+<!--   -->
+</a><a id="shiftRight(TFormulaInfo,TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftRight</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;shiftRight&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                           <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;toShift,
+                                           boolean&nbsp;signed)</pre>
+</li>
+</ul>
+<a id="shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftLeft&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                  <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift. The result has the same length as the given number. On the right side, we fill up
+ the least significant bits with zeroes. For "toShift &gt;= bitsize", we return a bitvector with
+ value zero.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="shiftLeft(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="shiftLeft(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftLeft</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;shiftLeft&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                          <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToShift)</pre>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                   int&nbsp;pToRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>pToRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateLeftByConstant(java.lang.Object,int)">
+<!--   -->
+</a><a id="rotateLeftByConstant(TFormulaInfo,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeftByConstant</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;rotateLeftByConstant&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                            int&nbsp;pToRotate)</pre>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                   <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>pToRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateLeft(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="rotateLeft(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;rotateLeft&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                  <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToRotate)</pre>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                    int&nbsp;pToRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>pToRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRightByConstant(java.lang.Object,int)">
+<!--   -->
+</a><a id="rotateRightByConstant(TFormulaInfo,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRightByConstant</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;rotateRightByConstant&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                             int&nbsp;pToRotate)</pre>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                    <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pToRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>pToRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRight(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="rotateRight(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;rotateRight&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                   <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pToRotate)</pre>
+</li>
+</ul>
+<a id="concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;concat&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                     <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pAppend)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Concatenate two bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="concat(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="concat(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;concat&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;number,
+                                       <a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pAppend)</pre>
+</li>
+</ul>
+<a id="extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extract</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extract&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                      int&nbsp;pMsb,
+                                      int&nbsp;pLsb)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Extract a range of bits from a bitvector. We require <code>0 &lt;= lsb &lt;= msb &lt; bitsize</code>.
+
+ <p>If msb equals lsb, then a single bit will be returned, i.e., the bit from the given
+ position. If lsb equals 0 and msb equals bitsize-1, then the complete bitvector will be
+ returned.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber</code> - from where the bits are extracted.</dd>
+<dd><code>pMsb</code> - Upper index for the most significant bit. Must be in interval from lsb to bitsize-1.</dd>
+<dd><code>pLsb</code> - Lower index for the least significant bit. Must be in interval from 0 to msb.</dd>
+</dl>
+</li>
+</ul>
+<a id="extract(java.lang.Object,int,int)">
+<!--   -->
+</a><a id="extract(TFormulaInfo,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extract</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;extract&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                        int&nbsp;pMsb,
+                                        int&nbsp;pLsb)</pre>
+</li>
+</ul>
+<a id="extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extend</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extend&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                     int&nbsp;pExtensionBits,
+                                     boolean&nbsp;pSigned)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Extend a bitvector to the left (add most significant bits). If signed is set and the given
+ number is negative, then the bit "1" will be added several times, else "0".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber</code> - The bitvector to extend.</dd>
+<dd><code>pExtensionBits</code> - How many bits to add.</dd>
+<dd><code>pSigned</code> - Whether the extension should depend on the sign bit.</dd>
+</dl>
+</li>
+</ul>
+<a id="extend(java.lang.Object,int,boolean)">
+<!--   -->
+</a><a id="extend(TFormulaInfo,int,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extend</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;extend&#8203;(<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                       int&nbsp;pExtensionBits,
+                                       boolean&nbsp;pSigned)</pre>
+</li>
+</ul>
+<a id="getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getLength</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getLength&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BitvectorFormulaManager.html#distinct(java.util.List)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">All given bitvectors are pairwise unequal.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BitvectorFormulaManager.html#distinct(java.util.List)">distinct</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="distinctImpl(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinctImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&nbsp;distinctImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractBitvectorFormulaManager.html" title="type parameter in AbstractBitvectorFormulaManager">TFormulaInfo</a>&gt;&nbsp;pBits)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html
new file mode 100644
index 0000000000..1ea5dad9de
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html
@@ -0,0 +1,1198 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractBooleanFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractBooleanFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":6,"i4":10,"i5":10,"i6":6,"i7":10,"i8":10,"i9":6,"i10":10,"i11":10,"i12":10,"i13":6,"i14":10,"i15":6,"i16":6,"i17":10,"i18":10,"i19":10,"i20":6,"i21":10,"i22":6,"i23":10,"i24":10,"i25":10,"i26":6,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractBooleanFormulaManager" class="title">Class AbstractBooleanFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractBooleanFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractBooleanFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TType</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TEnv</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(java.util.Collection)">and</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;pBits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+   <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(TFormulaInfo,TFormulaInfo)">and</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#andImpl(java.util.Collection)">andImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&gt;&nbsp;pParams)</code></th>
+<td class="colLast">
+<div class="block">Create an n-ary conjunction.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+           <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(TFormulaInfo,TFormulaInfo)">equivalence</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits1,
+           <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits,
+          T&nbsp;f1,
+          T&nbsp;f2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing "IF cond THEN f1 ELSE f2".</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ifThenElse(TFormulaInfo,TFormulaInfo,TFormulaInfo)">ifThenElse</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;cond,
+          <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;f1,
+          <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+           <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#implication(TFormulaInfo,TFormulaInfo)">implication</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits1,
+           <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "FALSE".</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected abstract boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFalse(TFormulaInfo)">isFalse</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "TRUE".</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected abstract boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTrue(TFormulaInfo)">isTrue</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBooleanImpl(boolean)">makeBooleanImpl</a></span>&#8203;(boolean&nbsp;value)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeFalse()">makeFalse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeTrue()">makeTrue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(java.lang.String)">makeVariableImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BooleanFormula)">not</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing a negation of the argument.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(TFormulaInfo)">not</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(java.util.Collection)">or</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;pBits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+  <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(TFormulaInfo,TFormulaInfo)">or</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+  <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#orImpl(java.util.Collection)">orImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&gt;&nbsp;pParams)</code></th>
+<td class="colLast">
+<div class="block">Create an n-ary disjunction.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunction()">toConjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunction()">toDisjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                    <a href="../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+     <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with the given visitor.</div>
+</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF,
+                <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+   <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(TFormulaInfo,TFormulaInfo)">xor</a></span>&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BooleanFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></h3>
+<code><a href="../api/BooleanFormulaManager.html#makeBoolean(boolean)">makeBoolean</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractBooleanFormulaManager</h4>
+<pre>protected&nbsp;AbstractBooleanFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TType</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TEnv</a>,&#8203;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#makeVariable(java.lang.String)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+</li>
+</ul>
+<a id="makeTrue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeTrue</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeTrue()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#makeTrue()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#makeTrue()">makeTrue</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeFalse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeFalse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeFalse()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#makeFalse()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#makeFalse()">makeFalse</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBooleanImpl(boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBooleanImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;makeBooleanImpl&#8203;(boolean&nbsp;value)</pre>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;not&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing a negation of the argument.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">not</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>!bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="not(java.lang.Object)">
+<!--   -->
+</a><a id="not(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;not&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+                          <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="and(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;and&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="and(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pBits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#and(java.util.Collection)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;pBits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="andImpl(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>andImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;andImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&gt;&nbsp;pParams)</pre>
+<div class="block">Create an n-ary conjunction. The default implementation delegates to <a href="#and(TFormulaInfo,TFormulaInfo)"><code>and(Object,
+ Object)</code></a> and assumes that all simplifications are done by that method. This method can be
+ overridden, in which case it should filter out irrelevant operands.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pParams</code> - A collection of at least 3 operands.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A term that is equivalent to a conjunction of pParams.</dd>
+</dl>
+</li>
+</ul>
+<a id="toConjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunction</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunction()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#toConjunction()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#toConjunction()">toConjunction</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+                         <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;pBits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="or(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="or(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;or&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                   <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;xor&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+                          <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pBits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#or(java.util.Collection)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="orImpl(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>orImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;orImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&gt;&nbsp;pParams)</pre>
+<div class="block">Create an n-ary disjunction. The default implementation delegates to <a href="#or(TFormulaInfo,TFormulaInfo)"><code>or(Object,
+ Object)</code></a> and assumes that all simplifications are done by that method. This method can be
+ overridden, in which case it should filter out irrelevant operands.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pParams</code> - A collection of at least 3 operands.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A term that is equivalent to a disjunction of pParams.</dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toDisjunction</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunction()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#toDisjunction()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#toDisjunction()">toDisjunction</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="xor(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="xor(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;xor&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+                                        <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</pre>
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits1</code> - a Formula</dd>
+<dd><code>pBits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>f1 &lt;-&gt; f2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equivalence(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;equivalence&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits1,
+                                            <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits2)</pre>
+</li>
+</ul>
+<a id="implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>implication</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;implication&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits1,
+                                        <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>formula1 =&gt; formula2</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="implication(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="implication(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>implication</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;implication&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits1,
+                                   <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits2)</pre>
+</li>
+</ul>
+<a id="isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isTrue</h4>
+<pre class="methodSignature">public final&nbsp;boolean&nbsp;isTrue&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Check, if the formula is the formula "TRUE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==1" are recognized and rewritten as
+ "TRUE", and thus such formulas might also be matched.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isTrue(java.lang.Object)">
+<!--   -->
+</a><a id="isTrue(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isTrue</h4>
+<pre class="methodSignature">protected abstract&nbsp;boolean&nbsp;isTrue&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits)</pre>
+</li>
+</ul>
+<a id="isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFalse</h4>
+<pre class="methodSignature">public final&nbsp;boolean&nbsp;isFalse&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Check, if the formula is the formula "FALSE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==2" are recognized and rewritten as
+ "FALSE", and thus such formulas might also be matched.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isFalse(java.lang.Object)">
+<!--   -->
+</a><a id="isFalse(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFalse</h4>
+<pre class="methodSignature">protected abstract&nbsp;boolean&nbsp;isFalse&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;bits)</pre>
+</li>
+</ul>
+<a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ifThenElse</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;ifThenElse&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBits,
+                                              T&nbsp;f1,
+                                              T&nbsp;f2)</pre>
+<div class="block">Creates a formula representing "IF cond THEN f1 ELSE f2".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pBits</code> - a Formula</dd>
+<dd><code>f1</code> - a Formula</dd>
+<dd><code>f2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>(IF cond THEN f1 ELSE f2)</dd>
+</dl>
+</li>
+</ul>
+<a id="ifThenElse(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="ifThenElse(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ifThenElse</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;ifThenElse&#8203;(<a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;cond,
+                                           <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;f1,
+                                           <a href="AbstractBooleanFormulaManager.html" title="type parameter in AbstractBooleanFormulaManager">TFormulaInfo</a>&nbsp;f2)</pre>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+                   <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula with the given visitor.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF,
+                             <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transformRecursively&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                           <a href="../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>. The arguments each
+ visitor method receives are <b>already</b> transformed.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunctionArgs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunctionArgs&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                             boolean&nbsp;flatten)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A /\ B /\ C</code>: <code>A, B, C</code>
+   <li>For "true": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toDisjunctionArgs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunctionArgs&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                             boolean&nbsp;flatten)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A \/ B \/ C</code>: <code>A, B, C</code>
+   <li>For "false": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html
new file mode 100644
index 0000000000..06a2368e45
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html
@@ -0,0 +1,330 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractEnumerationFormulaManager.EnumType (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractEnumerationFormulaManager.EnumType (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractEnumerationFormulaManager.EnumType" class="title">Class AbstractEnumerationFormulaManager.EnumType</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager.EnumType</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a>&lt;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TEnv</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFuncDecl</a>&gt;</dd>
+</dl>
+<hr>
+<pre>protected class <span class="typeNameLabel">AbstractEnumerationFormulaManager.EnumType</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">The class 'EnumType' is just a plain internal value-holding class.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType,TType,com.google.common.collect.ImmutableMap)">EnumType</a></span>&#8203;(<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pEnumerationFormulaType,
+        <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>&nbsp;pNativeType,
+        <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&gt;&nbsp;pConstants)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnumerationFormulaType()">getEnumerationFormulaType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hasConstants(java.lang.String)">hasConstants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType,java.lang.Object,com.google.common.collect.ImmutableMap)">
+<!--   -->
+</a><a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType,TType,com.google.common.collect.ImmutableMap)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>EnumType</h4>
+<pre>public&nbsp;EnumType&#8203;(<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pEnumerationFormulaType,
+                <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>&nbsp;pNativeType,
+                <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&gt;&nbsp;pConstants)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getEnumerationFormulaType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnumerationFormulaType</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;getEnumerationFormulaType()</pre>
+</li>
+</ul>
+<a id="hasConstants(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>hasConstants</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;hasConstants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html
new file mode 100644
index 0000000000..1c68cbf778
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html
@@ -0,0 +1,603 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractEnumerationFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractEnumerationFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":6,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractEnumerationFormulaManager" class="title">Class AbstractEnumerationFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractEnumerationFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a></span></code></th>
+<td class="colLast">
+<div class="block">The class 'EnumType' is just a plain internal value-holding class.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#enumerations">enumerations</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractEnumerationFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TEnv</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElementNames)</code></th>
+<td class="colLast">
+<div class="block">Declare an enumeration.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration0(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">declareEnumeration0</a></span>&#8203;(<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumerationImpl(java.lang.String,java.util.Set)">declareEnumerationImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElementNames)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></span>&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pF1,
+           <a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pF2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalenceImpl(TFormulaInfo,TFormulaInfo)">equivalenceImpl</a></span>&#8203;(<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;pF1,
+               <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;pF2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+            <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstantImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstantImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariableImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.EnumerationFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></h3>
+<code><a href="../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="enumerations">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>enumerations</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a>&gt; enumerations</pre>
+</li>
+</ul>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractEnumerationFormulaManager</h4>
+<pre>protected&nbsp;AbstractEnumerationFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TType</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TEnv</a>,&#8203;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareEnumeration(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElementNames)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Declare an enumeration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></code>&nbsp;in interface&nbsp;<code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pName</code> - the unique name to identify the new enumeration type.</dd>
+<dd><code>pElementNames</code> - names for all individual elements of this enumeration type.</dd>
+</dl>
+</li>
+</ul>
+<a id="declareEnumerationImpl(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumerationImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumerationImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;pElementNames)</pre>
+</li>
+</ul>
+<a id="declareEnumeration0(org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration0</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager.EnumType</a>&nbsp;declareEnumeration0&#8203;(<a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeConstant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                       <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a constant of given enumeration type with exactly the given name. This constant
+ (symbol) needs to be an element from the given enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></code>&nbsp;in interface&nbsp;<code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeConstantImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstantImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;makeConstantImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                        <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                       <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                        <a href="../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pF1,
+                                  <a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pF2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalenceImpl(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equivalenceImpl(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalenceImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;equivalenceImpl&#8203;(<a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;pF1,
+                                                <a href="AbstractEnumerationFormulaManager.html" title="type parameter in AbstractEnumerationFormulaManager">TFormulaInfo</a>&nbsp;pF2)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html
new file mode 100644
index 0000000000..599778588d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html
@@ -0,0 +1,664 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractEvaluator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractEvaluator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":6,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractEvaluator" class="title">Class AbstractEvaluator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractEvaluator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractEvaluator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>,&#8203;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#creator">creator</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractEvaluator</a></span>&#8203;(<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;?&gt;&nbsp;pProver,
+                 <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>,&#8203;?&gt;&nbsp;creator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Free resources associated with this evaluator (existing <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances stay valid,
+ but <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eval(T)">eval</a></span>&#8203;(T&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected abstract @Nullable <a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evalImpl(TFormulaInfo)">evalImpl</a></span>&#8203;(<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Simplify the given formula and replace all symbols with their model values.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for boolean formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></span>&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for enumeration formulas.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for floating-point formulas.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></span>&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for integer formulas.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></span>&#8203;(<a href="../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for rational formulas.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for string formulas.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected @Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluateImpl(TFormulaInfo)">evaluateImpl</a></span>&#8203;(<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Simplify the given formula and replace all symbols with their model values.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isClosed()">isClosed</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="creator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>creator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>,&#8203;?&gt; creator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractEvaluator</h4>
+<pre>protected&nbsp;AbstractEvaluator&#8203;(<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;?&gt;&nbsp;pProver,
+                            <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TType</a>,&#8203;<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TEnv</a>,&#8203;?&gt;&nbsp;creator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="eval(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="eval(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eval</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;@Nullable T&nbsp;eval&#8203;(T&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#eval(T)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.
+
+ <p>If a value is not relevant to the satisfiability result, the solver can choose either to
+ insert an arbitrary value (e.g., the value <code>0</code> for the matching type) or just return
+ <code>null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression. The solver
+ will replace all symbols from the formula with their model values and then simplify the formula
+ into a simple formula, e.g., consisting only of a numeral expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#eval(T)">eval</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Input formula to be evaluated.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>evaluation of the given formula or <code>null</code> if the solver does not provide a
+     better evaluation.</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for integer formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;evaluate&#8203;(<a href="../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for rational formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&nbsp;evaluate&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for boolean formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for string formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for enumeration formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;evaluate&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for floating-point formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for bitvector formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;evaluate&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model.
+
+ <p>If a value is not relevant to the satisfiability result, the model can choose either an
+ arbitrary value (e.g., the value <code>0</code> for the matching type) or just return <code>
+ null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Either of: - Number (Rational/Double/BigInteger/Long/Integer) - Boolean</dd>
+</dl>
+</li>
+</ul>
+<a id="evalImpl(java.lang.Object)">
+<!--   -->
+</a><a id="evalImpl(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evalImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;@Nullable <a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>&nbsp;evalImpl&#8203;(<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>&nbsp;formula)</pre>
+<div class="block">Simplify the given formula and replace all symbols with their model values. If a symbol is not
+ set in the model and evaluation aborts, return <code>null</code>.</div>
+</li>
+</ul>
+<a id="evaluateImpl(java.lang.Object)">
+<!--   -->
+</a><a id="evaluateImpl(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluateImpl</h4>
+<pre class="methodSignature">protected final&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;evaluateImpl&#8203;(<a href="AbstractEvaluator.html" title="type parameter in AbstractEvaluator">TFormulaInfo</a>&nbsp;f)</pre>
+<div class="block">Simplify the given formula and replace all symbols with their model values. If a symbol is not
+ set in the model and evaluation aborts, return <code>null</code>. Afterwards convert the
+ formula into a Java object as far as possible, i.e., try to match a primitive or simple type.</div>
+</li>
+</ul>
+<a id="isClosed()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isClosed</h4>
+<pre class="methodSignature">protected&nbsp;boolean&nbsp;isClosed()</pre>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#close()">Evaluator</a></code></span></div>
+<div class="block">Free resources associated with this evaluator (existing <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances stay valid,
+ but <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc. must not be called again).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html
new file mode 100644
index 0000000000..56757e70a6
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html
@@ -0,0 +1,2204 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractFloatingPointFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractFloatingPointFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":6,"i5":10,"i6":6,"i7":10,"i8":10,"i9":6,"i10":10,"i11":10,"i12":6,"i13":10,"i14":10,"i15":6,"i16":10,"i17":6,"i18":10,"i19":6,"i20":9,"i21":6,"i22":10,"i23":6,"i24":10,"i25":6,"i26":10,"i27":6,"i28":10,"i29":6,"i30":10,"i31":6,"i32":10,"i33":6,"i34":9,"i35":10,"i36":6,"i37":10,"i38":6,"i39":10,"i40":6,"i41":10,"i42":6,"i43":10,"i44":6,"i45":10,"i46":6,"i47":10,"i48":6,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":6,"i59":6,"i60":10,"i61":10,"i62":6,"i63":10,"i64":6,"i65":10,"i66":6,"i67":10,"i68":6,"i69":10,"i70":6,"i71":10,"i72":10,"i73":6,"i74":10,"i75":6,"i76":10,"i77":6,"i78":10,"i79":6,"i80":10,"i81":10,"i82":6,"i83":10,"i84":10,"i85":6,"i86":10,"i87":6,"i88":10,"i89":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractFloatingPointFormulaManager" class="title">Class AbstractFloatingPointFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractFloatingPointFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractFloatingPointFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></pre>
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormulaManager</code></a>. It handles all the unwrapping and
+ wrapping from and to the <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances, such that the concrete class needs to handle
+ only its own internal types.
+
+ <p>For <a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"><code>multiply(FloatingPointFormula, FloatingPointFormula)</code></a>, and <a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"><code>divide(FloatingPointFormula, FloatingPointFormula)</code></a> this class even offers an implementation
+ based on UFs. Sub-classes are supposed to override them if they can implement these operations
+ more precisely (for example multiplication with constants should be supported by all solvers and
+ implemented by all sub-classes).</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractFloatingPointFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TType</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TEnv</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#abs(TFormulaInfo)">abs</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+   <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(TFormulaInfo,TFormulaInfo,TFormulaInfo)">add</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+   <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+          <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for assigning one floating-point term to another.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assignment(TFormulaInfo,TFormulaInfo)">assignment</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+          <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pNumber,
+        boolean&nbsp;pSigned,
+        <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;number,
+        boolean&nbsp;signed,
+        <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+        <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFromImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">castFromImpl</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+            boolean&nbsp;pSigned,
+            <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType,
+            <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber,
+      boolean&nbsp;pSigned,
+      <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pTargetType)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+      boolean&nbsp;pSigned,
+      <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+      <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castToImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">castToImpl</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+          boolean&nbsp;pSigned,
+          <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;pTargetType,
+          <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+      <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+      <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+      <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(TFormulaInfo,TFormulaInfo,TFormulaInfo)">divide</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+      <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+      <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                    <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN).</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equalWithFPSemantics(TFormulaInfo,TFormulaInfo)">equalWithFPSemantics</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                 <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fromIeeeBitvectorImpl(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvectorImpl</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                     <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBvRepresentation(java.math.BigInteger,int)">getBvRepresentation</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;integer,
+                   int&nbsp;size)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getDefaultRoundingMode()">getDefaultRoundingMode</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRoundingModeImpl(org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">getRoundingModeImpl</a></span>&#8203;(<a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+               <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+               <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+           <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+           <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isInfinity(TFormulaInfo)">isInfinity</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNaN(TFormulaInfo)">isNaN</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNegative(TFormulaInfo)">isNegative</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code>protected static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNegativeZero(java.lang.Double)">isNegativeZero</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html?is-external=true" title="class or interface in java.lang" class="externalLink">Double</a>&nbsp;pN)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNormal(TFormulaInfo)">isNormal</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSubnormal(TFormulaInfo)">isSubnormal</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isZero(TFormulaInfo)">isZero</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+            <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+            <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+        <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(TFormulaInfo,TFormulaInfo)">lessThan</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMinusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinityImpl</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i47" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i48" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNaNImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaNImpl</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i49" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+</td>
+</tr>
+<tr id="i50" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i51" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+</td>
+</tr>
+<tr id="i52" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i53" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+</td>
+</tr>
+<tr id="i54" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+</td>
+</tr>
+<tr id="i55" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+          boolean&nbsp;signBit,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+</td>
+</tr>
+<tr id="i56" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+</td>
+</tr>
+<tr id="i57" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i58" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberAndRound(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberAndRound</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pN,
+                  <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType,
+                  <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i59" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl</a></span>&#8203;(double&nbsp;n,
+              <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+              <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i60" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+              <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+              <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">directly catch the most common special String constants.</div>
+</td>
+</tr>
+<tr id="i61" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+              <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+              <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i62" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+              boolean&nbsp;signBit,
+              <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i63" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i64" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePlusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinityImpl</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i65" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i66" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariableImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i67" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i68" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#max(TFormulaInfo,TFormulaInfo)">max</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i69" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i70" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min(TFormulaInfo,TFormulaInfo)">min</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i71" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+        <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i72" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i73" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(TFormulaInfo,TFormulaInfo,TFormulaInfo)">multiply</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+        <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i74" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i75" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(TFormulaInfo)">negate</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i76" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+         <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y.</div>
+</td>
+</tr>
+<tr id="i77" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(TFormulaInfo,TFormulaInfo)">remainder</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i78" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pFormula,
+     <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i79" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#round(TFormulaInfo,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFormula,
+     <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i80" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i81" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+    <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i82" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(TFormulaInfo,TFormulaInfo)">sqrt</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i83" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+        <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i84" class="altColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i85" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(TFormulaInfo,TFormulaInfo,TFormulaInfo)">subtract</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+        <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i86" class="altColor">
+<td class="colFirst"><code><a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format.</div>
+</td>
+</tr>
+<tr id="i87" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIeeeBitvectorImpl(TFormulaInfo)">toIeeeBitvectorImpl</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i88" class="altColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i89" class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#wrap(TFormulaInfo)">wrap</a></span>&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractFloatingPointFormulaManager</h4>
+<pre>protected&nbsp;AbstractFloatingPointFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TType</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TEnv</a>,&#8203;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getDefaultRoundingMode()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getDefaultRoundingMode</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;getDefaultRoundingMode()</pre>
+</li>
+</ul>
+<a id="getRoundingModeImpl(org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRoundingModeImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;getRoundingModeImpl&#8203;(<a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="wrap(java.lang.Object)">
+<!--   -->
+</a><a id="wrap(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>wrap</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;wrap&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,java.lang.Object)">
+<!--   -->
+</a><a id="makeNumberImpl(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(double&nbsp;n,
+                                               <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                               <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,java.lang.Object)">
+<!--   -->
+</a><a id="makeNumberImpl(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                      <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                      <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,java.lang.Object)">
+<!--   -->
+</a><a id="makeNumberImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                      <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                      <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block">directly catch the most common special String constants.</div>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+                                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+                                       boolean&nbsp;signBit,
+                                       <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>exponent</code> - the exponent part of the floating point number</dd>
+<dd><code>mantissa</code> - the mantissa part of the floating point number</dd>
+<dd><code>signBit</code> - the sign bit of the floating point number, e.g., true for negative numbers</dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+                                               boolean&nbsp;signBit,
+                                               <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="isNegativeZero(java.lang.Double)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNegativeZero</h4>
+<pre class="methodSignature">protected static&nbsp;boolean&nbsp;isNegativeZero&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Double.html?is-external=true" title="class or interface in java.lang" class="externalLink">Double</a>&nbsp;pN)</pre>
+</li>
+</ul>
+<a id="makeNumberAndRound(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,java.lang.Object)">
+<!--   -->
+</a><a id="makeNumberAndRound(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberAndRound</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNumberAndRound&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pN,
+                                                   <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType,
+                                                   <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                         <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                                 <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePlusInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makePlusInfinity&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makePlusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePlusInfinityImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makePlusInfinityImpl&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMinusInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeMinusInfinity&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeMinusInfinityImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMinusInfinityImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeMinusInfinityImpl&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNaN</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNaN&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNaNImpl(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNaNImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;makeNaNImpl&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pType)</pre>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber,
+                                    boolean&nbsp;pSigned,
+                                    <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pTargetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a formula of compatible type from a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber</code> - the source formula of floating-point type</dd>
+<dd><code>pSigned</code> - if a <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>pTargetType</code> - the type of the resulting formula</dd>
+</dl>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+                                    boolean&nbsp;pSigned,
+                                    <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+                                    <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a formula of compatible type from a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - the source formula of floating-point type</dd>
+<dd><code>pSigned</code> - if a <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+</dl>
+</li>
+</ul>
+<a id="castToImpl(java.lang.Object,boolean,org.sosy_lab.java_smt.api.FormulaType,java.lang.Object)">
+<!--   -->
+</a><a id="castToImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castToImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;castToImpl&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                           boolean&nbsp;pSigned,
+                                           <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;pTargetType,
+                                           <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</pre>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pNumber,
+                                     boolean&nbsp;pSigned,
+                                     <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pNumber</code> - the source formula of compatible type</dd>
+<dd><code>pSigned</code> - if a <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>pTargetType</code> - the type of the resulting formula</dd>
+</dl>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;number,
+                                     boolean&nbsp;signed,
+                                     <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+                                     <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - the source formula of compatible type</dd>
+<dd><code>signed</code> - if a <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+</dl>
+</li>
+</ul>
+<a id="castFromImpl(java.lang.Object,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,java.lang.Object)">
+<!--   -->
+</a><a id="castFromImpl(TFormulaInfo,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFromImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;castFromImpl&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                             boolean&nbsp;pSigned,
+                                             <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType,
+                                             <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</pre>
+</li>
+</ul>
+<a id="fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fromIeeeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;fromIeeeBitvector&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pNumber,
+                                              <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type. The sum of the sizes of exponent and mantissa of the
+ target type plus 1 (for the sign bit) needs to be equal to the size of the bitvector.
+
+ <p>Note: This method will return a value that is (numerically) far away from the original
+ value. This method is completely different from <a href="../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"><code>FloatingPointFormulaManager.castFrom(org.sosy_lab.java_smt.api.Formula, boolean, org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)</code></a>, which will produce a
+ floating-point value close to the numeral value.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="fromIeeeBitvectorImpl(java.lang.Object,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a><a id="fromIeeeBitvectorImpl(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fromIeeeBitvectorImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;fromIeeeBitvectorImpl&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                                      <a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</pre>
+</li>
+</ul>
+<a id="toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIeeeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toIeeeBitvector&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format. The size of the resulting bitvector is the sum of the
+ sizes of the exponent and mantissa of the input formula plus 1 (for the sign bit).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toIeeeBitvectorImpl(java.lang.Object)">
+<!--   -->
+</a><a id="toIeeeBitvectorImpl(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIeeeBitvectorImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;toIeeeBitvectorImpl&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber)</pre>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;negate&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(java.lang.Object)">
+<!--   -->
+</a><a id="negate(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;negate&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>abs</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;abs&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="abs(java.lang.Object)">
+<!--   -->
+</a><a id="abs(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>abs</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;abs&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>max</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;max&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="max(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="max(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>max</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;max&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>min</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;min&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="min(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="min(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>min</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;min&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+                                 <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="sqrt(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="sqrt(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;sqrt&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pNumber,
+                                     <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="add(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;add&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                    <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pRoundingMode)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                     <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                     <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="subtract(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;subtract&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                   <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="divide(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;divide&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                       <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                       <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                     <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                     <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="multiply(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;multiply&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2,
+                                         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFloatingPointRoundingMode)</pre>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;remainder&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                      <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y. The result can be negative even for two
+ positive arguments, e.g. "rem(5, 4) == 1" and "rem(5, 6) == -1", as opposed to integer modulo
+ operators.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="remainder(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="remainder(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;remainder&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                          <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assignment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;assignment&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                 <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a term for assigning one floating-point term to another. This means both terms are
+ considered equal afterwards. This method is the same as the method <code>equal</code> for other
+ theories.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="assignment(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="assignment(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assignment</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;assignment&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                           <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equalWithFPSemantics</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equalWithFPSemantics&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                           <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN). Be careful to not use this method when you really
+ need <a href="../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"><code>FloatingPointFormulaManager.assignment(FloatingPointFormula, FloatingPointFormula)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equalWithFPSemantics(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equalWithFPSemantics(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equalWithFPSemantics</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;equalWithFPSemantics&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                                     <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                  <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;greaterThan&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                            <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                      <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;greaterOrEquals&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                                <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                               <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;lessThan&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber1,
+                                   <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;lessOrEquals&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                             <a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNaN</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNaN&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNaN(java.lang.Object)">
+<!--   -->
+</a><a id="isNaN(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNaN</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isNaN&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isInfinity&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isInfinity(java.lang.Object)">
+<!--   -->
+</a><a id="isInfinity(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isInfinity</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isInfinity&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isZero</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isZero&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isZero(java.lang.Object)">
+<!--   -->
+</a><a id="isZero(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isZero</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isZero&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSubnormal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isSubnormal&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isSubnormal(java.lang.Object)">
+<!--   -->
+</a><a id="isSubnormal(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSubnormal</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isSubnormal&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNormal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNormal&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNormal(java.lang.Object)">
+<!--   -->
+</a><a id="isNormal(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNormal</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isNormal&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNegative</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNegative&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNegative(java.lang.Object)">
+<!--   -->
+</a><a id="isNegative(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNegative</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;isNegative&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>round</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;round&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;pFormula,
+                                  <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FloatingPointFormulaManager.html#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="round(java.lang.Object,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a><a id="round(TFormulaInfo,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>round</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;round&#8203;(<a href="AbstractFloatingPointFormulaManager.html" title="type parameter in AbstractFloatingPointFormulaManager">TFormulaInfo</a>&nbsp;pFormula,
+                                      <a href="../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pRoundingMode)</pre>
+</li>
+</ul>
+<a id="getBvRepresentation(java.math.BigInteger,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBvRepresentation</h4>
+<pre class="methodSignature">protected static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getBvRepresentation&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;integer,
+                                            int&nbsp;size)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html
new file mode 100644
index 0000000000..e2b41db291
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html
@@ -0,0 +1,1428 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":6,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":6,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractFormulaManager" class="title">Class AbstractFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>TFormulaInfo</code> - The solver specific type.</dd>
+</dl>
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></pre>
+<div class="block">Simplifies building a solver from the specific theories.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BASIC_OPERATORS">BASIC_OPERATORS</a></span></code></th>
+<td class="colLast">
+<div class="block">Avoid using basic mathematical or logical operators of SMT-LIB2 as names for symbols.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableBiMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableBiMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html?is-external=true" title="class or interface in java.lang" class="externalLink">Character</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#DISALLOWED_CHARACTER_REPLACEMENT">DISALLOWED_CHARACTER_REPLACEMENT</a></span></code></th>
+<td class="colLast">
+<div class="block">Mapping of disallowed char to their escaped counterparts.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SMTLIB2_KEYWORDS">SMTLIB2_KEYWORDS</a></span></code></th>
+<td class="colLast">
+<div class="block">Avoid using basic keywords of SMT-LIB2 as names for symbols.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractUFManager,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager,org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractBitvectorFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractFloatingPointFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractQuantifiedFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractArrayFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractSLFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractStringFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager)">AbstractFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator,
+                      <a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;?,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>&gt;&nbsp;functionManager,
+                      <a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;booleanManager,
+                      @Nullable <a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;pIntegerManager,
+                      @Nullable <a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;pRationalManager,
+                      @Nullable <a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;bitvectorManager,
+                      @Nullable <a href="AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;floatingPointManager,
+                      @Nullable <a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;quantifiedManager,
+                      @Nullable <a href="AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;arrayManager,
+                      @Nullable <a href="AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;slManager,
+                      @Nullable <a href="AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;strManager,
+                      @Nullable <a href="AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;enumManager)</code></th>
+<td class="colLast">
+<div class="block">Builds a solver from the given theory implementations.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyCNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyCNFImpl</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Apply conjunctive normal form (CNF) transformation to the given input formula.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyNNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyNNFImpl</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input)</code></th>
+<td class="colLast">
+<div class="block">Apply negation normal form (NNF) transformation to the given input formula.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyQELightImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyQELightImpl</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Eliminate quantifiers from the given input formula.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+           <a href="../api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)</code></th>
+<td class="colLast">
+<div class="block">Apply a tactic which performs formula transformation.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyUFEImpl(org.sosy_lab.java_smt.api.BooleanFormula)">applyUFEImpl</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Eliminate UFs from the given input formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkVariableName(java.lang.String)">checkVariableName</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">This method is similar to <a href="#isValidName(java.lang.String)"><code>isValidName(java.lang.String)</code></a> and throws an exception for invalid symbol
+ names.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;t)</code></th>
+<td class="colLast">
+<div class="block">Serialize an input formula to an SMT-LIB format.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dumpFormulaImpl(TFormulaInfo)">dumpFormulaImpl</a></span>&#8203;(<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;t)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#escape(java.lang.String)">escape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractInfo(org.sosy_lab.java_smt.api.Formula)">extractInfo</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract names of all free variables in a formula.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayFormulaManager()">getArrayFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Array-Theory.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBitvectorFormulaManager()">getBitvectorFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Bitvector-Theory.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBooleanFormulaManager()">getBooleanFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Boolean-Theory.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnumerationFormulaManager()">getEnumerationFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnvironment()">getEnvironment</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloatingPointFormulaManager()">getFloatingPointFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Floating-Point-Theory.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaCreator()">getFormulaCreator</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType(T)">getFormulaType</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Returns the type of the given Formula.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIntegerFormulaManager()">getIntegerFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Integer-Theory.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getQuantifiedFormulaManager()">getQuantifiedFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the interface for handling quantifiers.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRationalFormulaManager()">getRationalFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Rational-Theory.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSLFormulaManager()">getSLFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStringFormulaManager()">getStringFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the String Theory.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;?,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUFManager()">getUFManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isValidName(java.lang.String)">isValidName</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication</a></span>&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication</a></span>&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parse(java.lang.String)">parse</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaStr)</code></th>
+<td class="colLast">
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseImpl(java.lang.String)">parseImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaStr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#simplify(T)">simplify</a></span>&#8203;(T&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Simplify an input formula, while ensuring equivalence.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#simplify(TFormulaInfo)">simplify</a></span>&#8203;(<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Apply a simplification procedure for the given formula.</div>
+</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substitute(T,java.util.Map)">substitute</a></span>&#8203;(T&nbsp;pF,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFromToMapping)</code></th>
+<td class="colLast">
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.</div>
+</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(T&nbsp;f,
+                    <a href="../api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+             <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</code></th>
+<td class="colLast">
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.</div>
+</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unescape(java.lang.String)">unescape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;input,
+     <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with a given visitor.</div>
+</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF,
+                <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="BASIC_OPERATORS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>BASIC_OPERATORS</h4>
+<pre>public static final&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt; BASIC_OPERATORS</pre>
+<div class="block">Avoid using basic mathematical or logical operators of SMT-LIB2 as names for symbols.
+
+ <p>We do not accept some names as identifiers for variables or UFs, because they easily
+ misguide the user. Most solvers even would allow such identifiers directly, currently only
+ SMTInterpol has problems with some of them. For consistency, we disallow those names for all
+ solvers.</div>
+</li>
+</ul>
+<a id="SMTLIB2_KEYWORDS">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>SMTLIB2_KEYWORDS</h4>
+<pre>public static final&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt; SMTLIB2_KEYWORDS</pre>
+<div class="block">Avoid using basic keywords of SMT-LIB2 as names for symbols.
+
+ <p>We do not accept some names as identifiers for variables or UFs, because they easily
+ misguide the user. Most solvers even would allow such identifiers directly, currently only
+ SMTInterpol has problems with some of them. For consistency, we disallow those names for all
+ solvers.</div>
+</li>
+</ul>
+<a id="DISALLOWED_CHARACTER_REPLACEMENT">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DISALLOWED_CHARACTER_REPLACEMENT</h4>
+<pre>public static final&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableBiMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableBiMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Character.html?is-external=true" title="class or interface in java.lang" class="externalLink">Character</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt; DISALLOWED_CHARACTER_REPLACEMENT</pre>
+<div class="block">Mapping of disallowed char to their escaped counterparts.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractUFManager,org.sosy_lab.java_smt.basicimpl.AbstractBooleanFormulaManager,org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractBitvectorFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractFloatingPointFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractQuantifiedFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractArrayFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractSLFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractStringFormulaManager,org.sosy_lab.java_smt.basicimpl.AbstractEnumerationFormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractFormulaManager</h4>
+<pre>protected&nbsp;AbstractFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;pFormulaCreator,
+                                 <a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;?,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>&gt;&nbsp;functionManager,
+                                 <a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;booleanManager,
+                                 @Nullable <a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;pIntegerManager,
+                                 @Nullable <a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;pRationalManager,
+                                 @Nullable <a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;bitvectorManager,
+                                 @Nullable <a href="AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;floatingPointManager,
+                                 @Nullable <a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;quantifiedManager,
+                                 @Nullable <a href="AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;arrayManager,
+                                 @Nullable <a href="AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;slManager,
+                                 @Nullable <a href="AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;strManager,
+                                 @Nullable <a href="AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;enumManager)</pre>
+<div class="block">Builds a solver from the given theory implementations.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="getIntegerFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIntegerFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;getIntegerFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getIntegerFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Integer-Theory. Because most SAT-solvers support automatic casting between Integer-
+ and Rational-Theory, the Integer- and the RationalFormulaManager both return the same Formulas
+ for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL and others.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getIntegerFormulaManager()">getIntegerFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getRationalFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRationalFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;getRationalFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getRationalFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Rational-Theory. Because most SAT-solvers support automatic casting between
+ Integer- and Rational-Theory, the Integer- and the RationalFormulaManager both return the same
+ Formulas for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL, etc.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getRationalFormulaManager()">getRationalFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getBooleanFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBooleanFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;getBooleanFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getBooleanFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Boolean-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getBooleanFormulaManager()">getBooleanFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getBitvectorFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBitvectorFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;getBitvectorFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getBitvectorFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Bitvector-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getBitvectorFormulaManager()">getBitvectorFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getFloatingPointFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFloatingPointFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>&nbsp;getFloatingPointFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getFloatingPointFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Floating-Point-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getFloatingPointFormulaManager()">getFloatingPointFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUFManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUFManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;?,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>&gt;&nbsp;getUFManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getUFManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getUFManager()">getUFManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSLFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSLFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>&nbsp;getSLFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getSLFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getSLFormulaManager()">getSLFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getQuantifiedFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getQuantifiedFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TType</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>,&#8203;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFuncDecl</a>&gt;&nbsp;getQuantifiedFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getQuantifiedFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the interface for handling quantifiers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getQuantifiedFormulaManager()">getQuantifiedFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getArrayFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>&nbsp;getArrayFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getArrayFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Array-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getArrayFormulaManager()">getArrayFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStringFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStringFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>&nbsp;getStringFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getStringFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the String Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getStringFormulaManager()">getStringFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getEnumerationFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnumerationFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>&nbsp;getEnumerationFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getEnumerationFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getEnumerationFormulaManager()">getEnumerationFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="parseImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>parseImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;parseImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaStr)
+                                   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="parse(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>parse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;parse&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaStr)
+                     throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#parse(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format. We expect exactly one
+ assertion to be contained in the query.
+
+ <p>Example: <code>(declare-fun x () Int)(assert (= 0 x))</code>
+
+ <p>It depends on the used SMT solver whether the given query must be self-contained and include
+ declarations for all used symbols or not, and also whether the query is allowed to contain
+ symbols with equal name, but different type/sort than existing symbols. The safest way is to
+ always declare all used symbols and to avoid conflicting types for them.
+
+ <p>The behavior of the SMT solver is undefined if commands are provided in the SMTLIB-based
+ String that are different from declarations or an assertion, such as <code>push/pop</code> or
+ <code>set-info</code>. Most solvers just ignore those commands.
+
+ <p>Variables that are defined, but not used in the assertion, might be ignored by the SMT
+ solver and they might not be available for later usage.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#parse(java.lang.String)">parse</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A single formula from the assertion in the internal representation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the string cannot be parsed.</dd>
+</dl>
+</li>
+</ul>
+<a id="dumpFormulaImpl(java.lang.Object)">
+<!--   -->
+</a><a id="dumpFormulaImpl(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dumpFormulaImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;dumpFormulaImpl&#8203;(<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;t)
+                                   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dumpFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a>&nbsp;dumpFormula&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;t)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">FormulaManager</a></code></span></div>
+<div class="block">Serialize an input formula to an SMT-LIB format. Very useful when passing formulas between
+ different solvers.
+
+ <p>To get a String, simply call <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink"><code>Object.toString()</code></a> on the returned object. This method
+ is lazy and does not create an output string until the returned object is actually used.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>SMT-LIB formula serialization.</dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaType(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="getFormulaType(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;getFormulaType&#8203;(T&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#getFormulaType(T)">FormulaManager</a></code></span></div>
+<div class="block">Returns the type of the given Formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#getFormulaType(T)">getFormulaType</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getEnvironment()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnvironment</h4>
+<pre class="methodSignature">public final&nbsp;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TEnv</a>&nbsp;getEnvironment()</pre>
+</li>
+</ul>
+<a id="extractInfo(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractInfo</h4>
+<pre class="methodSignature">public final&nbsp;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;extractInfo&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+</li>
+</ul>
+<a id="applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyTactic</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyTactic&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                  <a href="../api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)
+                           throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">FormulaManager</a></code></span></div>
+<div class="block">Apply a tactic which performs formula transformation. The available tactics depend on the used
+ solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="applyUFEImpl(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyUFEImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyUFEImpl&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Eliminate UFs from the given input formula.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code> - Can be thrown by the native code.</dd>
+</dl>
+</li>
+</ul>
+<a id="applyQELightImpl(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyQELightImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyQELightImpl&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                                   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Eliminate quantifiers from the given input formula.
+
+ <p>This is the light version that does not need to eliminate all quantifiers.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code> - Can be thrown by the native code.</dd>
+</dl>
+</li>
+</ul>
+<a id="applyCNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyCNFImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyCNFImpl&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Apply conjunctive normal form (CNF) transformation to the given input formula.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - Input to apply the CNF transformation to.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code> - Can be thrown by the native code.</dd>
+</dl>
+</li>
+</ul>
+<a id="applyNNFImpl(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyNNFImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyNNFImpl&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input)
+                               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Apply negation normal form (NNF) transformation to the given input formula.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code> - Can be thrown by the native code.</dd>
+</dl>
+</li>
+</ul>
+<a id="simplify(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="simplify(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>simplify</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;simplify&#8203;(T&nbsp;f)
+                               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#simplify(T)">FormulaManager</a></code></span></div>
+<div class="block">Simplify an input formula, while ensuring equivalence.
+
+ <p>For solvers that do not provide a simplification API, an original formula is returned.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#simplify(T)">simplify</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Simplified version of the formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="simplify(java.lang.Object)">
+<!--   -->
+</a><a id="simplify(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>simplify</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;simplify&#8203;(<a href="AbstractFormulaManager.html" title="type parameter in AbstractFormulaManager">TFormulaInfo</a>&nbsp;f)
+                         throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Apply a simplification procedure for the given formula.
+
+ <p>This does not need to change something, but it might simplify the formula.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code> - Can be thrown by the native code.</dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;input,
+                   <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula with a given visitor.
+
+ <p>This method does <b>not recursively visit</b> sub-components of a formula its own, so the
+ given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a> needs to call such visitation on its own.
+
+ <p>Please be aware that calling this method might cause extensive stack usage depending on the
+ nesting of the given formula and the given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. Additionally, sub-formulas
+ that are used several times in the formula might be visited several times. For an efficient
+ formula traversing, we also provide <a href="../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(Formula, FormulaVisitor)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>input</code> - formula to be visited</dd>
+<dd><code>visitor</code> - an implementation that provides steps for each kind of formula.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF,
+                             <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. This method traverses
+ sub-components of a formula automatically, depending on the return value of the <a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>TraversalProcess</code></a> in the given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in PRE-ORDER manner with regard to caching identical subtrees, i.e., a
+ parent will be visited BEFORE its children. The unmodified child-formulas are passed as
+ argument to the parent's visitation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a><a id="transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;transformRecursively&#8203;(T&nbsp;f,
+                                                  <a href="../api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in POST-ORDER manner with regard to caching identical subtrees, i.e.,
+ a parent will be visited AFTER its children. The result of the child-visitation is passed as
+ argument to the parent's visitation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dd><code>pFormulaVisitor</code> - Transformation described by the user.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariables(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariables</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariables&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block">Extract names of all free variables in a formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariablesAndUFs&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas. If an UF occurs multiple times
+     in the input formula, an arbitrary instance of an application of this UF is in the map.</dd>
+</dl>
+</li>
+</ul>
+<a id="translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>translateFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;translateFrom&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+                                    <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">FormulaManager</a></code></span></div>
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.
+ Default implementation relies on string serialization (<a href="../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>FormulaManager.dumpFormula(BooleanFormula)</code></a> and
+ <a href="../api/FormulaManager.html#parse(java.lang.String)"><code>FormulaManager.parse(String)</code></a>), but each solver may implement more efficient translation between its
+ own contexts.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Formula belonging to <code>otherContext</code>.</dd>
+<dd><code>otherManager</code> - Formula manager belonging to the other context.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula belonging to <code>this</code> context.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeVariable&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+                                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formulaType</code> - the type of the variable.</dd>
+<dd><code>name</code> - the name of the variable.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the created variable.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">FormulaManager</a></code></span></div>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                             <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">FormulaManager</a></code></span></div>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="substitute(org.sosy_lab.java_smt.api.Formula,java.util.Map)">
+<!--   -->
+</a><a id="substitute(T,java.util.Map)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substitute</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;substitute&#8203;(T&nbsp;pF,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFromToMapping)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#substitute(T,java.util.Map)">FormulaManager</a></code></span></div>
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.
+
+ <p>E.g. if <code>changeFrom</code> contains a variable <code>a</code> and <code>changeTo</code> contains a
+ variable <code>b</code> all occurrences of <code>a</code> will be changed to <code>b</code> in the returned
+ formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#substitute(T,java.util.Map)">substitute</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - Formula to change.</dd>
+<dd><code>pFromToMapping</code> - Mapping of old and new formula parts.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula with parts replaced.</dd>
+</dl>
+</li>
+</ul>
+<a id="isValidName(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isValidName</h4>
+<pre class="methodSignature">public final&nbsp;boolean&nbsp;isValidName&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.
+ We disallow some keywords from SMTLib2 and other basic operators to be used as symbols.
+
+ <p>This method must be kept in sync with <a href="#checkVariableName(java.lang.String)"><code>checkVariableName(java.lang.String)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#isValidName(java.lang.String)">isValidName</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="checkVariableName(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkVariableName</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;checkVariableName&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block">This method is similar to <a href="#isValidName(java.lang.String)"><code>isValidName(java.lang.String)</code></a> and throws an exception for invalid symbol
+ names. While <a href="#isValidName(java.lang.String)"><code>isValidName(java.lang.String)</code></a> can be used from users, this method should be used internally
+ to validate user-given symbol names.
+
+ <p>This method must be kept in sync with <a href="#isValidName(java.lang.String)"><code>isValidName(java.lang.String)</code></a>.</div>
+</li>
+</ul>
+<a id="escape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>escape</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;escape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#escape(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.
+
+ <p>See <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(String)</code></a> for further details.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#escape(java.lang.String)">escape</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="unescape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>unescape</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;unescape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/FormulaManager.html#unescape(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.
+
+ <p>The result is undefined for Strings that are not properly escaped.
+
+ <p>See <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(String)</code></a> for further details.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/FormulaManager.html#unescape(java.lang.String)">unescape</a></code>&nbsp;in interface&nbsp;<code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractModel.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractModel.html
new file mode 100644
index 0000000000..ef9dcd7fbb
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractModel.html
@@ -0,0 +1,398 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractModel (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractModel (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractModel" class="title">Class AbstractModel&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">org.sosy_lab.java_smt.basicimpl.AbstractEvaluator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractModel&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code>, <code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code>, <code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractModel&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</span>
+extends <a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;
+implements <a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractEvaluator">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></h3>
+<code><a href="AbstractEvaluator.html#creator">creator</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractModel</a></span>&#8203;(<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;?&gt;&nbsp;prover,
+             <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractModel.html" title="type parameter in AbstractModel">TFormulaInfo</a>,&#8203;<a href="AbstractModel.html" title="type parameter in AbstractModel">TType</a>,&#8203;<a href="AbstractModel.html" title="type parameter in AbstractModel">TEnv</a>,&#8203;?&gt;&nbsp;creator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Pretty-printing of the model values.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractEvaluator">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a></h3>
+<code><a href="AbstractEvaluator.html#close()">close</a>, <a href="AbstractEvaluator.html#eval(T)">eval</a>, <a href="AbstractEvaluator.html#evalImpl(TFormulaInfo)">evalImpl</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a>, <a href="AbstractEvaluator.html#evaluateImpl(TFormulaInfo)">evaluateImpl</a>, <a href="AbstractEvaluator.html#isClosed()">isClosed</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Evaluator">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></h3>
+<code><a href="../api/Evaluator.html#eval(T)">eval</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a>, <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Iterable">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#forEach(java.util.function.Consumer)" title="class or interface in java.lang" class="externalLink">forEach</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#spliterator()" title="class or interface in java.lang" class="externalLink">spliterator</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../api/Model.html#asList()">asList</a>, <a href="../api/Model.html#close()">close</a>, <a href="../api/Model.html#iterator()">iterator</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.AbstractProver,org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractModel</h4>
+<pre>protected&nbsp;AbstractModel&#8203;(<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;?&gt;&nbsp;prover,
+                        <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractModel.html" title="type parameter in AbstractModel">TFormulaInfo</a>,&#8203;<a href="AbstractModel.html" title="type parameter in AbstractModel">TType</a>,&#8203;<a href="AbstractModel.html" title="type parameter in AbstractModel">TEnv</a>,&#8203;?&gt;&nbsp;creator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Model.html#toString()">Model</a></code></span></div>
+<div class="block">Pretty-printing of the model values.
+
+ <p>Please only use this method for debugging and not for retrieving relevant information about
+ the model. The returned model representation is not intended for further usage like parsing,
+ because we do not guarantee any specific format, e.g., for arrays and uninterpreted functions,
+ and we allow the SMT solver to include arbitrary additional information about the current
+ solver state, e.g., any available symbol in the solver, even from other provers, and temporary
+ internal symbols.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Model.html#toString()">toString</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html
new file mode 100644
index 0000000000..65696f4dbf
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html
@@ -0,0 +1,394 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractNumeralFormulaManager.NonLinearArithmetic (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractNumeralFormulaManager.NonLinearArithmetic (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Enum AbstractNumeralFormulaManager.NonLinearArithmetic" class="title">Enum AbstractNumeralFormulaManager.NonLinearArithmetic</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TEnv</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a> extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a> extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFuncDecl</a>&gt;</dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">AbstractNumeralFormulaManager.NonLinearArithmetic</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#APPROXIMATE_ALWAYS">APPROXIMATE_ALWAYS</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#APPROXIMATE_FALLBACK">APPROXIMATE_FALLBACK</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#USE">USE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="USE">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>USE</h4>
+<pre>public static final&nbsp;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a> USE</pre>
+</li>
+</ul>
+<a id="APPROXIMATE_FALLBACK">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>APPROXIMATE_FALLBACK</h4>
+<pre>public static final&nbsp;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a> APPROXIMATE_FALLBACK</pre>
+</li>
+</ul>
+<a id="APPROXIMATE_ALWAYS">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>APPROXIMATE_ALWAYS</h4>
+<pre>public static final&nbsp;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a> APPROXIMATE_ALWAYS</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (AbstractNumeralFormulaManager.NonLinearArithmetic c : AbstractNumeralFormulaManager.NonLinearArithmetic.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html
new file mode 100644
index 0000000000..cf33543a34
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html
@@ -0,0 +1,1388 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractNumeralFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractNumeralFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":6,"i5":10,"i6":10,"i7":10,"i8":6,"i9":10,"i10":10,"i11":10,"i12":10,"i13":6,"i14":10,"i15":6,"i16":6,"i17":10,"i18":6,"i19":10,"i20":6,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":10,"i33":10,"i34":6,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":6,"i45":10,"i46":6,"i47":10,"i48":10,"i49":10,"i50":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractNumeralFormulaManager" class="title">Class AbstractNumeralFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType,&#8203;ResultFormulaType,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;</code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractNumeralFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;</pre>
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormulaManager</code></a>. It handles all the unwrapping and wrapping
+ from <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> instances to solver-specific formula representations, such that the concrete
+ class needs to handle only its own internal types.</div>
+<dl>
+<dt><span class="simpleTagLabel">Implementation Requirements:</span></dt>
+<dd>The method <a href="../api/NumeralFormulaManager.html#getFormulaType()"><code>NumeralFormulaManager.getFormulaType()</code></a> must be safe to be called from the constructor
+     (the default implementations of <a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>IntegerFormulaManager</code></a> and
+     <a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>RationalFormulaManager</code></a> satisfy this).</dd>
+</dl>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic)">AbstractNumeralFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TEnv</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator,
+                             <a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&nbsp;pNonLinearArithmetic)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(ParamFormulaType,ParamFormulaType)">add</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+   <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(TFormulaInfo,TFormulaInfo)">add</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+   <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#decimalAsInteger(java.math.BigDecimal)">decimalAsInteger</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;val)</code></th>
+<td class="colLast">
+<div class="block">This method tries to represent a BigDecimal using only BigInteger.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</code></th>
+<td class="colLast">
+<div class="block">All given numbers are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinctImpl(java.util.List)">distinctImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&gt;&nbsp;pNumbers)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(ParamFormulaType,ParamFormulaType)">divide</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(TFormulaInfo,TFormulaInfo)">divide</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">
+<div class="block">If a solver does not support this operation, e.g.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(ParamFormulaType,ParamFormulaType)">equal</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+     <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(TFormulaInfo,TFormulaInfo)">equal</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+     <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floor(ParamFormulaType)">floor</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floor(TFormulaInfo)">floor</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+               <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+               <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+           <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+           <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>protected abstract boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNumeral(TFormulaInfo)">isNumeral</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;val)</code></th>
+<td class="colLast">
+<div class="block">Check whether the argument is a numeric constant (including negated constants).</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+            <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+            <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(TFormulaInfo,TFormulaInfo)">lessThan</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double)">makeNumber</a></span>&#8203;(double&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(long)">makeNumber</a></span>&#8203;(long&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;pNumber)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(double)">makeNumberImpl</a></span>&#8203;(double&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(long)">makeNumberImpl</a></span>&#8203;(long&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.lang.String)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.math.BigDecimal)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(java.math.BigInteger)">makeNumberImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumberImpl(org.sosy_lab.common.rationals.Rational)">makeNumberImpl</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(java.lang.String)">makeVariableImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(ParamFormulaType,ParamFormulaType,long)">modularCongruence</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                 <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2,
+                 long&nbsp;pModulo)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(ParamFormulaType,ParamFormulaType,java.math.BigInteger)">modularCongruence</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                 <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pModulo)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(TFormulaInfo,TFormulaInfo,long)">modularCongruence</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;a,
+                 <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;b,
+                 long&nbsp;m)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(TFormulaInfo,TFormulaInfo,java.math.BigInteger)">modularCongruence</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;a,
+                 <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;b,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;m)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modulo(ParamFormulaType,ParamFormulaType)">modulo</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modulo(TFormulaInfo,TFormulaInfo)">modulo</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">
+<div class="block">If a solver does not support this operation, e.g.</div>
+</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(ParamFormulaType,ParamFormulaType)">multiply</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(TFormulaInfo,TFormulaInfo)">multiply</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">
+<div class="block">If a solver does not support this operation, e.g.</div>
+</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(ParamFormulaType)">negate</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(TFormulaInfo)">negate</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(ParamFormulaType,ParamFormulaType)">subtract</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(TFormulaInfo,TFormulaInfo)">subtract</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i47" class="rowColor">
+<td class="colFirst"><code><a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sum(java.util.List)">sum</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i48" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sumImpl(java.util.List)">sumImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i49" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i50" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#wrap(TFormulaInfo)">wrap</a></span>&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></h3>
+<code><a href="../api/NumeralFormulaManager.html#getFormulaType()">getFormulaType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator,org.sosy_lab.java_smt.basicimpl.AbstractNumeralFormulaManager.NonLinearArithmetic)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractNumeralFormulaManager</h4>
+<pre>protected&nbsp;AbstractNumeralFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TEnv</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator,
+                                        <a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a>&nbsp;pNonLinearArithmetic)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="wrap(java.lang.Object)">
+<!--   -->
+</a><a id="wrap(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>wrap</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;wrap&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="isNumeral(java.lang.Object)">
+<!--   -->
+</a><a id="isNumeral(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNumeral</h4>
+<pre class="methodSignature">protected abstract&nbsp;boolean&nbsp;isNumeral&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;val)</pre>
+<div class="block">Check whether the argument is a numeric constant (including negated constants).</div>
+</li>
+</ul>
+<a id="makeNumber(long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(long&nbsp;i)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(long)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(long&nbsp;i)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;i)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</pre>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</pre>
+</li>
+</ul>
+<a id="makeNumber(double)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(double&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#makeNumber(double)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(double)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(double)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(double&nbsp;pNumber)</pre>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;pNumber)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumberImpl(java.math.BigDecimal)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumberImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeNumberImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;pNumber)</pre>
+</li>
+</ul>
+<a id="decimalAsInteger(java.math.BigDecimal)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>decimalAsInteger</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;decimalAsInteger&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;val)</pre>
+<div class="block">This method tries to represent a BigDecimal using only BigInteger. It can be used for
+ implementing <a href="#makeNumber(java.math.BigDecimal)"><code>makeNumber(BigDecimal)</code></a> when the current theory supports only integers and
+ division by constants.</div>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;i)</pre>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="negate(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;negate&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(java.lang.Object)">
+<!--   -->
+</a><a id="negate(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;negate&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1)</pre>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="add(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;add&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                             <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="add(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;add&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                    <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="sum(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sum</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;sum&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#sum(java.util.List)">sum</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="sumImpl(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sumImpl</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;sumImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&gt;&nbsp;operands)</pre>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="subtract(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;subtract&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                  <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="subtract(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;subtract&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="divide(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;divide&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.
+
+ <p>If the denominator evaluates to zero (division-by-zero), either directly as value or
+ indirectly via an additional constraint, then the solver is allowed to choose an arbitrary
+ value for the result of the division (cf. SMTLIB standard for the division operator in Ints or
+ Reals theory).
+
+ <p>Note: Some solvers, e.g., Yices2, abort with an exception when exploring a division-by-zero
+ during the SAT-check. This is not compliant to the SMTLIB standard, but sadly happens.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="divide(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;divide&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                              <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+<div class="block">If a solver does not support this operation, e.g. because of missing support for non-linear
+ arithmetics, we throw UnsupportedOperationException.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pParam1</code> - the dividend</dd>
+<dd><code>pParam2</code> - the divisor</dd>
+</dl>
+</li>
+</ul>
+<a id="modulo(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="modulo(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modulo</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;modulo&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+</li>
+</ul>
+<a id="modulo(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="modulo(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modulo</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;modulo&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                              <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+<div class="block">If a solver does not support this operation, e.g. because of missing support for non-linear
+ arithmetics, we throw UnsupportedOperationException.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pParam1</code> - the dividend</dd>
+<dd><code>pParam2</code> - the divisor</dd>
+</dl>
+</li>
+</ul>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula,long)">
+<!--   -->
+</a><a id="modularCongruence(ParamFormulaType,ParamFormulaType,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2,
+                                        long&nbsp;pModulo)</pre>
+</li>
+</ul>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula,java.math.BigInteger)">
+<!--   -->
+</a><a id="modularCongruence(ParamFormulaType,ParamFormulaType,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                        <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pModulo)</pre>
+</li>
+</ul>
+<a id="modularCongruence(java.lang.Object,java.lang.Object,java.math.BigInteger)">
+<!--   -->
+</a><a id="modularCongruence(TFormulaInfo,TFormulaInfo,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;modularCongruence&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;a,
+                                         <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;b,
+                                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;m)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>a</code> - first operand</dd>
+<dd><code>b</code> - second operand</dd>
+<dd><code>m</code> - the modulus</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the formula representing <code>a = b (mod m)</code></dd>
+</dl>
+</li>
+</ul>
+<a id="modularCongruence(java.lang.Object,java.lang.Object,long)">
+<!--   -->
+</a><a id="modularCongruence(TFormulaInfo,TFormulaInfo,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;modularCongruence&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;a,
+                                         <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;b,
+                                         long&nbsp;m)</pre>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>a</code> - first operand</dd>
+<dd><code>b</code> - second operand</dd>
+<dd><code>m</code> - the modulus</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the formula representing <code>a = b (mod m)</code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="multiply(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ResultFormulaType</a>&nbsp;multiply&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                  <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="multiply(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;multiply&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+<div class="block">If a solver does not support this operation, e.g. because of missing support for non-linear
+ arithmetics, we throw UnsupportedOperationException.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pParam1</code> - first factor</dd>
+<dd><code>pParam2</code> - second factor</dd>
+</dl>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="equal(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                            <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equal(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;equal&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#distinct(java.util.List)">NumeralFormulaManager</a></code></span></div>
+<div class="block">All given numbers are pairwise unequal.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#distinct(java.util.List)">distinct</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="distinctImpl(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinctImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;distinctImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&gt;&nbsp;pNumbers)</pre>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                  <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;greaterThan&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                            <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                      <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;greaterOrEquals&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                                <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                               <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;lessThan&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber1,
+                                   <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;pNumber2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;lessOrEquals&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                             <a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="floor(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="floor(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>floor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;floor&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/NumeralFormulaManager.html#floor(ParamFormulaType)">NumeralFormulaManager</a></code></span></div>
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.
+
+ <p>For rational formulas, SMTlib2 denotes this operation as <code>to_int</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a></code>&nbsp;in interface&nbsp;<code><a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TType</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="floor(java.lang.Object)">
+<!--   -->
+</a><a id="floor(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>floor</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;floor&#8203;(<a href="AbstractNumeralFormulaManager.html" title="type parameter in AbstractNumeralFormulaManager">TFormulaInfo</a>&nbsp;number)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractProver.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractProver.html
new file mode 100644
index 0000000000..2a7b6260dd
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractProver.html
@@ -0,0 +1,732 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractProver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractProver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":6,"i13":10,"i14":6,"i15":10,"i16":10,"i17":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractProver" class="title">Class AbstractProver&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractProver&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractProver&lt;T&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closed">closed</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#enableSL">enableSL</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#generateUnsatCores">generateUnsatCores</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.util.Set)">AbstractProver</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pOptions)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="AbstractProver.html" title="type parameter in AbstractProver">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract @Nullable <a href="AbstractProver.html" title="type parameter in AbstractProver">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addConstraintImpl(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraintImpl</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkEnableSeparationLogic()">checkEnableSeparationLogic</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkGenerateAllSat()">checkGenerateAllSat</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkGenerateModels()">checkGenerateModels</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkGenerateUnsatCores()">checkGenerateUnsatCores</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#checkGenerateUnsatCoresOverAssumptions()">checkGenerateUnsatCoresOverAssumptions</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closeAllEvaluators()">closeAllEvaluators</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAssertedConstraintIds()">getAssertedConstraintIds</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected <a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAssertedFormulas()">getAssertedFormulas</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pop()">pop</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected abstract void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#popImpl()">popImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#push()">push</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>protected abstract void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pushImpl()">pushImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected &lt;E extends <a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&gt;<br>E</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerEvaluator(E)">registerEvaluator</a></span>&#8203;(E&nbsp;pEvaluator)</code></th>
+<td class="colLast">
+<div class="block">This method registers the Evaluator to be cleaned up before the next change on the prover
+ stack.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size()">size</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unregisterEvaluator(org.sosy_lab.java_smt.api.Evaluator)">unregisterEvaluator</a></span>&#8203;(<a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&nbsp;pEvaluator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="generateUnsatCores">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>generateUnsatCores</h4>
+<pre>protected final&nbsp;boolean generateUnsatCores</pre>
+</li>
+</ul>
+<a id="enableSL">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>enableSL</h4>
+<pre>protected final&nbsp;boolean enableSL</pre>
+</li>
+</ul>
+<a id="closed">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>closed</h4>
+<pre>protected&nbsp;boolean closed</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractProver</h4>
+<pre>protected&nbsp;AbstractProver&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pOptions)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="checkGenerateModels()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkGenerateModels</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;checkGenerateModels()</pre>
+</li>
+</ul>
+<a id="checkGenerateAllSat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkGenerateAllSat</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;checkGenerateAllSat()</pre>
+</li>
+</ul>
+<a id="checkGenerateUnsatCores()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkGenerateUnsatCores</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;checkGenerateUnsatCores()</pre>
+</li>
+</ul>
+<a id="checkGenerateUnsatCoresOverAssumptions()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkGenerateUnsatCoresOverAssumptions</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;checkGenerateUnsatCoresOverAssumptions()</pre>
+</li>
+</ul>
+<a id="checkEnableSeparationLogic()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>checkEnableSeparationLogic</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;checkEnableSeparationLogic()</pre>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;size()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#size()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BasicProverEnvironment.html#size()">size</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">public final&nbsp;void&nbsp;push()
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#push()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BasicProverEnvironment.html#push()">push</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="pushImpl()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pushImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;void&nbsp;pushImpl()
+                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">public final&nbsp;void&nbsp;pop()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#pop()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BasicProverEnvironment.html#pop()">pop</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="popImpl()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>popImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;void&nbsp;popImpl()</pre>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+public final&nbsp;@Nullable <a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&nbsp;addConstraint&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="addConstraintImpl(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraintImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;@Nullable <a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&nbsp;addConstraintImpl&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getAssertedFormulas()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getAssertedFormulas</h4>
+<pre class="methodSignature">protected&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getAssertedFormulas()</pre>
+</li>
+</ul>
+<a id="getAssertedConstraintIds()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getAssertedConstraintIds</h4>
+<pre class="methodSignature">protected&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableSet.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableSet</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;&nbsp;getAssertedConstraintIds()</pre>
+</li>
+</ul>
+<a id="registerEvaluator(org.sosy_lab.java_smt.api.Evaluator)">
+<!--   -->
+</a><a id="registerEvaluator(E)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>registerEvaluator</h4>
+<pre class="methodSignature">protected&nbsp;&lt;E extends <a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&gt;&nbsp;E&nbsp;registerEvaluator&#8203;(E&nbsp;pEvaluator)</pre>
+<div class="block">This method registers the Evaluator to be cleaned up before the next change on the prover
+ stack.</div>
+</li>
+</ul>
+<a id="unregisterEvaluator(org.sosy_lab.java_smt.api.Evaluator)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unregisterEvaluator</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;unregisterEvaluator&#8203;(<a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&nbsp;pEvaluator)</pre>
+</li>
+</ul>
+<a id="closeAllEvaluators()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closeAllEvaluators</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;closeAllEvaluators()</pre>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#close()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/BasicProverEnvironment.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="AbstractProver.html" title="type parameter in AbstractProver">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html
new file mode 100644
index 0000000000..6cae24d0ac
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html
@@ -0,0 +1,455 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractProverWithAllSat (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractProverWithAllSat (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractProverWithAllSat" class="title">Class AbstractProverWithAllSat&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">org.sosy_lab.java_smt.basicimpl.AbstractProver</a>&lt;T&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractProverWithAllSat&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractProverWithAllSat&lt;T&gt;</span>
+extends <a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;T&gt;</pre>
+<div class="block">This class is a utility-class to avoid repeated implementation of the AllSAT computation.
+
+ <p>If a solver does not support direct AllSAT computation, please inherit from this class.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shutdownNotifier">shutdownNotifier</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractProver">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></h3>
+<code><a href="AbstractProver.html#closed">closed</a>, <a href="AbstractProver.html#enableSL">enableSL</a>, <a href="AbstractProver.html#generateUnsatCores">generateUnsatCores</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.util.Set,org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.common.ShutdownNotifier)">AbstractProverWithAllSat</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pOptions,
+                        <a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;pBmgr,
+                        <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></span>&#8203;(<a href="../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;importantPredicates)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEvaluatorWithoutChecks()">getEvaluatorWithoutChecks</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get an evaluator instance for model evaluation without executing checks for prover options.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractProver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a></h3>
+<code><a href="AbstractProver.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="AbstractProver.html#addConstraintImpl(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraintImpl</a>, <a href="AbstractProver.html#checkEnableSeparationLogic()">checkEnableSeparationLogic</a>, <a href="AbstractProver.html#checkGenerateAllSat()">checkGenerateAllSat</a>, <a href="AbstractProver.html#checkGenerateModels()">checkGenerateModels</a>, <a href="AbstractProver.html#checkGenerateUnsatCores()">checkGenerateUnsatCores</a>, <a href="AbstractProver.html#checkGenerateUnsatCoresOverAssumptions()">checkGenerateUnsatCoresOverAssumptions</a>, <a href="AbstractProver.html#close()">close</a>, <a href="AbstractProver.html#closeAllEvaluators()">closeAllEvaluators</a>, <a href="AbstractProver.html#getAssertedConstraintIds()">getAssertedConstraintIds</a>, <a href="AbstractProver.html#getAssertedFormulas()">getAssertedFormulas</a>, <a href="AbstractProver.html#pop()">pop</a>, <a href="AbstractProver.html#popImpl()">popImpl</a>, <a href="AbstractProver.html#push()">push</a>, <a href="AbstractProver.html#pushImpl()">pushImpl</a>, <a href="AbstractProver.html#registerEvaluator(E)">registerEvaluator</a>, <a href="AbstractProver.html#size()">size</a>, <a href="AbstractProver.html#unregisterEvaluator(org.sosy_lab.java_smt.api.Evaluator)">unregisterEvaluator</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="shutdownNotifier">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>shutdownNotifier</h4>
+<pre>protected final&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a> shutdownNotifier</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(java.util.Set,org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.common.ShutdownNotifier)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractProverWithAllSat</h4>
+<pre>protected&nbsp;AbstractProverWithAllSat&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pOptions,
+                                   <a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;pBmgr,
+                                   <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;importantPredicates)
+             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                    <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dd><code>importantPredicates</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getEvaluatorWithoutChecks()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getEvaluatorWithoutChecks</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>&nbsp;getEvaluatorWithoutChecks()
+                                                throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Get an evaluator instance for model evaluation without executing checks for prover options.
+
+ <p>This method allows model evaluation without explicitly enabling the prover-option <a href="../api/SolverContext.ProverOptions.html#GENERATE_MODELS"><code>SolverContext.ProverOptions.GENERATE_MODELS</code></a>. We only use this method internally, when we know about a valid
+ solver state. The returned evaluator does not have caching or any direct optimization for user
+ interaction.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if model can not be constructed.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html
new file mode 100644
index 0000000000..27b5c41ea7
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html
@@ -0,0 +1,495 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractQuantifiedFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractQuantifiedFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":6,"i5":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractQuantifiedFormulaManager" class="title">Class AbstractQuantifiedFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractQuantifiedFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractQuantifiedFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.QuantifiedFormulaManager">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></h3>
+<code><a href="../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractQuantifiedFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TType</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TEnv</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Eliminate the quantifiers for a given formula.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateQuantifiers(TFormulaInfo)">eliminateQuantifiers</a></span>&#8203;(<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;pExtractInfo)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier</a></span>&#8203;(<a href="../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+            <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>abstract <a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,TFormulaInfo)">mkQuantifier</a></span>&#8203;(<a href="../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&gt;&nbsp;vars,
+            <a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;body)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.QuantifiedFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></h3>
+<code><a href="../api/QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a>, <a href="../api/QuantifiedFormulaManager.html#exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a>, <a href="../api/QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a>, <a href="../api/QuantifiedFormulaManager.html#forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractQuantifiedFormulaManager</h4>
+<pre>protected&nbsp;AbstractQuantifiedFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TType</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TEnv</a>,&#8203;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eliminateQuantifiers</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;eliminateQuantifiers&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                                    throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                           <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/QuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">QuantifiedFormulaManager</a></code></span></div>
+<div class="block">Eliminate the quantifiers for a given formula. If this is not possible, it will return the
+ input formula. Note that CVC4 only supports this for LIA and LRA.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/QuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers</a></code>&nbsp;in interface&nbsp;<code><a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - Formula with quantifiers.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>New formula without quantifiers.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="eliminateQuantifiers(java.lang.Object)">
+<!--   -->
+</a><a id="eliminateQuantifiers(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eliminateQuantifiers</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;eliminateQuantifiers&#8203;(<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;pExtractInfo)
+                                              throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>mkQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;mkQuantifier&#8203;(<a href="../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+                                   <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>q</code> - Quantifier type</dd>
+<dd><code>pVariables</code> - The variables that will get bound (variables) by the quantification.</dd>
+<dd><code>pBody</code> - The <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>} within that the binding will be performed.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A quantified formula</dd>
+</dl>
+</li>
+</ul>
+<a id="mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,java.lang.Object)">
+<!--   -->
+</a><a id="mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>mkQuantifier</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;mkQuantifier&#8203;(<a href="../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+                                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&gt;&nbsp;vars,
+                                          <a href="AbstractQuantifiedFormulaManager.html" title="type parameter in AbstractQuantifiedFormulaManager">TFormulaInfo</a>&nbsp;body)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html
new file mode 100644
index 0000000000..a8827dd223
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html
@@ -0,0 +1,558 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractSLFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractSLFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":6,"i3":10,"i4":6,"i5":10,"i6":6,"i7":10,"i8":6,"i9":10,"i10":6,"i11":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractSLFormulaManager" class="title">Class AbstractSLFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractSLFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractSLFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractSLFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TEnv</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;AF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;<br><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeEmptyHeap(AT,VT)">makeEmptyHeap</a></span>&#8203;(AT&nbsp;pAdressType,
+             VT&nbsp;pValueType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeEmptyHeap(TType,TType)">makeEmptyHeap</a></span>&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;e1,
+             <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;e2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+             <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMagicWand(TFormulaInfo,TFormulaInfo)">makeMagicWand</a></span>&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e1,
+             <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>&lt;AF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;<br>AF</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNilElement(AT)">makeNilElement</a></span>&#8203;(AT&nbsp;pAdressType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNilElement(TType)">makeNilElement</a></span>&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">makePointsTo</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;ptr,
+            <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;to)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePointsTo(TFormulaInfo,TFormulaInfo)">makePointsTo</a></span>&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;ptr,
+            <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;to)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+        <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeStar(TFormulaInfo,TFormulaInfo)">makeStar</a></span>&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e1,
+        <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractSLFormulaManager</h4>
+<pre>protected&nbsp;AbstractSLFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TEnv</a>,&#8203;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeStar</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeStar&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                               <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SLFormulaManager.html#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeStar(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="makeStar(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeStar</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;makeStar&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e1,
+                                         <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e2)</pre>
+</li>
+</ul>
+<a id="makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePointsTo</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makePointsTo&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;ptr,
+                                   <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;to)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SLFormulaManager.html#makePointsTo(AF,VF)">makePointsTo</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makePointsTo(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="makePointsTo(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePointsTo</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;makePointsTo&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;ptr,
+                                             <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;to)</pre>
+</li>
+</ul>
+<a id="makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMagicWand</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeMagicWand&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                                    <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SLFormulaManager.html#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeMagicWand(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="makeMagicWand(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMagicWand</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;makeMagicWand&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e1,
+                                              <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;e2)</pre>
+</li>
+</ul>
+<a id="makeEmptyHeap(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeEmptyHeap(AT,VT)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeEmptyHeap</h4>
+<pre class="methodSignature">public&nbsp;&lt;AF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeEmptyHeap&#8203;(AT&nbsp;pAdressType,
+                                                                                                                                                    VT&nbsp;pValueType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SLFormulaManager.html#makeEmptyHeap(AT,VT)">makeEmptyHeap</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeEmptyHeap(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="makeEmptyHeap(TType,TType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeEmptyHeap</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;makeEmptyHeap&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;e1,
+                                              <a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;e2)</pre>
+</li>
+</ul>
+<a id="makeNilElement(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeNilElement(AT)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNilElement</h4>
+<pre class="methodSignature">public&nbsp;&lt;AF extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;&nbsp;AF&nbsp;makeNilElement&#8203;(AT&nbsp;pAdressType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SLFormulaManager.html#makeNilElement(AT)">makeNilElement</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNilElement(java.lang.Object)">
+<!--   -->
+</a><a id="makeNilElement(TType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNilElement</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TFormulaInfo</a>&nbsp;makeNilElement&#8203;(<a href="AbstractSLFormulaManager.html" title="type parameter in AbstractSLFormulaManager">TType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html
new file mode 100644
index 0000000000..a428164dd0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html
@@ -0,0 +1,538 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractSolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractSolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":9,"i2":10,"i3":6,"i4":10,"i5":6,"i6":10,"i7":6,"i8":6};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractSolverContext" class="title">Class AbstractSolverContext</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractSolverContext</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractSolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">AbstractSolverContext</a></span>&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;fmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#loadLibrariesWithFallback(java.util.function.Consumer,java.util.List,java.util.List)">loadLibrariesWithFallback</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;loader,
+                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;librariesForFirstTry,
+                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;librariesForSecondTry)</code></th>
+<td class="colLast">
+<div class="block">This method loads the given libraries.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment0(java.util.Set)">newOptimizationProverEnvironment0</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pSet)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment0(java.util.Set)">newProverEnvironment0</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;options)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation0(java.util.Set)">newProverEnvironmentWithInterpolation0</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pSet)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected abstract boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#supportsAssumptionSolving()">supportsAssumptionSolving</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Whether the solver supports solving under some given assumptions (with all corresponding
+ features) by itself, i.e., whether <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> and <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> are fully
+ implemented.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../api/SolverContext.html#close()">close</a>, <a href="../api/SolverContext.html#getSolverName()">getSolverName</a>, <a href="../api/SolverContext.html#getStatistics()">getStatistics</a>, <a href="../api/SolverContext.html#getVersion()">getVersion</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractSolverContext</h4>
+<pre>protected&nbsp;AbstractSolverContext&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;fmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/SolverContext.html#getFormulaManager()">SolverContext</a></code></span></div>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SolverContext.html#getFormulaManager()">getFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment0(java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment0</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment0&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;options)</pre>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation0(java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation0</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation0&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pSet)</pre>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature">public final&nbsp;<a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment0(java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment0</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment0&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>&gt;&nbsp;pSet)</pre>
+</li>
+</ul>
+<a id="supportsAssumptionSolving()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>supportsAssumptionSolving</h4>
+<pre class="methodSignature">protected abstract&nbsp;boolean&nbsp;supportsAssumptionSolving()</pre>
+<div class="block">Whether the solver supports solving under some given assumptions (with all corresponding
+ features) by itself, i.e., whether <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> and <a href="../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection)</code></a> are fully
+ implemented.
+
+ <p>Otherwise, i.e., if this method returns <code>false</code>, the solver does not need to support
+ this feature and may simply <code>throw UnsupportedOperationException</code> in the respective
+ methods. This class will wrap the prover environments and provide an implementation of the
+ feature.
+
+ <p>This method is expected to always return the same value. Otherwise, the behavior of this
+ class is undefined.</div>
+</li>
+</ul>
+<a id="loadLibrariesWithFallback(java.util.function.Consumer,java.util.List,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>loadLibrariesWithFallback</h4>
+<pre class="methodSignature">protected static&nbsp;void&nbsp;loadLibrariesWithFallback&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Consumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Consumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;loader,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;librariesForFirstTry,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;librariesForSecondTry)
+                                         throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsatisfiedLinkError.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsatisfiedLinkError</a></pre>
+<div class="block">This method loads the given libraries.
+
+ <p>If the first list of libraries can not be loaded, the second list is used as a fallback. The
+ two lists of libraries can be used to differ between libraries specific to Unix/Linux and
+ Windows.
+
+ <p>If the first try aborts after a few steps, we do not clean up partially loaded libraries,
+ but directly start the second try.
+
+ <p>Each list is applied in the given ordering.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>loader</code> - the loading mechanism that will be used for loading each single library.</dd>
+<dd><code>librariesForFirstTry</code> - list of library names that will be loaded, if possible.</dd>
+<dd><code>librariesForSecondTry</code> - list of library names that will be loaded, after the first attempt
+     (using librariesForFirstTry) has failed.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/UnsatisfiedLinkError.html?is-external=true" title="class or interface in java.lang" class="externalLink">UnsatisfiedLinkError</a></code> - if neither the first nor second try returned a successful loading
+     process.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html
new file mode 100644
index 0000000000..61c8e3bc38
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html
@@ -0,0 +1,1675 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractStringFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractStringFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":6,"i3":6,"i4":10,"i5":6,"i6":10,"i7":6,"i8":10,"i9":6,"i10":10,"i11":6,"i12":10,"i13":6,"i14":10,"i15":6,"i16":10,"i17":10,"i18":10,"i19":10,"i20":6,"i21":10,"i22":10,"i23":6,"i24":10,"i25":6,"i26":10,"i27":6,"i28":10,"i29":6,"i30":10,"i31":6,"i32":10,"i33":6,"i34":10,"i35":6,"i36":10,"i37":6,"i38":10,"i39":6,"i40":10,"i41":6,"i42":10,"i43":6,"i44":10,"i45":6,"i46":10,"i47":10,"i48":6,"i49":10,"i50":6,"i51":10,"i52":6,"i53":10,"i54":6,"i55":10,"i56":6,"i57":10,"i58":6,"i59":10,"i60":10,"i61":6,"i62":10,"i63":10,"i64":6,"i65":10,"i66":6};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractStringFormulaManager" class="title">Class AbstractStringFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractStringFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractStringFormulaManager&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractStringFormulaManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TType</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TEnv</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#all()">all</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allChar()">allChar</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allCharImpl()">allCharImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allImpl()">allImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+      <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</code></th>
+<td class="colLast">
+<div class="block">Get a substring of length 1 from the given String.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#charAt(TFormulaInfo,TFormulaInfo)">charAt</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;index)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closure(TFormulaInfo)">closure</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#complement(TFormulaInfo)">complement</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(java.util.List)">concat</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concatImpl(java.util.List)">concatImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concatRegex(java.util.List)">concatRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concatRegexImpl(java.util.List)">concatRegexImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+        <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(TFormulaInfo,TFormulaInfo)">contains</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;part)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+          <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>protected <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#difference(TFormulaInfo,TFormulaInfo)">difference</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+          <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+     <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(TFormulaInfo,TFormulaInfo)">equal</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+     <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+               <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(TFormulaInfo,TFormulaInfo)">greaterOrEquals</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+               <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+           <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(TFormulaInfo,TFormulaInfo)">greaterThan</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+           <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+  <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#in(TFormulaInfo,TFormulaInfo)">in</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+  <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+       <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+       <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</code></th>
+<td class="colLast">
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(TFormulaInfo,TFormulaInfo,TFormulaInfo)">indexOf</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;part,
+       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;startIndex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+            <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intersection(TFormulaInfo,TFormulaInfo)">intersection</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+            <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#length(org.sosy_lab.java_smt.api.StringFormula)">length</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#length(TFormulaInfo)">length</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+            <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(TFormulaInfo,TFormulaInfo)">lessOrEquals</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+            <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+        <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(TFormulaInfo,TFormulaInfo)">lessThan</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeRegex(java.lang.String)">makeRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeRegexImpl(java.lang.String)">makeRegexImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeString(java.lang.String)">makeString</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeStringImpl(java.lang.String)">makeStringImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of type String with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariableImpl(java.lang.String)">makeVariableImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#none()">none</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#noneImpl()">noneImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i47" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+      <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+</td>
+</tr>
+<tr id="i48" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#prefix(TFormulaInfo,TFormulaInfo)">prefix</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;prefix,
+      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i49" class="rowColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+     <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i50" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#range(TFormulaInfo,TFormulaInfo)">range</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;start,
+     <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;end)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i51" class="rowColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+       <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+       <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i52" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replace(TFormulaInfo,TFormulaInfo,TFormulaInfo)">replace</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;fullStr,
+       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;target,
+       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replacement)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i53" class="rowColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+          <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+          <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i54" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replaceAll(TFormulaInfo,TFormulaInfo,TFormulaInfo)">replaceAll</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;fullStr,
+          <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;target,
+          <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replacement)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i55" class="rowColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+         <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+         <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</code></th>
+<td class="colLast">
+<div class="block">Get a substring from the given String.</div>
+</td>
+</tr>
+<tr id="i56" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(TFormulaInfo,TFormulaInfo,TFormulaInfo)">substring</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+         <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;index,
+         <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;length)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i57" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+      <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+</td>
+</tr>
+<tr id="i58" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#suffix(TFormulaInfo,TFormulaInfo)">suffix</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;suffix,
+      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i59" class="rowColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+     int&nbsp;repetitions)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i60" class="altColor">
+<td class="colFirst"><code><a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Interpret a String formula as an Integer formula.</div>
+</td>
+</tr>
+<tr id="i61" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(TFormulaInfo)">toIntegerFormula</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i62" class="altColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i63" class="rowColor">
+<td class="colFirst"><code><a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula</a></span>&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Interpret an Integer formula as a String formula.</div>
+</td>
+</tr>
+<tr id="i64" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toStringFormula(TFormulaInfo)">toStringFormula</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i65" class="rowColor">
+<td class="colFirst"><code><a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union</a></span>&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+     <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i66" class="altColor">
+<td class="colFirst"><code>protected abstract <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#union(TFormulaInfo,TFormulaInfo)">union</a></span>&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+     <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.StringFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></h3>
+<code><a href="../api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.RegexFormula...)">concat</a>, <a href="../api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.StringFormula...)">concat</a>, <a href="../api/StringFormulaManager.html#range(char,char)">range</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractStringFormulaManager</h4>
+<pre>protected&nbsp;AbstractStringFormulaManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TType</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TEnv</a>,&#8203;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFuncDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeString(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeString</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeString&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#makeString(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Returns a <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#makeString(java.lang.String)">makeString</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the string value the returned <code>Formula</code> should represent</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a Formula representing the given value</dd>
+</dl>
+</li>
+</ul>
+<a id="makeStringImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeStringImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;makeStringImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#makeVariable(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of type String with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariableImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariableImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;makeVariableImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                            <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="equal(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;equal&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                  <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;greaterThan&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                            <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                      <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="greaterOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;greaterOrEquals&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                                <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                               <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessThan(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;lessThan&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                         <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                   <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="lessOrEquals(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;lessOrEquals&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                             <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="length(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>length</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#length(org.sosy_lab.java_smt.api.StringFormula)">length</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="length(java.lang.Object)">
+<!--   -->
+</a><a id="length(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>length</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;length&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="concat(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;concat&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#concat(java.util.List)">concat</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="concatImpl(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concatImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;concatImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&gt;&nbsp;parts)</pre>
+</li>
+</ul>
+<a id="prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>prefix</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;prefix&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+                             <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="prefix(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="prefix(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>prefix</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;prefix&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;prefix,
+                                       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str)</pre>
+</li>
+</ul>
+<a id="suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>suffix</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;suffix&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+                             <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="suffix(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="suffix(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>suffix</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;suffix&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;suffix,
+                                       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str)</pre>
+</li>
+</ul>
+<a id="in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>in</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;in&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                         <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>str</code> - formula representing the string to match</dd>
+<dd><code>regex</code> - formula representing the regular expression</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a formula representing the acceptance of the string by the regular expression</dd>
+</dl>
+</li>
+</ul>
+<a id="in(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="in(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>in</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;in&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+                                   <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;regex)</pre>
+</li>
+</ul>
+<a id="contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>contains</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;contains&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                               <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="contains(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="contains(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>contains</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;contains&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+                                         <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;part)</pre>
+</li>
+</ul>
+<a id="indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>indexOf</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;indexOf&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                                             <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+                                             <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.
+ startIndex (inlcuded) denotes the start of the search for the index.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="indexOf(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="indexOf(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>indexOf</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;indexOf&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+                                        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;part,
+                                        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;startIndex)</pre>
+</li>
+</ul>
+<a id="charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>charAt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;charAt&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                            <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get a substring of length 1 from the given String.
+
+ <p>The result is underspecified, if the index is out of bounds for the given String.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="charAt(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="charAt(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>charAt</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;charAt&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+                                       <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;index)</pre>
+</li>
+</ul>
+<a id="substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substring</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;substring&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                               <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+                               <a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get a substring from the given String.
+
+ <p>The result is underspecified, if the start index is out of bounds for the given String or if
+ the requested length is negative. The length of the result is the minimum of the requested
+ length and the remaining length of the given String.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="substring(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="substring(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substring</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;substring&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;str,
+                                          <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;index,
+                                          <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;length)</pre>
+</li>
+</ul>
+<a id="replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replace</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replace&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                             <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                             <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="replace(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="replace(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replace</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replace&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;fullStr,
+                                        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;target,
+                                        <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replacement)</pre>
+</li>
+</ul>
+<a id="replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replaceAll</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replaceAll&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                                <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                                <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="replaceAll(java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="replaceAll(TFormulaInfo,TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replaceAll</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replaceAll&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;fullStr,
+                                           <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;target,
+                                           <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;replacement)</pre>
+</li>
+</ul>
+<a id="makeRegex(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeRegex</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;makeRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#makeRegex(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Returns a <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.
+
+ <p>This method does not parse an existing regex from String, but uses the String directly as a
+ constant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#makeRegex(java.lang.String)">makeRegex</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the regular expression the returned <code>Formula</code> should represent</dd>
+</dl>
+</li>
+</ul>
+<a id="makeRegexImpl(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeRegexImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;makeRegexImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+</li>
+</ul>
+<a id="none()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>none</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;none()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#none()">none</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the empty set of strings</dd>
+</dl>
+</li>
+</ul>
+<a id="noneImpl()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>noneImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;noneImpl()</pre>
+</li>
+</ul>
+<a id="all()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>all</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;all()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#all()">StringFormulaManager</a></code></span></div>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#all()">all</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings, also known as Regex <code>".*"</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="allImpl()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;allImpl()</pre>
+</li>
+</ul>
+<a id="allChar()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allChar</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;allChar()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#allChar()">StringFormulaManager</a></code></span></div>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#allChar()">allChar</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings of length 1, also known as DOT operator which
+     represents one arbitrary char, or as Regex <code>"."</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="allCharImpl()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allCharImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;allCharImpl()</pre>
+</li>
+</ul>
+<a id="range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>range</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;range&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+                          <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the range regular expression over two sequences of length 1.</dd>
+</dl>
+</li>
+</ul>
+<a id="range(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="range(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>range</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;range&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;start,
+                                      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;end)</pre>
+</li>
+</ul>
+<a id="concatRegex(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concatRegex</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;concatRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#concatRegex(java.util.List)">concatRegex</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation</dd>
+</dl>
+</li>
+</ul>
+<a id="concatRegexImpl(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concatRegexImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;concatRegexImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&gt;&nbsp;parts)</pre>
+</li>
+</ul>
+<a id="union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>union</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;union&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                          <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the union</dd>
+</dl>
+</li>
+</ul>
+<a id="union(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="union(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>union</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;union&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                      <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>intersection</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;intersection&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                                 <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the intersection</dd>
+</dl>
+</li>
+</ul>
+<a id="intersection(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="intersection(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>intersection</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;intersection&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                             <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="closure(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closure</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;closure&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure (0 or more), also known as STAR operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="closure(java.lang.Object)">
+<!--   -->
+</a><a id="closure(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closure</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;closure&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="complement(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>complement</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;complement&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure</dd>
+</dl>
+</li>
+</ul>
+<a id="complement(java.lang.Object)">
+<!--   -->
+</a><a id="complement(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>complement</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;complement&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>difference</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;difference&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                               <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the difference</dd>
+</dl>
+</li>
+</ul>
+<a id="difference(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="difference(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>difference</h4>
+<pre class="methodSignature">protected&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;difference&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam1,
+                                  <a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam2)</pre>
+</li>
+</ul>
+<a id="cross(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>cross</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;cross&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene cross (1 or more), also known as PLUS operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="optional(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>optional</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;optional&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the optionality, also known as QUESTIONMARK operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="times(org.sosy_lab.java_smt.api.RegexFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>times</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;times&#8203;(<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+                          int&nbsp;repetitions)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation n times</dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Interpret a String formula as an Integer formula.
+
+ <p>The number is interpreted in base 10 and has no leading zeros. The method works as expected
+ for positive numbers, including zero. It returns the constant value of <code>-1</code> for
+ negative numbers or invalid number representations, for example if any char is no digit.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormula(java.lang.Object)">
+<!--   -->
+</a><a id="toIntegerFormula(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;toIntegerFormula&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toStringFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;toStringFormula&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/StringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Interpret an Integer formula as a String formula.
+
+ <p>The number is in base 10. The method works as expected for positive numbers, including zero.
+ It returns the empty string <code>""</code> for negative numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/StringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toStringFormula(java.lang.Object)">
+<!--   -->
+</a><a id="toStringFormula(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toStringFormula</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;toStringFormula&#8203;(<a href="AbstractStringFormulaManager.html" title="type parameter in AbstractStringFormulaManager">TFormulaInfo</a>&nbsp;pParam)</pre>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html
new file mode 100644
index 0000000000..276e96c608
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html
@@ -0,0 +1,536 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractUFManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractUFManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractUFManager" class="title">Class AbstractUFManager&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractUFManager&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>TFormulaInfo</code> - The solver specific type.</dd>
+<dd><code>TFunctionDecl</code> - The solver specific type of declarations of any function application</dd>
+<dd><code>TType</code> - The solver specific type of formula-types.</dd>
+</dl>
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractUFManager&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></pre>
+<div class="block">This class simplifies the implementation of the FunctionFormulaManager by converting the types to
+ the solver specific type.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">formulaCreator</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">AbstractUFManager</a></span>&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TFormulaInfo</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TType</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TEnv</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TFunctionDecl</a>&gt;&nbsp;pCreator)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF</a></span>&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;pFunc,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</code></th>
+<td class="colLast">
+<div class="block">Create an uninterpreted function call.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF</a></span>&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+      <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</code></th>
+<td class="colLast">
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;pArgTypes)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+         <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;pArgs)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getFormulaCreator</span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected TType</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">toSolverType</span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="formulaCreator">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaCreator</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; formulaCreator</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.basicimpl.FormulaCreator)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractUFManager</h4>
+<pre>protected&nbsp;AbstractUFManager&#8203;(<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TFormulaInfo</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TType</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TEnv</a>,&#8203;<a href="AbstractUFManager.html" title="type parameter in AbstractUFManager">TFunctionDecl</a>&gt;&nbsp;pCreator)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                  <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                                                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;pArgTypes)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Declare an uninterpreted function.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                            <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                                            <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;pArgs)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">UFManager</a></code></span></div>
+<div class="block">Declare an uninterpreted function.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+                                    <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>UFManager.callUF(FunctionDeclaration, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;pFunc,
+                                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Create an uninterpreted function call.
+
+ <p>Simply delegates to <a href="../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(FunctionDeclaration, List)</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pFunc</code> - Declaration of the function to call.</dd>
+<dd><code>pArgs</code> - Arguments of the function.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Instantiated function call.</dd>
+</dl>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                              <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                              <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                              <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"><code>UFManager.declareAndCallUF(String, FormulaType, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaCreator()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaCreator</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;&nbsp;getFormulaCreator()</pre>
+</li>
+</ul>
+<a id="toSolverType(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toSolverType</h4>
+<pre class="methodSignature">protected final&nbsp;TType&nbsp;toSolverType&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;formulaType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html b/api/org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html
new file mode 100644
index 0000000000..d65be1b571
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html
@@ -0,0 +1,515 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AbstractUserPropagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AbstractUserPropagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class AbstractUserPropagator" class="title">Class AbstractUserPropagator</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.AbstractUserPropagator</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="../example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">AbstractUserPropagator</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">AbstractUserPropagator</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBackend()">getBackend</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></span>&#8203;(<a href="../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;pBackend)</code></th>
+<td class="colLast">
+<div class="block">This method is invoked after the user propagator is registered via <a href="../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+          boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver decides to branch on a registered expression.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onFinalCheck()">onFinalCheck</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+            boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>).</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPop(int)">onPop</a></span>&#8203;(int&nbsp;numPoppedLevels)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver backtracks.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPush()">onPush</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked whenever the solver creates a new decision level.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</code></th>
+<td class="colLast">
+<div class="block">Registers an expression to be observed by the <a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AbstractUserPropagator</h4>
+<pre>public&nbsp;AbstractUserPropagator()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getBackend()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBackend</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;getBackend()</pre>
+</li>
+</ul>
+<a id="onPush()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPush</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onPush()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#onPush()">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked whenever the solver creates a new decision level. A user propagator
+ should maintain backtracking points on each push to enable later backtracking.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="../api/BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#onPush()">onPush</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="onPop(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onPop&#8203;(int&nbsp;numPoppedLevels)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#onPop(int)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked when the solver backtracks. The solver can backtrack multiple levels
+ simultaneously.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="../api/BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#onPop(int)">onPop</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numPoppedLevels</code> - The number of levels to backtrack (~ number of pushes to backtrack).</dd>
+</dl>
+</li>
+</ul>
+<a id="onFinalCheck()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onFinalCheck</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onFinalCheck()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#onFinalCheck()">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment. The user can
+ check the found model for consistency and potentially raise conflicts via <a href="../api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(BooleanFormula[])</code></a>.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../api/PropagatorBackend.html#notifyOnFinalCheck()"><code>PropagatorBackend.notifyOnFinalCheck()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#onFinalCheck()">onFinalCheck</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onKnownValue</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onKnownValue&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                         boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can raise conflicts via <a href="../api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])</code></a>, propagate consequences via <a href="../api/PropagatorBackend.html#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)"><code>PropagatorBackend.propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[], org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, or influence the solvers decision heuristics via
+ <a href="../api/PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>The reported value is only known on the current and later push levels, but will get
+ invalidated when backtracking.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../api/PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>expr</code> - The expressions whose value is known.</dd>
+<dd><code>value</code> - The value of the expression.</dd>
+</dl>
+</li>
+</ul>
+<a id="onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onDecision</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onDecision&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expr,
+                       boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked if the solver decides to branch on a registered expression. (<a href="../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can change the decision by calling <a href="../api/PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../api/PropagatorBackend.html#notifyOnDecision()"><code>PropagatorBackend.notifyOnDecision()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>expr</code> - The expressions whose value gets decided (usually a literal).</dd>
+<dd><code>value</code> - The decision value.</dd>
+</dl>
+</li>
+</ul>
+<a id="initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>initializeWithBackend</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;initializeWithBackend&#8203;(<a href="../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;pBackend)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">UserPropagator</a></code></span></div>
+<div class="block">This method is invoked after the user propagator is registered via <a href="../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>. The user can enable notifications by
+ accessing the provided <a href="../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><code>PropagatorBackend</code></a>.
+
+ <p>Warning: During its lifetime, a user propagator shall only be registered once via <a href="../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a> for otherwise unexpected errors can
+ occur. Implementations are advised to throw exceptions if this method is called multiple times.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>registerExpression</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;registerExpression&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;theoryExpr)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">UserPropagator</a></code></span></div>
+<div class="block">Registers an expression to be observed by the <a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><code>UserPropagator</code></a>. Solver actions related to
+ the expression are reported:
+
+ <ul>
+   <li>The callback <a href="../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> gets invoked if the value of a
+       registered expression becomes known (if notification was enabled via <a href="../api/PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>).
+   <li>The callback <a href="../api/UserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)"><code>UserPropagator.onDecision(org.sosy_lab.java_smt.api.BooleanFormula, boolean)</code></a> gets invoked right before the solver
+       decides on the value of a registered expression (if notification was enabled via <a href="../api/PropagatorBackend.html#notifyOnDecision()"><code>PropagatorBackend.notifyOnDecision()</code></a>).
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></code>&nbsp;in interface&nbsp;<code><a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>theoryExpr</code> - The expression to observe.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/CachingModel.html b/api/org/sosy_lab/java_smt/basicimpl/CachingModel.html
new file mode 100644
index 0000000000..1732a6f0ac
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/CachingModel.html
@@ -0,0 +1,645 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>CachingModel (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="CachingModel (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class CachingModel" class="title">Class CachingModel</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.CachingModel</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code>, <code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code>, <code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">CachingModel</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.Model)">CachingModel</a></span>&#8203;(<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#asList()">asList</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Free resources associated with this model (existing <a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eval(T)">eval</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></span>&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for boolean formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></span>&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for enumeration formulas.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></span>&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for floating-point formulas.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></span>&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for integer formulas.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></span>&#8203;(<a href="../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for rational formulas.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></span>&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for string formulas.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Pretty-printing of the model values.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Iterable">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#forEach(java.util.function.Consumer)" title="class or interface in java.lang" class="externalLink">forEach</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#spliterator()" title="class or interface in java.lang" class="externalLink">spliterator</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../api/Model.html#iterator()">iterator</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.Model)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>CachingModel</h4>
+<pre>public&nbsp;CachingModel&#8203;(<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;pDelegate)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="asList()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>asList</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;asList()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Model.html#asList()">Model</a></code></span></div>
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Model.html#asList()">asList</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Model.html#close()">Model</a></code></span></div>
+<div class="block">Free resources associated with this model (existing <a href="../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc. and <a href="../api/Model.html#iterator()"><code>Model.iterator()</code></a> must not be called again).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Model.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="eval(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="eval(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eval</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;@Nullable T&nbsp;eval&#8203;(T&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#eval(T)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.
+
+ <p>If a value is not relevant to the satisfiability result, the solver can choose either to
+ insert an arbitrary value (e.g., the value <code>0</code> for the matching type) or just return
+ <code>null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression. The solver
+ will replace all symbols from the formula with their model values and then simplify the formula
+ into a simple formula, e.g., consisting only of a numeral expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#eval(T)">eval</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula to be evaluated.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>evaluation of the given formula or <code>null</code> if the solver does not provide a
+     better evaluation.</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;evaluate&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model.
+
+ <p>If a value is not relevant to the satisfiability result, the model can choose either an
+ arbitrary value (e.g., the value <code>0</code> for the matching type) or just return <code>
+ null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Either of: - Number (Rational/Double/BigInteger/Long/Integer) - Boolean</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for integer formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;evaluate&#8203;(<a href="../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for rational formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&nbsp;evaluate&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for boolean formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for bitvector formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for string formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for enumeration formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;evaluate&#8203;(<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for floating-point formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../api/Model.html#toString()">Model</a></code></span></div>
+<div class="block">Pretty-printing of the model values.
+
+ <p>Please only use this method for debugging and not for retrieving relevant information about
+ the model. The returned model representation is not intended for further usage like parsing,
+ because we do not guarantee any specific format, e.g., for arrays and uninterpreted functions,
+ and we allow the SMT solver to include arbitrary additional information about the current
+ solver state, e.g., any available symbol in the solver, even from other provers, and temporary
+ internal symbols.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../api/Model.html#toString()">toString</a></code>&nbsp;in interface&nbsp;<code><a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/FormulaCreator.html b/api/org/sosy_lab/java_smt/basicimpl/FormulaCreator.html
new file mode 100644
index 0000000000..dd04f03b9f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/FormulaCreator.html
@@ -0,0 +1,1121 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaCreator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaCreator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":6,"i5":9,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":6,"i23":6,"i24":10,"i25":6,"i26":10,"i27":10,"i28":6,"i29":10,"i30":6,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":6,"i37":10,"i38":10,"i39":10,"i40":6,"i41":10,"i42":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class FormulaCreator" class="title">Class FormulaCreator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.FormulaCreator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt><span class="paramLabel">Type Parameters:</span></dt>
+<dd><code>TFormulaInfo</code> - the solver specific type for formulas.</dd>
+<dd><code>TType</code> - the solver specific type for formula types.</dd>
+<dd><code>TEnv</code> - the solver specific type for the environment/context.</dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">FormulaCreator&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This is a helper class with several methods that are commonly used throughout the basicimpl
+ package and may have solver-specific implementations. Each solver package is expected to provide
+ an instance of this class, with the appropriate methods overwritten. Depending on the solver,
+ some or all non-final methods in this class may need to be overwritten.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#environment">environment</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier</th>
+<th class="colSecond" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected </code></td>
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(TEnv,TType,TType,TType,TType,TType)">FormulaCreator</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a>&nbsp;env,
+              <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;boolType,
+              @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pIntegerType,
+              @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pRationalType,
+              @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;stringType,
+              @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;regexType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callFunction(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callFunction</a></span>&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callFunctionImpl(TFuncDecl,java.util.List)">callFunctionImpl</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&nbsp;declaration,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#convertValue(TFormulaInfo)">convertValue</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type like Boolean, BigInteger, Rational, or String.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#convertValue(TFormulaInfo,TFormulaInfo)">convertValue</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pAdditionalF,
+            <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUFImpl(java.lang.String,TType,java.util.List)">declareUFImpl</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+             <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pReturnType,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&gt;&nbsp;pArgTypes)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>protected static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dequote(java.lang.String)">dequote</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)</code></th>
+<td class="colLast">
+<div class="block">Variable names (symbols) can be wrapped with "|".</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulate(org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">encapsulate</a></span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pType,
+           <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected &lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateArray(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">encapsulateArray</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm,
+                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateBitvector(TFormulaInfo)">encapsulateBitvector</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateBoolean(TFormulaInfo)">encapsulateBoolean</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateEnumeration(TFormulaInfo)">encapsulateEnumeration</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateFloatingPoint(TFormulaInfo)">encapsulateFloatingPoint</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected <a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateRegex(TFormulaInfo)">encapsulateRegex</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateString(TFormulaInfo)">encapsulateString</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#encapsulateWithTypeOf(TFormulaInfo)">encapsulateWithTypeOf</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractInfo(java.util.List)">extractInfo</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;input)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>protected <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractInfo(org.sosy_lab.java_smt.api.Formula)">extractInfo</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pT)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)">extractVariablesAndUFs</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pFormula,
+                      boolean&nbsp;extractUF,
+                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/BiConsumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">BiConsumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pConsumer)</code></th>
+<td class="colLast">
+<div class="block">Extract all free variables from the formula, optionally including UFs.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(TFormulaInfo,boolean)">extractVariablesAndUFs</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pFormula,
+                      boolean&nbsp;extractUFs)</code></th>
+<td class="colLast">
+<div class="block">Wrapper for <a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(TFormulaInfo,boolean,java.util.function.BiConsumer)">extractVariablesAndUFs</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pFormula,
+                      boolean&nbsp;extractUFs,
+                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/BiConsumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">BiConsumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;pConsumer)</code></th>
+<td class="colLast">
+<div class="block">Wrapper for <a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected &lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayFormulaElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getArrayFormulaElementType</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>protected &lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayFormulaIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getArrayFormulaIndexType</a></span>&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayType(TType,TType)">getArrayType</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;indexType,
+            <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;elementType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBitvectorType(int)">getBitvectorType</a></span>&#8203;(int&nbsp;bitwidth)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBooleanVarDeclaration(org.sosy_lab.java_smt.api.BooleanFormula)">getBooleanVarDeclaration</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBooleanVarDeclarationImpl(TFormulaInfo)">getBooleanVarDeclarationImpl</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTFormulaInfo)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBoolType()">getBoolType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnv()">getEnv</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloatingPointType(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">getFloatingPointType</a></span>&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>protected &lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType(T)">getFormulaType</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Returns the type of the given Formula.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code>abstract <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType(TFormulaInfo)">getFormulaType</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;formula)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIntegerType()">getIntegerType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRationalType()">getRationalType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRegexType()">getRegexType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code><a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStringType()">getStringType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code>protected boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isCompatible(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">isCompatible</a></span>&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;usedType,
+            <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;declaredType)</code></th>
+<td class="colLast">
+<div class="block">This function checks whether the used type of the function argument is compatible with the
+ declared type in the function declaration.</div>
+</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code>abstract <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(TType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;type,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;varName)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T)">transformRecursively</a></span>&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFormulaVisitor,
+                    T&nbsp;pF)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T,java.util.function.Predicate)">transformRecursively</a></span>&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFormulaVisitor,
+                    T&nbsp;pF,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Predicate.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Predicate</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;shouldProcess)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;input,
+     <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code>abstract &lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,TFormulaInfo)">visit</a></span>&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor,
+     <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula,
+     <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;f)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula)">visitRecursively</a></span>&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor,
+                <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.util.function.Predicate)">visitRecursively</a></span>&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor,
+                <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Predicate.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Predicate</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;shouldProcess)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="environment">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>environment</h4>
+<pre>protected final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a> environment</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="&lt;init&gt;(TEnv,TType,TType,TType,TType,TType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>FormulaCreator</h4>
+<pre>protected&nbsp;FormulaCreator&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a>&nbsp;env,
+                         <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;boolType,
+                         @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pIntegerType,
+                         @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pRationalType,
+                         @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;stringType,
+                         @Nullable <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;regexType)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getEnv()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnv</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TEnv</a>&nbsp;getEnv()</pre>
+</li>
+</ul>
+<a id="getBoolType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBoolType</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getBoolType()</pre>
+</li>
+</ul>
+<a id="getIntegerType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIntegerType</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getIntegerType()</pre>
+</li>
+</ul>
+<a id="getRationalType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRationalType</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getRationalType()</pre>
+</li>
+</ul>
+<a id="getBitvectorType(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBitvectorType</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getBitvectorType&#8203;(int&nbsp;bitwidth)</pre>
+</li>
+</ul>
+<a id="getFloatingPointType(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFloatingPointType</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getFloatingPointType&#8203;(<a href="../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+</li>
+</ul>
+<a id="getArrayType(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="getArrayType(TType,TType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayType</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getArrayType&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;indexType,
+                                   <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;elementType)</pre>
+</li>
+</ul>
+<a id="getStringType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStringType</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getStringType()</pre>
+</li>
+</ul>
+<a id="getRegexType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRegexType</h4>
+<pre class="methodSignature">public final&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;getRegexType()</pre>
+</li>
+</ul>
+<a id="makeVariable(java.lang.Object,java.lang.String)">
+<!--   -->
+</a><a id="makeVariable(TType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;makeVariable&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;type,
+                                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;varName)</pre>
+</li>
+</ul>
+<a id="encapsulateBoolean(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateBoolean(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateBoolean</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;encapsulateBoolean&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateBitvector(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateBitvector(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateBitvector</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;encapsulateBitvector&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateFloatingPoint(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateFloatingPoint(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateFloatingPoint</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;encapsulateFloatingPoint&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateArray(java.lang.Object,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="encapsulateArray(TFormulaInfo,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateArray</h4>
+<pre class="methodSignature">protected&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;encapsulateArray&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm,
+                                                                                                   <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;pIndexType,
+                                                                                                   <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;pElementType)</pre>
+</li>
+</ul>
+<a id="encapsulateString(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateString(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateString</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;encapsulateString&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateRegex(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateRegex(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateRegex</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;encapsulateRegex&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateEnumeration(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateEnumeration(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateEnumeration</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;encapsulateEnumeration&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulateWithTypeOf(java.lang.Object)">
+<!--   -->
+</a><a id="encapsulateWithTypeOf(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulateWithTypeOf</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;encapsulateWithTypeOf&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="encapsulate(org.sosy_lab.java_smt.api.FormulaType,java.lang.Object)">
+<!--   -->
+</a><a id="encapsulate(org.sosy_lab.java_smt.api.FormulaType,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>encapsulate</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;encapsulate&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pType,
+                                         <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTerm)</pre>
+</li>
+</ul>
+<a id="extractInfo(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractInfo</h4>
+<pre class="methodSignature">protected&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;extractInfo&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pT)</pre>
+</li>
+</ul>
+<a id="getArrayFormulaElementType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayFormulaElementType</h4>
+<pre class="methodSignature">protected&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;getArrayFormulaElementType&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray)</pre>
+</li>
+</ul>
+<a id="getArrayFormulaIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayFormulaIndexType</h4>
+<pre class="methodSignature">protected&nbsp;&lt;TI extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;getArrayFormulaIndexType&#8203;(<a href="../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray)</pre>
+</li>
+</ul>
+<a id="getFormulaType(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="getFormulaType(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">protected&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;getFormulaType&#8203;(T&nbsp;formula)</pre>
+<div class="block">Returns the type of the given Formula.</div>
+</li>
+</ul>
+<a id="getFormulaType(java.lang.Object)">
+<!--   -->
+</a><a id="getFormulaType(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;getFormulaType&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;formula)</pre>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">@CanIgnoreReturnValue
+public&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;input,
+                   <a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visit(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;R&gt;)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.lang.Object)">
+<!--   -->
+</a><a id="visit(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public abstract&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;visitor,
+                            <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula,
+                            <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;f)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visit(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;R&gt;)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="extractInfo(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractInfo</h4>
+<pre class="methodSignature">protected&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;extractInfo&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;input)</pre>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor,
+                             <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.util.function.Predicate)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;pFormulaVisitor,
+                             <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pF,
+                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Predicate.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Predicate</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;shouldProcess)</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(org.sosy_lab.java_smt.api.Formula, org.sosy_lab.java_smt.api.visitors.FormulaVisitor&lt;org.sosy_lab.java_smt.api.visitors.TraversalProcess&gt;)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;transformRecursively&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFormulaVisitor,
+                                                  T&nbsp;pF)</pre>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,org.sosy_lab.java_smt.api.Formula,java.util.function.Predicate)">
+<!--   -->
+</a><a id="transformRecursively(org.sosy_lab.java_smt.api.visitors.FormulaVisitor,T,java.util.function.Predicate)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;transformRecursively&#8203;(<a href="../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pFormulaVisitor,
+                                                  T&nbsp;pF,
+                                                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/Predicate.html?is-external=true" title="class or interface in java.util.function" class="externalLink">Predicate</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;shouldProcess)</pre>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(java.lang.Object,boolean)">
+<!--   -->
+</a><a id="extractVariablesAndUFs(TFormulaInfo,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;extractVariablesAndUFs&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pFormula,
+                                                             boolean&nbsp;extractUFs)</pre>
+<div class="block">Wrapper for <a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(java.lang.Object,boolean,java.util.function.BiConsumer)">
+<!--   -->
+</a><a id="extractVariablesAndUFs(TFormulaInfo,boolean,java.util.function.BiConsumer)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;extractVariablesAndUFs&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pFormula,
+                                   boolean&nbsp;extractUFs,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/BiConsumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">BiConsumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;pConsumer)</pre>
+<div class="block">Wrapper for <a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)"><code>extractVariablesAndUFs(Formula, boolean, BiConsumer)</code></a> which unwraps both
+ input and output.</div>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula,boolean,java.util.function.BiConsumer)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;extractVariablesAndUFs&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;pFormula,
+                                   boolean&nbsp;extractUF,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/function/BiConsumer.html?is-external=true" title="class or interface in java.util.function" class="externalLink">BiConsumer</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pConsumer)</pre>
+<div class="block">Extract all free variables from the formula, optionally including UFs.</div>
+</li>
+</ul>
+<a id="callFunction(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callFunction</h4>
+<pre class="methodSignature">public final&nbsp;&lt;T extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callFunction&#8203;(<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+</li>
+</ul>
+<a id="isCompatible(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isCompatible</h4>
+<pre class="methodSignature">protected&nbsp;boolean&nbsp;isCompatible&#8203;(<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;usedType,
+                               <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&nbsp;declaredType)</pre>
+<div class="block">This function checks whether the used type of the function argument is compatible with the
+ declared type in the function declaration.
+
+ <p>Identical types are always compatible, a subtype like INT to supertype RATIONAL is also
+ compatible. A solver-specific wrapper can override this method if it does an explicit
+ transformation between (some) types, e.g., from BV to BOOLEAN or from BOOLEAN to INT.</div>
+</li>
+</ul>
+<a id="callFunctionImpl(java.lang.Object,java.util.List)">
+<!--   -->
+</a><a id="callFunctionImpl(TFuncDecl,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callFunctionImpl</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;callFunctionImpl&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&nbsp;declaration,
+                                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&gt;&nbsp;args)</pre>
+</li>
+</ul>
+<a id="declareUFImpl(java.lang.String,java.lang.Object,java.util.List)">
+<!--   -->
+</a><a id="declareUFImpl(java.lang.String,TType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUFImpl</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&nbsp;declareUFImpl&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                        <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&nbsp;pReturnType,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TType</a>&gt;&nbsp;pArgTypes)</pre>
+</li>
+</ul>
+<a id="getBooleanVarDeclaration(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBooleanVarDeclaration</h4>
+<pre class="methodSignature">public&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&nbsp;getBooleanVarDeclaration&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var)</pre>
+</li>
+</ul>
+<a id="getBooleanVarDeclarationImpl(java.lang.Object)">
+<!--   -->
+</a><a id="getBooleanVarDeclarationImpl(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBooleanVarDeclarationImpl</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFuncDecl</a>&nbsp;getBooleanVarDeclarationImpl&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pTFormulaInfo)</pre>
+</li>
+</ul>
+<a id="convertValue(java.lang.Object)">
+<!--   -->
+</a><a id="convertValue(TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>convertValue</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;convertValue&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pF)</pre>
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type like Boolean, BigInteger, Rational, or String.
+
+ <p>If the formula is not a simple constant expression, we simply return <code>null</code>.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - the formula to be converted.</dd>
+</dl>
+</li>
+</ul>
+<a id="convertValue(java.lang.Object,java.lang.Object)">
+<!--   -->
+</a><a id="convertValue(TFormulaInfo,TFormulaInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>convertValue</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;convertValue&#8203;(<a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pAdditionalF,
+                           <a href="FormulaCreator.html" title="type parameter in FormulaCreator">TFormulaInfo</a>&nbsp;pF)</pre>
+<div class="block">Convert the formula into a Java object as far as possible, i.e., try to match a primitive or
+ simple type.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pAdditionalF</code> - an additional formula where the type can be received from.</dd>
+<dd><code>pF</code> - the formula to be converted.</dd>
+</dl>
+</li>
+</ul>
+<a id="dequote(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>dequote</h4>
+<pre class="methodSignature">protected static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;dequote&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)</pre>
+<div class="block">Variable names (symbols) can be wrapped with "|". This function removes those chars.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html b/api/org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html
new file mode 100644
index 0000000000..91f2a8ea1c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html
@@ -0,0 +1,365 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FunctionDeclarationImpl (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FunctionDeclarationImpl (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":6,"i1":9,"i2":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class FunctionDeclarationImpl" class="title">Class FunctionDeclarationImpl&lt;F extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.FunctionDeclarationImpl&lt;F,&#8203;T&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;F&gt;</code></dd>
+</dl>
+<hr>
+<pre>@Immutable(containerOf="T")
+public abstract class <span class="typeNameLabel">FunctionDeclarationImpl&lt;F extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;T&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;F&gt;</pre>
+<div class="block">Declaration of a function.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">FunctionDeclarationImpl</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>abstract <a href="FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverDeclaration()">getSolverDeclaration</a></span>()</code></th>
+<td class="colLast">
+<div class="block">get a reference to the internal declaration used by the SMT solver.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static &lt;F extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;T&gt;<br><a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;F&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#of(java.lang.String,org.sosy_lab.java_smt.api.FunctionDeclarationKind,java.util.List,org.sosy_lab.java_smt.api.FormulaType,T)">of</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+  <a href="../api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&nbsp;kind,
+  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;pArgumentTypes,
+  <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;F&gt;&nbsp;pReturnType,
+  T&nbsp;pDeclaration)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.FunctionDeclaration">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a></h3>
+<code><a href="../api/FunctionDeclaration.html#getArgumentTypes()">getArgumentTypes</a>, <a href="../api/FunctionDeclaration.html#getKind()">getKind</a>, <a href="../api/FunctionDeclaration.html#getName()">getName</a>, <a href="../api/FunctionDeclaration.html#getType()">getType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>FunctionDeclarationImpl</h4>
+<pre>public&nbsp;FunctionDeclarationImpl()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="of(java.lang.String,org.sosy_lab.java_smt.api.FunctionDeclarationKind,java.util.List,org.sosy_lab.java_smt.api.FormulaType,java.lang.Object)">
+<!--   -->
+</a><a id="of(java.lang.String,org.sosy_lab.java_smt.api.FunctionDeclarationKind,java.util.List,org.sosy_lab.java_smt.api.FormulaType,T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>of</h4>
+<pre class="methodSignature">public static&nbsp;&lt;F extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;T&gt;&nbsp;<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;F&gt;&nbsp;of&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                                    <a href="../api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api">FunctionDeclarationKind</a>&nbsp;kind,
+                                                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;pArgumentTypes,
+                                                                    <a href="../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;F&gt;&nbsp;pReturnType,
+                                                                    T&nbsp;pDeclaration)</pre>
+</li>
+</ul>
+<a id="getSolverDeclaration()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverDeclaration</h4>
+<pre class="methodSignature">public abstract&nbsp;<a href="FunctionDeclarationImpl.html" title="type parameter in FunctionDeclarationImpl">T</a>&nbsp;getSolverDeclaration()</pre>
+<div class="block">get a reference to the internal declaration used by the SMT solver. This method should only be
+ used internally in JavaSMT.</div>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/ShutdownHook.html b/api/org/sosy_lab/java_smt/basicimpl/ShutdownHook.html
new file mode 100644
index 0000000000..f4a435ee2f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/ShutdownHook.html
@@ -0,0 +1,337 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ShutdownHook (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ShutdownHook (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class ShutdownHook" class="title">Class ShutdownHook</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.ShutdownHook</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier.ShutdownRequestListener</a></code></dd>
+</dl>
+<hr>
+<pre>public final class <span class="typeNameLabel">ShutdownHook</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier.ShutdownRequestListener</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></pre>
+<div class="block">A utility class for interrupting a parallel running solver thread.
+
+ <p>The hook is active directly after its construction until calling the method <a href="#close()"><code>close()</code></a> and forwards all shutdown requests to the provided method.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.common.ShutdownNotifier,java.lang.Runnable)">ShutdownHook</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Runnable</a>&nbsp;pInterruptCall)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shutdownRequested(java.lang.String)">shutdownRequested</a></span>&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;reasonUnused)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.common.ShutdownNotifier,java.lang.Runnable)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ShutdownHook</h4>
+<pre>public&nbsp;ShutdownHook&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Runnable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Runnable</a>&nbsp;pInterruptCall)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="shutdownRequested(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shutdownRequested</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;shutdownRequested&#8203;(@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;reasonUnused)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true#shutdownRequested(java.lang.String)" title="class or interface in org.sosy_lab.common" class="externalLink">shutdownRequested</a></code>&nbsp;in interface&nbsp;<code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier.ShutdownRequestListener</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/Tokenizer.html b/api/org/sosy_lab/java_smt/basicimpl/Tokenizer.html
new file mode 100644
index 0000000000..c8c106c0c2
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/Tokenizer.html
@@ -0,0 +1,478 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Tokenizer (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Tokenizer (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl</a></div>
+<h2 title="Class Tokenizer" class="title">Class Tokenizer</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.Tokenizer</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">Tokenizer</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Helper class for splitting up an SMT-LIB2 file into a string of commands.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isAssertToken(java.lang.String)">isAssertToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is an <code>(assert ...)</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isDeclarationToken(java.lang.String)">isDeclarationToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is a function or variable declaration.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isDefinitionToken(java.lang.String)">isDefinitionToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is a function definition.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isExitToken(java.lang.String)">isExitToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is <code>(exit)</code>.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isForbiddenToken(java.lang.String)">isForbiddenToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if this is a forbidden token.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isPopToken(java.lang.String)">isPopToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is an <code>(pop ...)</code>.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isPushToken(java.lang.String)">isPushToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is an <code>(push ...)</code>.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isResetAssertionsToken(java.lang.String)">isResetAssertionsToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is an <code>(reset-assertions ...)</code>.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isResetToken(java.lang.String)">isResetToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is an <code>(reset)</code>.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSetLogicToken(java.lang.String)">isSetLogicToken</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</code></th>
+<td class="colLast">
+<div class="block">Check if the token is <code>(set-logic ..)</code>.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#tokenize(java.lang.String)">tokenize</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;input)</code></th>
+<td class="colLast">
+<div class="block">Split up a sequence of lisp expressions.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="tokenize(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>tokenize</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;tokenize&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;input)</pre>
+<div class="block">Split up a sequence of lisp expressions.
+
+ <p>This is used by <a href="AbstractFormulaManager.html#parse(java.lang.String)"><code>AbstractFormulaManager.parse(String)</code></a> as part of the preprocessing
+ before the input is passed on to the solver. SMT-LIB2 scripts are sequences of commands that
+ are just r-expression. We split them up and then return the list.
+
+ <p>As an example <code>tokenize("(define-const a Int)(assert (= a 0)")</code> will return the
+ sequence <code>["(define-const a Int)", "(assert (= a 0))"]</code></div>
+</li>
+</ul>
+<a id="isSetLogicToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSetLogicToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isSetLogicToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is <code>(set-logic ..)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isDeclarationToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isDeclarationToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isDeclarationToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is a function or variable declaration.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isDefinitionToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isDefinitionToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isDefinitionToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is a function definition.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isAssertToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isAssertToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isAssertToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is an <code>(assert ...)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isPushToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isPushToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isPushToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is an <code>(push ...)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isPopToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isPopToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isPopToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is an <code>(pop ...)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isResetAssertionsToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isResetAssertionsToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isResetAssertionsToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is an <code>(reset-assertions ...)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isResetToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isResetToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isResetToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is an <code>(reset)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isExitToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isExitToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isExitToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if the token is <code>(exit)</code>.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+<a id="isForbiddenToken(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isForbiddenToken</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;isForbiddenToken&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;token)</pre>
+<div class="block">Check if this is a forbidden token.
+
+ <p>The list of forbidden tokens contains:
+
+ <ul>
+   <li>push
+   <li>pop
+   <li>reset-assertions
+   <li>reset
+ </ul>
+
+ <p>Forbidden tokens manipulate the stack and are not supported while parsing SMT-lIB2 string.
+ When a forbidden token is found parsing should be aborted by throwing an <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink"><code>IllegalArgumentException</code></a> exception.
+
+ <p>Use <a href="#tokenize(java.lang.String)"><code>tokenize(String)</code></a> to turn an SMT-LIB2 script into a string of input tokens.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/package-summary.html b/api/org/sosy_lab/java_smt/basicimpl/package-summary.html
new file mode 100644
index 0000000000..4d9b511642
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/package-summary.html
@@ -0,0 +1,296 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.basicimpl</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Abstract base classes for easier implementation of a solver backend.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractArrayFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBitvectorFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractBooleanFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEnumerationFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractEvaluator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFloatingPointFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormulaManager</code></a>.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">
+<div class="block">Simplifies building a solver from the specific theories.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractModel</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">
+<div class="block">Similar to the other Abstract*FormulaManager classes in this package, this class serves as a
+ helper for implementing <a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>NumeralFormulaManager</code></a>.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProver</a>&lt;T&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractProverWithAllSat</a>&lt;T&gt;</th>
+<td class="colLast">
+<div class="block">This class is a utility-class to avoid repeated implementation of the AllSAT computation.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractQuantifiedFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSLFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractSolverContext</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractStringFormulaManager</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUFManager</a>&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt;</th>
+<td class="colLast">
+<div class="block">This class simplifies the implementation of the FunctionFormulaManager by converting the types to
+ the solver specific type.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl">CachingModel</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl">FormulaCreator</a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</th>
+<td class="colLast">
+<div class="block">This is a helper class with several methods that are commonly used throughout the basicimpl
+ package and may have solver-specific implementations.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl">FunctionDeclarationImpl</a>&lt;F extends <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;T&gt;</th>
+<td class="colLast">
+<div class="block">Declaration of a function.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl">ShutdownHook</a></th>
+<td class="colLast">
+<div class="block">A utility class for interrupting a parallel running solver thread.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl">Tokenizer</a></th>
+<td class="colLast">
+<div class="block">Helper class for splitting up an SMT-LIB2 file into a string of commands.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl">AbstractNumeralFormulaManager.NonLinearArithmetic</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/package-tree.html b/api/org/sosy_lab/java_smt/basicimpl/package-tree.html
new file mode 100644
index 0000000000..f49f99e764
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/package-tree.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.basicimpl</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractArrayFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBitvectorFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBooleanFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager.EnumType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEvaluator</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractModel</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFloatingPointFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType,&#8203;ResultFormulaType,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProver</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProverWithAllSat</span></a>&lt;T&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractQuantifiedFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSLFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractStringFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUFManager</span></a>&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUserPropagator</span></a> (implements org.sosy_lab.java_smt.api.<a href="../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">CachingModel</span></a> (implements org.sosy_lab.java_smt.api.<a href="../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FormulaCreator</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FunctionDeclarationImpl</span></a>&lt;F,&#8203;T&gt; (implements org.sosy_lab.java_smt.api.<a href="../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;E&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">ShutdownHook</span></a> (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, org.sosy_lab.common.<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier.ShutdownRequestListener</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">Tokenizer</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager.NonLinearArithmetic</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html b/api/org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html
new file mode 100644
index 0000000000..799f5028f4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html
@@ -0,0 +1,449 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NNFVisitor (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NNFVisitor (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl.tactics</a></div>
+<h2 title="Class NNFVisitor" class="title">Class NNFVisitor</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.tactics.NNFVisitor</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">NNFVisitor</span>
+extends <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">NNFVisitor</a></span>&#8203;(<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedCondition,
+               <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedThenFormula,
+               <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedElseFormula)</code></th>
+<td class="colLast">
+<div class="block">Visit an if-then-else expression.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit an implication.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand)</code></th>
+<td class="colLast">
+<div class="block">Visit a NOT-expression.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+        <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</code></th>
+<td class="colLast">
+<div class="block">Visit a XOR-expression.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.api.visitors.<a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></h3>
+<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitAnd(java.util.List)">visitAnd</a>, <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitAtom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FunctionDeclaration)">visitAtom</a>, <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitBoundVar(org.sosy_lab.java_smt.api.BooleanFormula,int)">visitBoundVar</a>, <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitConstant(boolean)">visitConstant</a>, <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitOr(java.util.List)">visitOr</a>, <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,org.sosy_lab.java_smt.api.BooleanFormula,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">visitQuantifier</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NNFVisitor</h4>
+<pre>public&nbsp;NNFVisitor&#8203;(<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitNot</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitNot&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a NOT-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitNot(org.sosy_lab.java_smt.api.BooleanFormula)">visitNot</a></code>&nbsp;in class&nbsp;<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>processedOperand</code> - Negated term.</dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.not(org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitXor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitXor&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                               <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit a XOR-expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitXor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitXor</a></code>&nbsp;in class&nbsp;<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.xor(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitEquivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitEquivalence&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                                       <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an equivalence between two formulas of boolean sort: <code>operand1 = operand2</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitEquivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitEquivalence</a></code>&nbsp;in class&nbsp;<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.equivalence(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitImplication</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitImplication&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand1,
+                                       <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedOperand2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an implication.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitImplication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitImplication</a></code>&nbsp;in class&nbsp;<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.implication(org.sosy_lab.java_smt.api.BooleanFormula, org.sosy_lab.java_smt.api.BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>visitIfThenElse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;visitIfThenElse&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedCondition,
+                                      <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedThenFormula,
+                                      <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;processedElseFormula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaVisitor</a></code></span></div>
+<div class="block">Visit an if-then-else expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html#visitIfThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">visitIfThenElse</a></code>&nbsp;in class&nbsp;<code><a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)"><code>BooleanFormulaManager.ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula, T, T)</code></a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html b/api/org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html
new file mode 100644
index 0000000000..7776e8d83c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/tactics/package-summary.html
@@ -0,0 +1,170 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl.tactics (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl.tactics (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.basicimpl.tactics</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Default tactics implementations (formula-to-formula transformations).</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics">NNFVisitor</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/tactics/package-tree.html b/api/org/sosy_lab/java_smt/basicimpl/tactics/package-tree.html
new file mode 100644
index 0000000000..ee4ff759be
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/tactics/package-tree.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl.tactics Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl.tactics Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.basicimpl.tactics</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaTransformationVisitor</span></a> (implements org.sosy_lab.java_smt.api.visitors.<a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.tactics.<a href="NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics"><span class="typeNameLink">NNFVisitor</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html
new file mode 100644
index 0000000000..d867ca6dbf
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html
@@ -0,0 +1,770 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BasicProverWithAssumptionsWrapper (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BasicProverWithAssumptionsWrapper (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></div>
+<h2 title="Class BasicProverWithAssumptionsWrapper" class="title">Class BasicProverWithAssumptionsWrapper&lt;T,&#8203;P extends <a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper&lt;T,&#8203;P&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a></code>, <code><a href="ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">BasicProverWithAssumptionsWrapper&lt;T,&#8203;P extends <a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">P</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#delegate">delegate</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solverAssumptionsAsFormula">solverAssumptionsAsFormula</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></span>&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;pCallback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pImportant)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clearAssumptions()">clearAssumptions</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getModel()">getModel</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getModelAssignments()">getModelAssignments</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get a list of satisfying assignments.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a concrete ProverEnvironment in a solver.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUnsatCore()">getUnsatCore</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get an unsat core.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsat()">isUnsat</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#pop()">pop</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#push()">push</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerPushedFormula(T)">registerPushedFormula</a></span>&#8203;(<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&nbsp;pPushResult)</code></th>
+<td class="colLast">
+<div class="block">overridden in sub-class.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#size()">size</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pAssumptions)</code></th>
+<td class="colLast">
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="delegate">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>delegate</h4>
+<pre>protected final&nbsp;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">P</a> extends <a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt; delegate</pre>
+</li>
+</ul>
+<a id="solverAssumptionsAsFormula">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>solverAssumptionsAsFormula</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt; solverAssumptionsAsFormula</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="clearAssumptions()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>clearAssumptions</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;clearAssumptions()</pre>
+</li>
+</ul>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;pop()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#pop()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#pop()">pop</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">public&nbsp;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&nbsp;addConstraint&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;push()
+          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#push()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#push()">push</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;size()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#size()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#size()">size</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsat</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsat()
+                throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsat()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsatWithAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatWithAssumptions</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsatWithAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - A list of literals.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="registerPushedFormula(java.lang.Object)">
+<!--   -->
+</a><a id="registerPushedFormula(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>registerPushedFormula</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;registerPushedFormula&#8203;(<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&nbsp;pPushResult)</pre>
+<div class="block">overridden in sub-class.</div>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getModel()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModelAssignments()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModelAssignments</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;getModelAssignments()
+                                                         throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getModelAssignments()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get a list of satisfying assignments. This is equivalent to <code>
+ ImmutableList.copyOf(getModel())</code>, but removes the need for calling <a href="../../api/Model.html#close()"><code>Model.close()</code></a>.
+
+ <p>Note that if you need to iterate multiple times over the model it may be more efficient to
+ use this method instead of <a href="../../api/BasicProverEnvironment.html#getModel()"><code>BasicProverEnvironment.getModel()</code></a> (depending on the solver).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUnsatCore</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getUnsatCore()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get an unsat core. This should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that
+ returned <code>false</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="unsatCoreOverAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unsatCoreOverAssumptions</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;&nbsp;unsatCoreOverAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pAssumptions)
+                                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions. Does NOT require the <a href="../../api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE"><code>SolverContext.ProverOptions.GENERATE_UNSAT_CORE</code></a> option to work.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pAssumptions</code> - Selected assumptions</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Empty optional if the constraints with assumptions are satisfiable, subset of
+     assumptions which is unsatisfiable with the original constraints otherwise.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getStatistics()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get statistics for a concrete ProverEnvironment in a solver. The returned mapping is intended
+ to provide solver-internal statistics for only this instance. The keys can differ between
+ individual solvers.
+
+ <p>Calling the statistics several times for the same <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a>s returns
+ accumulated number, i.e., we currently do not provide any possibility to reset the statistics.
+ Calling the statistics for different <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a>s returns independent statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/SolverContext.html#getStatistics()"><code>SolverContext.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#close()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;pCallback,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;pImportant)
+             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                    <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="BasicProverWithAssumptionsWrapper.html" title="type parameter in BasicProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dd><code>pImportant</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html
new file mode 100644
index 0000000000..f20f79f02b
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html
@@ -0,0 +1,546 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>InterpolatingProverWithAssumptionsWrapper (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="InterpolatingProverWithAssumptionsWrapper (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></div>
+<h2 title="Class InterpolatingProverWithAssumptionsWrapper" class="title">Class InterpolatingProverWithAssumptionsWrapper&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper</a>&lt;T,&#8203;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.InterpolatingProverWithAssumptionsWrapper&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code>, <code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">InterpolatingProverWithAssumptionsWrapper&lt;T&gt;</span>
+extends <a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;T,&#8203;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;&gt;
+implements <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></h3>
+<code><a href="BasicProverWithAssumptionsWrapper.html#delegate">delegate</a>, <a href="BasicProverWithAssumptionsWrapper.html#solverAssumptionsAsFormula">solverAssumptionsAsFormula</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.api.FormulaManager)">InterpolatingProverWithAssumptionsWrapper</a></span>&#8203;(<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&nbsp;pDelegate,
+                                         <a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#clearAssumptions()">clearAssumptions</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInterpolant(java.util.Collection)">getInterpolant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&nbsp;pFormulasOfA)</code></th>
+<td class="colLast">
+<div class="block">Get an interpolant for two groups of formulas.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSeqInterpolants(java.util.List)">getSeqInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;&nbsp;pPartitionedFormulas)</code></th>
+<td class="colLast">
+<div class="block">This method returns interpolants of an 'inductive sequence'.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;&nbsp;pPartitionedFormulas,
+                   int[]&nbsp;pStartOfSubTree)</code></th>
+<td class="colLast">
+<div class="block">Compute a sequence of interpolants.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#registerPushedFormula(T)">registerPushedFormula</a></span>&#8203;(<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&nbsp;pPushResult)</code></th>
+<td class="colLast">
+<div class="block">overridden in sub-class.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></h3>
+<code><a href="BasicProverWithAssumptionsWrapper.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="BasicProverWithAssumptionsWrapper.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="BasicProverWithAssumptionsWrapper.html#close()">close</a>, <a href="BasicProverWithAssumptionsWrapper.html#getModel()">getModel</a>, <a href="BasicProverWithAssumptionsWrapper.html#getModelAssignments()">getModelAssignments</a>, <a href="BasicProverWithAssumptionsWrapper.html#getStatistics()">getStatistics</a>, <a href="BasicProverWithAssumptionsWrapper.html#getUnsatCore()">getUnsatCore</a>, <a href="BasicProverWithAssumptionsWrapper.html#isUnsat()">isUnsat</a>, <a href="BasicProverWithAssumptionsWrapper.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="BasicProverWithAssumptionsWrapper.html#pop()">pop</a>, <a href="BasicProverWithAssumptionsWrapper.html#push()">push</a>, <a href="BasicProverWithAssumptionsWrapper.html#size()">size</a>, <a href="BasicProverWithAssumptionsWrapper.html#toString()">toString</a>, <a href="BasicProverWithAssumptionsWrapper.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../../api/BasicProverEnvironment.html#close()">close</a>, <a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../../api/BasicProverEnvironment.html#pop()">pop</a>, <a href="../../api/BasicProverEnvironment.html#push()">push</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../../api/BasicProverEnvironment.html#size()">size</a>, <a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.InterpolatingProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></h3>
+<code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants0(java.util.List)">getSeqInterpolants0</a>, <a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants0(java.util.List,int%5B%5D)">getTreeInterpolants0</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>InterpolatingProverWithAssumptionsWrapper</h4>
+<pre>public&nbsp;InterpolatingProverWithAssumptionsWrapper&#8203;(<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&nbsp;pDelegate,
+                                                 <a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getInterpolant(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getInterpolant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getInterpolant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&nbsp;pFormulasOfA)
+                              throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">Get an interpolant for two groups of formulas. This should be called only immediately after an
+ <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>true</code>.
+
+ <p>There is no direct guarantee that the interpolants returned are part of an inductive
+ sequence', however this seems to work for most solvers as long as the same proof is used, i.e.
+ all interpolants are computed after the same SAT-check. If a solver does not use the same
+ internal proof for several interpolation queries (such as CVC5), then the returned interpolants
+ might not satisfy the sequence-criteria. We suggest the proper method <a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)"><code>InterpolatingProverEnvironment.getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a> for that case.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">getInterpolant</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pFormulasOfA</code> - A collection of values returned by <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(BooleanFormula)</code></a>. All the
+     corresponding formulas from group A, the remaining formulas form group B.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An interpolant for A and B</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSeqInterpolants(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSeqInterpolants</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getSeqInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;&nbsp;pPartitionedFormulas)
+                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">This method returns interpolants of an 'inductive sequence'. This property must be supported by
+ the interpolation-strategy of the underlying SMT-solver! Depending on the underlying SMT-solver
+ this method might be faster than N direct calls to getInterpolant().
+
+ <p>The prover stack should contain the partitioned formulas, but any order is allowed. For an
+ input of N partitions we return N-1 interpolants. Any asserted formula that is on the prover
+ stack and not part of the partitioned list, will be used for background theory and its symbols
+ can appear in any interpolant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">getSeqInterpolants</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a 'inductive sequence' of interpolants, such that the implication <code>AND(I_i, P_i)
+     =&gt; I_(i+1)</code> is satisfied for all i, where P_i is the conjunction of all formulas in
+     partition i.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getTreeInterpolants(java.util.List,int[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTreeInterpolants</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getTreeInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;&nbsp;pPartitionedFormulas,
+                                                int[]&nbsp;pStartOfSubTree)
+                                         throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">Compute a sequence of interpolants. The nesting array describes the start of the subtree for
+ tree interpolants. For inductive sequences of interpolants use a nesting array completely
+ filled with 0.
+
+ <p>Example:
+
+ <pre>
+ A  D
+ |  |
+ B  E
+ | /
+ C
+ |
+ F  H
+ | /
+ G
+
+ arrayIndex     = [0,1,2,3,4,5,6,7]  // only for demonstration, not needed
+ partition      = [A,B,D,E,C,F,H,G]  // post-order of tree
+ startOfSubTree = [0,0,2,2,0,0,6,0]  // index of left-most leaf of the current element
+ </pre>
+
+ <p>The prover stack should contain the partitioned formulas. For an input of N partitions
+ (nodes in the tree) we return N-1 interpolants (one interpolant for/below each node except the
+ root). Any asserted formula that is on the prover stack and not part of the partitioned list,
+ will be used for background theory and its symbols can appear in any interpolant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pPartitionedFormulas</code> - of formulas</dd>
+<dd><code>pStartOfSubTree</code> - The start of the subtree containing the formula at this index as root.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Tree interpolants respecting the nesting relation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="registerPushedFormula(java.lang.Object)">
+<!--   -->
+</a><a id="registerPushedFormula(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>registerPushedFormula</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;registerPushedFormula&#8203;(<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&nbsp;pPushResult)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="BasicProverWithAssumptionsWrapper.html#registerPushedFormula(T)">BasicProverWithAssumptionsWrapper</a></code></span></div>
+<div class="block">overridden in sub-class.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="BasicProverWithAssumptionsWrapper.html#registerPushedFormula(T)">registerPushedFormula</a></code>&nbsp;in class&nbsp;<code><a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>,&#8203;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="clearAssumptions()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>clearAssumptions</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;clearAssumptions()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="BasicProverWithAssumptionsWrapper.html#clearAssumptions()">clearAssumptions</a></code>&nbsp;in class&nbsp;<code><a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>,&#8203;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="InterpolatingProverWithAssumptionsWrapper.html" title="type parameter in InterpolatingProverWithAssumptionsWrapper">T</a>&gt;&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html
new file mode 100644
index 0000000000..484688cccd
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html
@@ -0,0 +1,332 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ProverWithAssumptionsWrapper (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ProverWithAssumptionsWrapper (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a></div>
+<h2 title="Class ProverWithAssumptionsWrapper" class="title">Class ProverWithAssumptionsWrapper</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>,&#8203;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.ProverWithAssumptionsWrapper</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code>, <code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">ProverWithAssumptionsWrapper</span>
+extends <a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>,&#8203;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&gt;
+implements <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></h3>
+<code><a href="BasicProverWithAssumptionsWrapper.html#delegate">delegate</a>, <a href="BasicProverWithAssumptionsWrapper.html#solverAssumptionsAsFormula">solverAssumptionsAsFormula</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.ProverEnvironment)">ProverWithAssumptionsWrapper</a></span>&#8203;(<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.BasicProverWithAssumptionsWrapper">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a></h3>
+<code><a href="BasicProverWithAssumptionsWrapper.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="BasicProverWithAssumptionsWrapper.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="BasicProverWithAssumptionsWrapper.html#clearAssumptions()">clearAssumptions</a>, <a href="BasicProverWithAssumptionsWrapper.html#close()">close</a>, <a href="BasicProverWithAssumptionsWrapper.html#getModel()">getModel</a>, <a href="BasicProverWithAssumptionsWrapper.html#getModelAssignments()">getModelAssignments</a>, <a href="BasicProverWithAssumptionsWrapper.html#getStatistics()">getStatistics</a>, <a href="BasicProverWithAssumptionsWrapper.html#getUnsatCore()">getUnsatCore</a>, <a href="BasicProverWithAssumptionsWrapper.html#isUnsat()">isUnsat</a>, <a href="BasicProverWithAssumptionsWrapper.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="BasicProverWithAssumptionsWrapper.html#pop()">pop</a>, <a href="BasicProverWithAssumptionsWrapper.html#push()">push</a>, <a href="BasicProverWithAssumptionsWrapper.html#registerPushedFormula(T)">registerPushedFormula</a>, <a href="BasicProverWithAssumptionsWrapper.html#size()">size</a>, <a href="BasicProverWithAssumptionsWrapper.html#toString()">toString</a>, <a href="BasicProverWithAssumptionsWrapper.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../../api/BasicProverEnvironment.html#close()">close</a>, <a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../../api/BasicProverEnvironment.html#pop()">pop</a>, <a href="../../api/BasicProverEnvironment.html#push()">push</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../../api/BasicProverEnvironment.html#size()">size</a>, <a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.ProverEnvironment)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ProverWithAssumptionsWrapper</h4>
+<pre>public&nbsp;ProverWithAssumptionsWrapper&#8203;(<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;pDelegate)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html
new file mode 100644
index 0000000000..3dd854ac49
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-summary.html
@@ -0,0 +1,182 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Wrapper-classes to guarantee identical behavior for all solvers. If a solver does not support
+ <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)"><code>BasicProverEnvironment.isUnsatWithAssumptions(java.util.Collection&lt;org.sosy_lab.java_smt.api.BooleanFormula&gt;)</code></a>, we wrap it in a
+ (subclass of) BasicProverWithAssumptionsWrapper, whose task it is to keep the assumptions as long
+ on the solver's stack as no other operation accesses it. It allows computing interpolants and
+ unsat cores. without direct support from the solver.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">BasicProverWithAssumptionsWrapper</a>&lt;T,&#8203;P extends <a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">InterpolatingProverWithAssumptionsWrapper</a>&lt;T&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper">ProverWithAssumptionsWrapper</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-tree.html b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-tree.html
new file mode 100644
index 0000000000..ede76281e2
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-tree.html
@@ -0,0 +1,167 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">BasicProverWithAssumptionsWrapper</span></a>&lt;T,&#8203;P&gt; (implements org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">InterpolatingProverWithAssumptionsWrapper</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">ProverWithAssumptionsWrapper</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>)</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html
new file mode 100644
index 0000000000..3f92bc67e5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html
@@ -0,0 +1,524 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingArrayFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingArrayFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingArrayFormulaManager" class="title">Class DebuggingArrayFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingArrayFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingArrayFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.ArrayFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingArrayFormulaManager</a></span>&#8203;(<a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>&nbsp;pDelegate,
+                            org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence</a></span>&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+           <a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType</a></span>&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType</a></span>&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(FTI,FTE,TE)">makeArray</a></span>&#8203;(FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType,
+         TE&nbsp;defaultElement)</code></th>
+<td class="colLast">
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;<br><a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(java.lang.String,FTI,FTE)">makeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         FTI&nbsp;pIndexType,
+         FTE&nbsp;pElementType)</code></th>
+<td class="colLast">
+<div class="block">Declare a new array with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+         <a href="../../api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Declare a new array with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>TE</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select</a></span>&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+      TI&nbsp;pIndex)</code></th>
+<td class="colLast">
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store</a></span>&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+     TI&nbsp;pIndex,
+     TE&nbsp;pValue)</code></th>
+<td class="colLast">
+<div class="block">Store a value into a cell of the specified array.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.ArrayFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></h3>
+<code><a href="../../api/ArrayFormulaManager.html#makeArray(org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType,TE)">makeArray</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.ArrayFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingArrayFormulaManager</h4>
+<pre>public&nbsp;DebuggingArrayFormulaManager&#8203;(<a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>&nbsp;pDelegate,
+                                    org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="select(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>select</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;TE&nbsp;select&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                               TI&nbsp;pIndex)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Read a value that is stored in the array at the specified position.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#select(org.sosy_lab.java_smt.api.ArrayFormula,TI)">select</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array from which to read</dd>
+<dd><code>pIndex</code> - The position from which to read</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the result of the "read"</dd>
+</dl>
+</li>
+</ul>
+<a id="store(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>store</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;store&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray,
+                                                                                     TI&nbsp;pIndex,
+                                                                                     TE&nbsp;pValue)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Store a value into a cell of the specified array.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#store(org.sosy_lab.java_smt.api.ArrayFormula,TI,TE)">store</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pArray</code> - The array to which to write</dd>
+<dd><code>pIndex</code> - The position to which to write</dd>
+<dd><code>pValue</code> - The value that should be written</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A formula that represents the "write"</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeArray(java.lang.String,FTI,FTE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                                                                                             FTI&nbsp;pIndexType,
+                                                                                                                                                             FTE&nbsp;pElementType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Declare a new array with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#makeArray(java.lang.String,FTI,FTE)">makeArray</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dd><code>pIndexType</code> - The type of the array index</dd>
+<dd><code>pElementType</code> - The type of the array elements</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                                                         <a href="../../api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.ArrayFormulaType</a>&lt;TI,&#8203;TE&gt;&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Declare a new array with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#makeArray(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.ArrayFormulaType)">makeArray</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dd><code>type</code> - The type of the array, consisting of index type and element type</dd>
+</dl>
+</li>
+</ul>
+<a id="makeArray(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makeArray(FTI,FTE,TE)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeArray</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;FTI extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;,&#8203;FTE extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&gt;&nbsp;<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;makeArray&#8203;(FTI&nbsp;pIndexType,
+                                                                                                                                                             FTE&nbsp;pElementType,
+                                                                                                                                                             TE&nbsp;defaultElement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#makeArray(FTI,FTE,TE)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Create a new array constant with values initialized to defaultElement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#makeArray(FTI,FTE,TE)">makeArray</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+<dd><code>defaultElement</code> - The default value of all entries in the array.</dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray1,
+                                                                                <a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;TE&gt;&nbsp;pArray2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/ArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">ArrayFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>ArrayFormula</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.ArrayFormula,org.sosy_lab.java_smt.api.ArrayFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIndexType</h4>
+<pre class="methodSignature">public&nbsp;&lt;TI extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TI&gt;&nbsp;getIndexType&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;TI,&#8203;?&gt;&nbsp;pArray)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#getIndexType(org.sosy_lab.java_smt.api.ArrayFormula)">getIndexType</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getElementType</h4>
+<pre class="methodSignature">public&nbsp;&lt;TE extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;TE&gt;&nbsp;getElementType&#8203;(<a href="../../api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormula</a>&lt;?,&#8203;TE&gt;&nbsp;pArray)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/ArrayFormulaManager.html#getElementType(org.sosy_lab.java_smt.api.ArrayFormula)">getElementType</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html
new file mode 100644
index 0000000000..78adf58588
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html
@@ -0,0 +1,1305 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingBitvectorFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingBitvectorFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingBitvectorFormulaManager" class="title">Class DebuggingBitvectorFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingBitvectorFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingBitvectorFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.BitvectorFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingBitvectorFormulaManager</a></span>&#8203;(<a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>&nbsp;pDelegate,
+                                org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the addition of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;prefix,
+      <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;suffix)</code></th>
+<td class="colLast">
+<div class="block">Concatenate two bitvectors.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</code></th>
+<td class="colLast">
+<div class="block">All given bitvectors are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+      <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the division for two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+     <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+      int&nbsp;extensionBits,
+      boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Extend a bitvector to the left (add most significant bits).</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+       int&nbsp;msb,
+       int&nbsp;lsb)</code></th>
+<td class="colLast">
+<div class="block">Extract a range of bits from a bitvector.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+               <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+               boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+           <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+           boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+            <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+            boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+        boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Compare the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,long)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             long&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,java.math.BigInteger)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert a number into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector</a></span>&#8203;(int&nbsp;length,
+             <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(int,java.lang.String)">makeVariable</a></span>&#8203;(int&nbsp;length,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name and bitwidth.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="../../api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the multiplication of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1".</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+  <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+         <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator,
+         boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="../../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>BitvectorFormulaManager.divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          int&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+           int&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+           <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+         <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+          <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift,
+          boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">This method returns a term representing the right shift (towards least-significant bit) of
+ number by toShift.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+       <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator)</code></th>
+<td class="colLast">
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+        <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the subtraction of the given bitvectors.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                boolean&nbsp;signed)</code></th>
+<td class="colLast">
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BitvectorFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></h3>
+<code><a href="../../api/BitvectorFormulaManager.html#modulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">modulo</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.BitvectorFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingBitvectorFormulaManager</h4>
+<pre>public&nbsp;DebuggingBitvectorFormulaManager&#8203;(<a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>&nbsp;pDelegate,
+                                        org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeBitvector(int,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                                      long&nbsp;pI)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,long)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,long)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvector(int,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;pI)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert a number into a bitvector with given size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,java.math.BigInteger)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeBitvector&#8203;(int&nbsp;length,
+                                      <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;pI)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert/Cast/Interpret a numeral formula into a bitvector with given size.
+
+ <p>If the numeral formula is too large for the given length, we cut off the largest bits and
+ only use the lest significant bits.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#makeBitvector(int,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">makeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;pI,
+                                                      boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Convert/Cast/Interpret a signed/unsigned bitvector formula as an integer formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">toIntegerFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(int,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(int&nbsp;length,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name and bitwidth.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;makeVariable&#8203;(<a href="../../api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.BitvectorType</a>&nbsp;type,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType.BitvectorType,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BitvectorFormulaManager.html#makeVariable(int,java.lang.String)"><code>BitvectorFormulaManager.makeVariable(int, String)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getLength</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getLength&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the length of a bitvector, also denoted as bit-size.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#getLength(org.sosy_lab.java_smt.api.BitvectorFormula)">getLength</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;negate&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the negated number, i.e., it is multiplied by "-1". The given number is
+ interpreted as signed bitvector and corresponds to "2^BITSIZE - number". The result has the
+ same length as the given number.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#negate(org.sosy_lab.java_smt.api.BitvectorFormula)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;add&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                            <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the addition of the given bitvectors. The result has the same length as the
+ given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#add(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 + number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;subtract&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                                 <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the subtraction of the given bitvectors. The result has the same length as
+ the given parameters. There can be an overflow, i.e., as one would expect from bitvector logic.
+ There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#subtract(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;divide&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+                               <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator,
+                               boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the division for two bitvector formulas.
+
+ <p>For signed bitvectors, the result is rounded towards zero (also called "truncated integer
+ division", similar to the division in the C99 standard), e.g., a user can assume the following
+ equations:
+
+ <ul>
+   <li>10 / 5 = 2
+   <li>10 / 3 = 3
+   <li>10 / (-3) = -3
+   <li>-10 / 5 = -2
+   <li>-10 / 3 = -3
+   <li>-10 / (-3) = 3
+ </ul>
+
+ <p>If the divisor evaluates to zero (division-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the division is defined as:
+
+ <ul>
+   <li>"-1" interpreted as bitvector (i.e., all bits set to "1"), if the dividend is
+       non-negative, and
+   <li>"1" interpreted as bitvector (i.e., all bits set to "0", except the last bit), if the
+       dividend is negative.
+ </ul>
+
+ <p>We refer to the SMTLIB standard version 2.6 for the division and remainder operators in BV
+ theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numerator</code> - dividend of the operation.</dd>
+<dd><code>denominator</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>smodulo</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;smodulo&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+                                <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the two complement signed remainder for the Euclidean division (modulo) of
+ two bitvector formulas.
+
+ <p>The sign of the result follows the sign of the divisor, i.e. the quotient calculated in the
+ modulo operation is rounded in such a way that the result of the smodulo operation follows the
+ sign of the divisor, e.g., a user can assume the following equations, with bitvectors
+ interpreted as signed decimal numbers and % representing signed modulo, to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == -2
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == 2
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.
+
+ <p>For unsigned modulo, we refer to the unsigned remainder method.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#smodulo(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">smodulo</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numerator</code> - dividend of the operation.</dd>
+<dd><code>denominator</code> - divisor of the operation.</dd>
+</dl>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;remainder&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;numerator,
+                                  <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;denominator,
+                                  boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the remainder for two bitvector formulas using the <a href="../../api/BitvectorFormulaManager.html#divide(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)"><code>BitvectorFormulaManager.divide(BitvectorFormula, BitvectorFormula, boolean)</code></a> operation.
+
+ <p>For unsigned bitvectors, this returns the remainder of unsigned bitvector division.
+
+ <p>For signed bitvectors, the sign of the result follows the sign of the dividend, i.e. the
+ quotient of the division is rounded in such a way that the sign of the result of the remainder
+ operation follows the sign of the dividend, e.g., a user can assume the following equations,
+ with bitvectors interpreted as signed decimal numbers and % representing signed remainder
+ (similar to the C programming language), to hold:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == 1
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == -1
+   <li>-10 % (-3) == -1
+ </ul>
+
+ <p>If the divisor evaluates to zero (modulo-by-zero), either directly as value or indirectly
+ via an additional constraint, then the result of the modulo operation is defined as the
+ dividend itself. We refer to the SMTLIB standard version 2.6 for the division and remainder
+ operators in BV theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#remainder(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">remainder</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numerator</code> - dividend of the operation. The sign bit is carried over from this bitvector for
+     signed operations.</dd>
+<dd><code>denominator</code> - divisor of the operation.</dd>
+<dd><code>signed</code> - whether to interpret all operands as signed or as unsigned numbers.</dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;multiply&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                                 <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the multiplication of the given bitvectors. The result has the same length
+ as the given parameters. There can be an overflow, i.e., as one would expect from bitvector
+ logic. There is no difference in signed and unsigned numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#multiply(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 - number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                            <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise equality of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#equal(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 == number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                                  <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                                  boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                                      <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                                      boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &gt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                               <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                               boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt; number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number1,
+                                   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number2,
+                                   boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Compare the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number1</code> - a Formula</dd>
+<dd><code>number2</code> - a Formula</dd>
+<dd><code>signed</code> - interpret the bitvectors as signed numbers instead of unsigned numbers</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>number1 &lt;= number2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;not&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise complement of the given bitvector.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#not(org.sosy_lab.java_smt.api.BitvectorFormula)">not</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits</code> - Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>~bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;and&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                            <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise AND of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#and(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;or&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                           <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise OR of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#or(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;xor&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits1,
+                            <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns the bit-wise XOR of the given bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#xor(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">xor</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 ^ bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftRight&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift,
+                                   boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the right shift (towards least-significant bit) of
+ number by toShift. The result has the same length as the given number. On the left side, we
+ fill up the most significant bits with ones (i.e., arithmetic shift), if the number is signed
+ and negative, else we fill up with zeroes. For "toShift &gt;= bitsize", we return a bitvector
+ with value zero, if number was zero or positive, or all bits set to one, if negative.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#shiftRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula,boolean)">shiftRight</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shiftLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;shiftLeft&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                  <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toShift)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left shift (towards most-significant bit) of number
+ by toShift. The result has the same length as the given number. On the right side, we fill up
+ the least significant bits with zeroes. For "toShift &gt;= bitsize", we return a bitvector with
+ value zero.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#shiftLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">shiftLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                   int&nbsp;toRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>toRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateLeft</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateLeft&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                   <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the left rotation (towards most-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#rotateLeft(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateLeft</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>toRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                    int&nbsp;toRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,int)">rotateRight</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>toRotate</code> - the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rotateRight</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;rotateRight&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                    <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toRotate)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">This method returns a term representing the right rotation (towards least-significant bit) of
+ number by toRotate. The result has the same length as the given number. For "toRotate % bitsize
+ == 0", we return the number itself.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#rotateRight(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">rotateRight</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dd><code>toRotate</code> - unsigned bitvector, represents the number of bits to be moved</dd>
+</dl>
+</li>
+</ul>
+<a id="concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;concat&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;prefix,
+                               <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;suffix)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Concatenate two bitvectors.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#concat(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.BitvectorFormula)">concat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extract&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                int&nbsp;msb,
+                                int&nbsp;lsb)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Extract a range of bits from a bitvector. We require <code>0 &lt;= lsb &lt;= msb &lt; bitsize</code>.
+
+ <p>If msb equals lsb, then a single bit will be returned, i.e., the bit from the given
+ position. If lsb equals 0 and msb equals bitsize-1, then the complete bitvector will be
+ returned.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#extract(org.sosy_lab.java_smt.api.BitvectorFormula,int,int)">extract</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - from where the bits are extracted.</dd>
+<dd><code>msb</code> - Upper index for the most significant bit. Must be in interval from lsb to bitsize-1.</dd>
+<dd><code>lsb</code> - Lower index for the least significant bit. Must be in interval from 0 to msb.</dd>
+</dl>
+</li>
+</ul>
+<a id="extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extend</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;extend&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                               int&nbsp;extensionBits,
+                               boolean&nbsp;signed)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">Extend a bitvector to the left (add most significant bits). If signed is set and the given
+ number is negative, then the bit "1" will be added several times, else "0".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#extend(org.sosy_lab.java_smt.api.BitvectorFormula,int,boolean)">extend</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>number</code> - The bitvector to extend.</dd>
+<dd><code>extensionBits</code> - How many bits to add.</dd>
+<dd><code>signed</code> - Whether the extension should depend on the sign bit.</dd>
+</dl>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&gt;&nbsp;pBits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BitvectorFormulaManager.html#distinct(java.util.List)">BitvectorFormulaManager</a></code></span></div>
+<div class="block">All given bitvectors are pairwise unequal.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BitvectorFormulaManager.html#distinct(java.util.List)">distinct</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html
new file mode 100644
index 0000000000..7f7ba38c3d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html
@@ -0,0 +1,894 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingBooleanFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingBooleanFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingBooleanFormulaManager" class="title">Class DebuggingBooleanFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingBooleanFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingBooleanFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingBooleanFormulaManager</a></span>&#8203;(<a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;pDelegate,
+                              org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(java.util.Collection)">and</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+   <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+           <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;cond,
+          T&nbsp;f1,
+          T&nbsp;f2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing <code>IF cond THEN f1 ELSE f2</code>.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+           <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "FALSE".</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Check, if the formula is the formula "TRUE".</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeFalse()">makeFalse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeTrue()">makeTrue</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#not(org.sosy_lab.java_smt.api.BooleanFormula)">not</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing a negation of the argument.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(java.util.Collection)">or</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+  <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunction()">toConjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunction()">toDisjunction</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                 boolean&nbsp;flatten)</code></th>
+<td class="colLast">
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                    <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+     <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with the given visitor.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+   <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</code></th>
+<td class="colLast">
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BooleanFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></h3>
+<code><a href="../../api/BooleanFormulaManager.html#makeBoolean(boolean)">makeBoolean</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.BooleanFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingBooleanFormulaManager</h4>
+<pre>public&nbsp;DebuggingBooleanFormulaManager&#8203;(<a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;pDelegate,
+                                      org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeTrue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeTrue</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeTrue()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#makeTrue()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Shortcut for <code>makeBoolean(true)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#makeTrue()">makeTrue</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeFalse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeFalse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeFalse()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#makeFalse()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Shortcut for <code>makeBoolean(false)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#makeFalse()">makeFalse</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#makeVariable(java.lang.String)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+                                  <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing an equivalence of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula1</code> - a Formula</dd>
+<dd><code>formula2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>formula1 &lt;-&gt; formula2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>implication</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;implication&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula1,
+                                  <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#implication(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">implication</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>formula1 =&gt; formula2</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isTrue</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isTrue&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Check, if the formula is the formula "TRUE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==1" are recognized and rewritten as
+ "TRUE", and thus such formulas might also be matched.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#isTrue(org.sosy_lab.java_smt.api.BooleanFormula)">isTrue</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isFalse</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isFalse&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Check, if the formula is the formula "FALSE". This does not include a satisfiability check, but
+ only a syntactical matching. However, depending on the SMT solver, there might be some
+ pre-processing of formulas such that trivial cases like "1==2" are recognized and rewritten as
+ "FALSE", and thus such formulas might also be matched.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#isFalse(org.sosy_lab.java_smt.api.BooleanFormula)">isFalse</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ifThenElse</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;ifThenElse&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;cond,
+                                        T&nbsp;f1,
+                                        T&nbsp;f2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing <code>IF cond THEN f1 ELSE f2</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#ifThenElse(org.sosy_lab.java_smt.api.BooleanFormula,T,T)">ifThenElse</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>cond</code> - a Formula</dd>
+<dd><code>f1</code> - a Formula</dd>
+<dd><code>f2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>(IF cond THEN f1 ELSE f2)</dd>
+</dl>
+</li>
+</ul>
+<a id="not(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>not</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;not&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing a negation of the argument.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#not(org.sosy_lab.java_smt.api.BooleanFormula)">not</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>!bits</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                          <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing an AND of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 &amp; bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="and(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#and(java.util.Collection)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="and(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>and</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;and&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula...)">and</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#and(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.and(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="toConjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunction</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunction()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#toConjunction()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a conjunction of all elements in the stream.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#toConjunction()">toConjunction</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                         <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing an OR of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>bits1</code> - a Formula</dd>
+<dd><code>bits2</code> - a Formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd><code>bits1 | bits2</code></dd>
+</dl>
+</li>
+</ul>
+<a id="or(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;bits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#or(java.util.Collection)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="or(org.sosy_lab.java_smt.api.BooleanFormula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>or</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;or&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>...&nbsp;bits)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula...)">or</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BooleanFormulaManager.html#or(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)"><code>BooleanFormulaManager.or(BooleanFormula, BooleanFormula)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunction()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toDisjunction</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink">Collector</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;?,&#8203;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunction()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#toDisjunction()">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a stream <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/stream/Collector.html?is-external=true" title="class or interface in java.util.stream" class="externalLink"><code>Collector</code></a> that creates a disjunction of all elements in the stream.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#toDisjunction()">toDisjunction</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>xor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;xor&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits1,
+                          <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;bits2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Creates a formula representing XOR of the two arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#xor(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">xor</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pFormula,
+                   <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;&nbsp;visitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula with the given visitor.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#visit(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visit</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                             <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;<a href="../../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaVisitor)">visitRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transformRecursively&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                           <a href="../../api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">BooleanFormulaTransformationVisitor</a>&nbsp;pVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>BooleanFormulaVisitor</code></a>. The arguments each
+ visitor method receives are <b>already</b> transformed.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#transformRecursively(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.visitors.BooleanFormulaTransformationVisitor)">transformRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toConjunctionArgs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toConjunctionArgs&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                             boolean&nbsp;flatten)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a set of formulas such that a conjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A /\ B /\ C</code>: <code>A, B, C</code>
+   <li>For "true": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#toConjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toConjunctionArgs</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+<a id="toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toDisjunctionArgs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;toDisjunctionArgs&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f,
+                                             boolean&nbsp;flatten)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">BooleanFormulaManager</a></code></span></div>
+<div class="block">Return a set of formulas such that a disjunction over them is equivalent to the input formula.
+
+ <p>Example output:
+
+ <ul>
+   <li>For conjunction <code>A \/ B \/ C</code>: <code>A, B, C</code>
+   <li>For "false": empty set.
+   <li>For anything else: singleton set consisting of the input formula.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BooleanFormulaManager.html#toDisjunctionArgs(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">toDisjunctionArgs</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></dd>
+<dd><code>flatten</code> - If <code>true</code>, flatten recursively.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html
new file mode 100644
index 0000000000..be6e56620c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html
@@ -0,0 +1,414 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingEnumerationFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingEnumerationFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingEnumerationFormulaManager" class="title">Class DebuggingEnumerationFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingEnumerationFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingEnumerationFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.EnumerationFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingEnumerationFormulaManager</a></span>&#8203;(<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>&nbsp;pDelegate,
+                                  org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;ppElementNames)</code></th>
+<td class="colLast">
+<div class="block">Declare an enumeration.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></span>&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+           <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.EnumerationFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></h3>
+<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.EnumerationFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingEnumerationFormulaManager</h4>
+<pre>public&nbsp;DebuggingEnumerationFormulaManager&#8203;(<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>&nbsp;pDelegate,
+                                          org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareEnumeration(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;ppElementNames)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Declare an enumeration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pName</code> - the unique name to identify the new enumeration type.</dd>
+<dd><code>ppElementNames</code> - names for all individual elements of this enumeration type.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeConstant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a constant of given enumeration type with exactly the given name. This constant
+ (symbol) needs to be an element from the given enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+                                  <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html
new file mode 100644
index 0000000000..50134f96f5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html
@@ -0,0 +1,1406 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingFloatingPointFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingFloatingPointFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingFloatingPointFormulaManager" class="title">Class DebuggingFloatingPointFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingFloatingPointFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingFloatingPointFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FloatingPointFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingFloatingPointFormulaManager</a></span>&#8203;(<a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>&nbsp;pDelegate,
+                                    org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+   <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+          <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for assigning one floating-point term to another.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+        boolean&nbsp;signed,
+        <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+        boolean&nbsp;signed,
+        <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+        <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+      boolean&nbsp;signed,
+      <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+      boolean&nbsp;signed,
+      <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+      <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Build a formula of compatible type from a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+      <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+      <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+      <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                    <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN).</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                 <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+               <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+           <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+            <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity</a></span>&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN</a></span>&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(double&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+          boolean&nbsp;signBit,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+          <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+          <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity</a></span>&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i34" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i35" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i36" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i37" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i38" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i39" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i40" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;dividend,
+         <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divisor)</code></th>
+<td class="colLast">
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y.</div>
+</td>
+</tr>
+<tr id="i41" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula,
+     <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i42" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i43" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+    <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i44" class="altColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i45" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+        <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+        <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i46" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FloatingPointFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingFloatingPointFormulaManager</h4>
+<pre>public&nbsp;DebuggingFloatingPointFormulaManager&#8203;(<a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>&nbsp;pDelegate,
+                                            org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given double value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(double&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given double value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(double,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given BigDecimal value with the specified
+ type and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigDecimal,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given string value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given string value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;n,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type,
+                                       <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula representing the given Rational value with the specified type
+ and rounding mode.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;exponent,
+                                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;mantissa,
+                                       boolean&nbsp;signBit,
+                                       <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a floating point formula from the given exponent, mantissa, and sign bit with the
+ specified type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNumber(java.math.BigInteger,java.math.BigInteger,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>exponent</code> - the exponent part of the floating point number</dd>
+<dd><code>mantissa</code> - the mantissa part of the floating point number</dd>
+<dd><code>signBit</code> - the sign bit of the floating point number, e.g., true for negative numbers</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                         <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePlusInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makePlusInfinity&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makePlusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makePlusInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMinusInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeMinusInfinity&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeMinusInfinity(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeMinusInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNaN</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;makeNaN&#8203;(<a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;type)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#makeNaN(org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">makeNaN</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+                                    boolean&nbsp;signed,
+                                    <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a formula of compatible type from a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType)">castTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of floating-point type</dd>
+<dd><code>signed</code> - if a <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+</dl>
+</li>
+</ul>
+<a id="castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castTo</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;castTo&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;source,
+                                    boolean&nbsp;signed,
+                                    <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;targetType,
+                                    <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a formula of compatible type from a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a>.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#castTo(org.sosy_lab.java_smt.api.FloatingPointFormula,boolean,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of floating-point type</dd>
+<dd><code>signed</code> - if a <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as target, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+</dl>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+                                     boolean&nbsp;signed,
+                                     <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula. This method uses the
+ default rounding mode.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">castFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of compatible type</dd>
+<dd><code>signed</code> - if a <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+</dl>
+</li>
+</ul>
+<a id="castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>castFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;castFrom&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;source,
+                                     boolean&nbsp;signed,
+                                     <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;targetType,
+                                     <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Build a <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>FloatingPointFormula</code></a> from another compatible formula.
+
+ <p>Compatible formula types are all numeral types and (signed/unsigned) bitvector types. It is
+ also possible to cast a floating-point number into another floating-point type. We do not
+ support casting from boolean or array types. We try to keep an exact representation, however
+ fall back to rounding if needed.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">castFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>source</code> - the source formula of compatible type</dd>
+<dd><code>signed</code> - if a <a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BitvectorFormula</code></a> is given as source, we additionally use this flag.
+     Otherwise, we ignore it.</dd>
+<dd><code>targetType</code> - the type of the resulting formula</dd>
+<dd><code>pFloatingPointRoundingMode</code> - if rounding is needed, we apply the rounding mode.</dd>
+</dl>
+</li>
+</ul>
+<a id="fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fromIeeeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;fromIeeeBitvector&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;number,
+                                              <a href="../../api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.FloatingPointType</a>&nbsp;pTargetType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a formula that interprets the given bitvector as a floating-point value in the IEEE
+ format, according to the given type. The sum of the sizes of exponent and mantissa of the
+ target type plus 1 (for the sign bit) needs to be equal to the size of the bitvector.
+
+ <p>Note: This method will return a value that is (numerically) far away from the original
+ value. This method is completely different from <a href="../../api/FloatingPointFormulaManager.html#castFrom(org.sosy_lab.java_smt.api.Formula,boolean,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)"><code>FloatingPointFormulaManager.castFrom(org.sosy_lab.java_smt.api.Formula, boolean, org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)</code></a>, which will produce a
+ floating-point value close to the numeral value.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#fromIeeeBitvector(org.sosy_lab.java_smt.api.BitvectorFormula,org.sosy_lab.java_smt.api.FormulaType.FloatingPointType)">fromIeeeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIeeeBitvector</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;toIeeeBitvector&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a formula that produces a representation of the given floating-point value as a
+ bitvector conforming to the IEEE format. The size of the resulting bitvector is the sum of the
+ sizes of the exponent and mantissa of the input formula plus 1 (for the sign bit).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#toIeeeBitvector(org.sosy_lab.java_smt.api.FloatingPointFormula)">toIeeeBitvector</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>round</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;round&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula,
+                                  <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#round(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">round</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;negate&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#negate(org.sosy_lab.java_smt.api.FloatingPointFormula)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>abs</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;abs&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#abs(org.sosy_lab.java_smt.api.FloatingPointFormula)">abs</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>max</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;max&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#max(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">max</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>min</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;min&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#min(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">min</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula)">sqrt</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sqrt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;sqrt&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number,
+                                 <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;roundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#sqrt(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">sqrt</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;add&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#add(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;subtract&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                     <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#subtract(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divide&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                   <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#divide(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;multiply&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                     <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2,
+                                     <a href="../../api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api">FloatingPointRoundingMode</a>&nbsp;pFloatingPointRoundingMode)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#multiply(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointRoundingMode)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>remainder</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;remainder&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;dividend,
+                                      <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;divisor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">remainder: x - y * n, where n in Z is nearest to x/y. The result can be negative even for two
+ positive arguments, e.g. "rem(5, 4) == 1" and "rem(5, 6) == -1", as opposed to integer modulo
+ operators.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#remainder(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">remainder</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assignment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;assignment&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                 <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a term for assigning one floating-point term to another. This means both terms are
+ considered equal afterwards. This method is the same as the method <code>equal</code> for other
+ theories.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">assignment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equalWithFPSemantics</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equalWithFPSemantics&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                           <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">Create a term for comparing the equality of two floating-point terms, according to standard
+ floating-point semantics (i.e., NaN != NaN). Be careful to not use this method when you really
+ need <a href="../../api/FloatingPointFormulaManager.html#assignment(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)"><code>FloatingPointFormulaManager.assignment(FloatingPointFormula, FloatingPointFormula)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#equalWithFPSemantics(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">equalWithFPSemantics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                  <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                      <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                               <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number1,
+                                   <a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.FloatingPointFormula,org.sosy_lab.java_smt.api.FloatingPointFormula)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNaN</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNaN&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isNaN(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNaN</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isInfinity</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isInfinity&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isInfinity(org.sosy_lab.java_smt.api.FloatingPointFormula)">isInfinity</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isZero</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isZero&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isZero(org.sosy_lab.java_smt.api.FloatingPointFormula)">isZero</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isNormal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNormal&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isNormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNormal</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSubnormal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isSubnormal&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isSubnormal(org.sosy_lab.java_smt.api.FloatingPointFormula)">isSubnormal</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isNegative</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;isNegative&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">FloatingPointFormulaManager</a></code></span></div>
+<div class="block">checks whether a formula is negative, including -0.0.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FloatingPointFormulaManager.html#isNegative(org.sosy_lab.java_smt.api.FloatingPointFormula)">isNegative</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html
new file mode 100644
index 0000000000..a39c982fd7
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html
@@ -0,0 +1,1105 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingFormulaManager" class="title">Class DebuggingFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingFormulaManager</a></span>&#8203;(<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pDelegate,
+                       org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input,
+           <a href="../../api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)</code></th>
+<td class="colLast">
+<div class="block">Apply a tactic which performs formula transformation.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pT)</code></th>
+<td class="colLast">
+<div class="block">Serialize an input formula to an SMT-LIB format.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#escape(java.lang.String)">escape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getArrayFormulaManager()">getArrayFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Array-Theory.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBitvectorFormulaManager()">getBitvectorFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Bitvector-Theory.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getBooleanFormulaManager()">getBooleanFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Boolean-Theory.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getEnumerationFormulaManager()">getEnumerationFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFloatingPointFormulaManager()">getFloatingPointFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Floating-Point-Theory.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType(T)">getFormulaType</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Returns the type of the given Formula.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getIntegerFormulaManager()">getIntegerFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Integer-Theory.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getQuantifiedFormulaManager()">getQuantifiedFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the interface for handling quantifiers.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getRationalFormulaManager()">getRationalFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Rational-Theory.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSLFormulaManager()">getSLFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStringFormulaManager()">getStringFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the String Theory.</div>
+</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getUFManager()">getUFManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isValidName(java.lang.String)">isValidName</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.</div>
+</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication</a></span>&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication</a></span>&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+               <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create a function application to the given list of arguments.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable</a></span>&#8203;(<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parse(java.lang.String)">parse</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)</code></th>
+<td class="colLast">
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#simplify(T)">simplify</a></span>&#8203;(T&nbsp;input)</code></th>
+<td class="colLast">
+<div class="block">Simplify an input formula, while ensuring equivalence.</div>
+</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substitute(T,java.util.Map)">substitute</a></span>&#8203;(T&nbsp;f,
+          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;fromToMapping)</code></th>
+<td class="colLast">
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.</div>
+</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively</a></span>&#8203;(T&nbsp;f,
+                    <a href="../../api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+             <a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</code></th>
+<td class="colLast">
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.</div>
+</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#unescape(java.lang.String)">unescape</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</code></th>
+<td class="colLast">
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+     <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula with a given visitor.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</code></th>
+<td class="colLast">
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingFormulaManager</h4>
+<pre>public&nbsp;DebuggingFormulaManager&#8203;(<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pDelegate,
+                               org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getIntegerFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getIntegerFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;getIntegerFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getIntegerFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Integer-Theory. Because most SAT-solvers support automatic casting between Integer-
+ and Rational-Theory, the Integer- and the RationalFormulaManager both return the same Formulas
+ for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL and others.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getIntegerFormulaManager()">getIntegerFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getRationalFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getRationalFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;getRationalFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getRationalFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Rational-Theory. Because most SAT-solvers support automatic casting between
+ Integer- and Rational-Theory, the Integer- and the RationalFormulaManager both return the same
+ Formulas for numeric operations like ADD, SUBTRACT, TIMES, LESSTHAN, EQUAL, etc.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getRationalFormulaManager()">getRationalFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getBooleanFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBooleanFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>&nbsp;getBooleanFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getBooleanFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Boolean-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getBooleanFormulaManager()">getBooleanFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getArrayFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getArrayFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>&nbsp;getArrayFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getArrayFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Array-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getArrayFormulaManager()">getArrayFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getBitvectorFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getBitvectorFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>&nbsp;getBitvectorFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getBitvectorFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Bitvector-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getBitvectorFormulaManager()">getBitvectorFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getFloatingPointFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFloatingPointFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>&nbsp;getFloatingPointFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getFloatingPointFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Floating-Point-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getFloatingPointFormulaManager()">getFloatingPointFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUFManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUFManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>&nbsp;getUFManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getUFManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the function for dealing with uninterpreted functions (UFs).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getUFManager()">getUFManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSLFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSLFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>&nbsp;getSLFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getSLFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Seperation-Logic-Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getSLFormulaManager()">getSLFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getQuantifiedFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getQuantifiedFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>&nbsp;getQuantifiedFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getQuantifiedFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the interface for handling quantifiers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getQuantifiedFormulaManager()">getQuantifiedFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStringFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStringFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>&nbsp;getStringFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getStringFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the String Theory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getStringFormulaManager()">getStringFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getEnumerationFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getEnumerationFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>&nbsp;getEnumerationFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getEnumerationFormulaManager()">FormulaManager</a></code></span></div>
+<div class="block">Returns the Enumeration Theory, e.g., also known as 'limited domain'.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getEnumerationFormulaManager()">getEnumerationFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeVariable&#8203;(<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;formulaType,
+                                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Create variable of the type equal to <code>formulaType</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#makeVariable(org.sosy_lab.java_smt.api.FormulaType,java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formulaType</code> - the type of the variable.</dd>
+<dd><code>name</code> - the name of the variable.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the created variable.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">FormulaManager</a></code></span></div>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">makeApplication</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeApplication</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;makeApplication&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declaration,
+                                             <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">FormulaManager</a></code></span></div>
+<div class="block">Create a function application to the given list of arguments.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">makeApplication</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>declaration</code> - Function declaration</dd>
+<dd><code>args</code> - List of arguments</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Constructed formula</dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaType(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="getFormulaType(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;getFormulaType&#8203;(T&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#getFormulaType(T)">FormulaManager</a></code></span></div>
+<div class="block">Returns the type of the given Formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#getFormulaType(T)">getFormulaType</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="parse(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>parse</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;parse&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;s)
+                     throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#parse(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Parse a boolean formula given as a String in an SMTLIB file format. We expect exactly one
+ assertion to be contained in the query.
+
+ <p>Example: <code>(declare-fun x () Int)(assert (= 0 x))</code>
+
+ <p>It depends on the used SMT solver whether the given query must be self-contained and include
+ declarations for all used symbols or not, and also whether the query is allowed to contain
+ symbols with equal name, but different type/sort than existing symbols. The safest way is to
+ always declare all used symbols and to avoid conflicting types for them.
+
+ <p>The behavior of the SMT solver is undefined if commands are provided in the SMTLIB-based
+ String that are different from declarations or an assertion, such as <code>push/pop</code> or
+ <code>set-info</code>. Most solvers just ignore those commands.
+
+ <p>Variables that are defined, but not used in the assertion, might be ignored by the SMT
+ solver and they might not be available for later usage.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#parse(java.lang.String)">parse</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A single formula from the assertion in the internal representation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - If the string cannot be parsed.</dd>
+</dl>
+</li>
+</ul>
+<a id="dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dumpFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/Appender.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">Appender</a>&nbsp;dumpFormula&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pT)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">FormulaManager</a></code></span></div>
+<div class="block">Serialize an input formula to an SMT-LIB format. Very useful when passing formulas between
+ different solvers.
+
+ <p>To get a String, simply call <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink"><code>Object.toString()</code></a> on the returned object. This method
+ is lazy and does not create an output string until the returned object is actually used.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)">dumpFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>SMT-LIB formula serialization.</dd>
+</dl>
+</li>
+</ul>
+<a id="applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>applyTactic</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;applyTactic&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;input,
+                                  <a href="../../api/Tactic.html" title="enum in org.sosy_lab.java_smt.api">Tactic</a>&nbsp;tactic)
+                           throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">FormulaManager</a></code></span></div>
+<div class="block">Apply a tactic which performs formula transformation. The available tactics depend on the used
+ solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#applyTactic(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Tactic)">applyTactic</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="simplify(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="simplify(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>simplify</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;simplify&#8203;(T&nbsp;input)
+                               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#simplify(T)">FormulaManager</a></code></span></div>
+<div class="block">Simplify an input formula, while ensuring equivalence.
+
+ <p>For solvers that do not provide a simplification API, an original formula is returned.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#simplify(T)">simplify</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>input</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Simplified version of the formula</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;visit&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                   <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula with a given visitor.
+
+ <p>This method does <b>not recursively visit</b> sub-components of a formula its own, so the
+ given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a> needs to call such visitation on its own.
+
+ <p>Please be aware that calling this method might cause extensive stack usage depending on the
+ nesting of the given formula and the given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. Additionally, sub-formulas
+ that are used several times in the formula might be visited several times. For an efficient
+ formula traversing, we also provide <a href="../../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)"><code>FormulaManager.visitRecursively(Formula, FormulaVisitor)</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#visit(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visit</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - formula to be visited</dd>
+<dd><code>rFormulaVisitor</code> - an implementation that provides steps for each kind of formula.</dd>
+</dl>
+</li>
+</ul>
+<a id="visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visitRecursively</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visitRecursively&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                             <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;<a href="../../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors">TraversalProcess</a>&gt;&nbsp;rFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>. This method traverses
+ sub-components of a formula automatically, depending on the return value of the <a href="../../api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><code>TraversalProcess</code></a> in the given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in PRE-ORDER manner with regard to caching identical subtrees, i.e., a
+ parent will be visited BEFORE its children. The unmodified child-formulas are passed as
+ argument to the parent's visitation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#visitRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaVisitor)">visitRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="transformRecursively(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a><a id="transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>transformRecursively</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;transformRecursively&#8203;(T&nbsp;f,
+                                                  <a href="../../api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors">FormulaTransformationVisitor</a>&nbsp;pFormulaVisitor)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">FormulaManager</a></code></span></div>
+<div class="block">Visit the formula recursively with a given <a href="../../api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><code>FormulaVisitor</code></a>.
+
+ <p>This method guarantees that the traversal is done iteratively, without using Java recursion,
+ and thus is not prone to StackOverflowErrors.
+
+ <p>Furthermore, this method also guarantees that every equal part of the formula is visited
+ only once. Thus, it can be used to traverse DAG-like formulas efficiently.
+
+ <p>The traversal is done in POST-ORDER manner with regard to caching identical subtrees, i.e.,
+ a parent will be visited AFTER its children. The result of the child-visitation is passed as
+ argument to the parent's visitation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#transformRecursively(T,org.sosy_lab.java_smt.api.visitors.FormulaTransformationVisitor)">transformRecursively</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dd><code>pFormulaVisitor</code> - Transformation described by the user.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariables(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariables</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariables&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">FormulaManager</a></code></span></div>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#extractVariables(org.sosy_lab.java_smt.api.Formula)">extractVariables</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas.</dd>
+</dl>
+</li>
+</ul>
+<a id="extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>extractVariablesAndUFs</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;extractVariablesAndUFs&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">FormulaManager</a></code></span></div>
+<div class="block">Extract the names of all free variables and UFs in a formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#extractVariablesAndUFs(org.sosy_lab.java_smt.api.Formula)">extractVariablesAndUFs</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - The input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Map from variable names to the corresponding formulas. If an UF occurs multiple times
+     in the input formula, an arbitrary instance of an application of this UF is in the map.</dd>
+</dl>
+</li>
+</ul>
+<a id="substitute(org.sosy_lab.java_smt.api.Formula,java.util.Map)">
+<!--   -->
+</a><a id="substitute(T,java.util.Map)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substitute</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;substitute&#8203;(T&nbsp;f,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;fromToMapping)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#substitute(T,java.util.Map)">FormulaManager</a></code></span></div>
+<div class="block">Substitute every occurrence of any item from <code>changeFrom</code> in formula <code>f</code> to the
+ corresponding occurrence from <code>changeTo</code>.
+
+ <p>E.g. if <code>changeFrom</code> contains a variable <code>a</code> and <code>changeTo</code> contains a
+ variable <code>b</code> all occurrences of <code>a</code> will be changed to <code>b</code> in the returned
+ formula.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#substitute(T,java.util.Map)">substitute</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - Formula to change.</dd>
+<dd><code>fromToMapping</code> - Mapping of old and new formula parts.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula with parts replaced.</dd>
+</dl>
+</li>
+</ul>
+<a id="translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>translateFrom</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;translateFrom&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula,
+                                    <a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;otherManager)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">FormulaManager</a></code></span></div>
+<div class="block">Translates the formula from another context into the context represented by <code>this</code>.
+ Default implementation relies on string serialization (<a href="../../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>FormulaManager.dumpFormula(BooleanFormula)</code></a> and
+ <a href="../../api/FormulaManager.html#parse(java.lang.String)"><code>FormulaManager.parse(String)</code></a>), but each solver may implement more efficient translation between its
+ own contexts.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#translateFrom(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.FormulaManager)">translateFrom</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Formula belonging to <code>otherContext</code>.</dd>
+<dd><code>otherManager</code> - Formula manager belonging to the other context.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Formula belonging to <code>this</code> context.</dd>
+</dl>
+</li>
+</ul>
+<a id="isValidName(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isValidName</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isValidName&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#isValidName(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Check whether the given String can be used as symbol/name for variables or undefined functions.
+
+ <p>We explicitly state that with further development of SMT solvers and the SMTLib
+ specification, the list of forbidden variable names may change in the future. Users should if
+ possible not use logical or mathematical operators, or keywords strongly depending on SMTlib.
+
+ <p>If a variable name is rejected, a possibility is escaping, e.g. either substituting the
+ whole variable name or just every invalid character with an escaped form. We recommend using an
+ escape sequence based on the token "JAVASMT", because it might be unusual enough to appear when
+ encoding a user's problem in SMT. Please note that you might also have to handle escaping the
+ escape sequence. Examples:
+
+ <ul>
+   <li>the invalid variable name <code>"="</code> (logical operator for equality) can be
+       replaced with a string <code>"JAVASMT_EQUALS"</code>.
+   <li>the invalid SMTlib-escaped variable name <code>"|test|"</code> (the solver SMTInterpol
+       does not allow the pipe symbol <code>"|"</code> in names) can be replaced with <code>
+       "JAVASMT_PIPEtestJAVASMT_PIPE"</code>.
+ </ul></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#isValidName(java.lang.String)">isValidName</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="escape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>escape</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;escape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#escape(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Get an escaped symbol/name for variables or undefined functions, if necessary.
+
+ <p>See <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(String)</code></a> for further details.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#escape(java.lang.String)">escape</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="unescape(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>unescape</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;unescape&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;variableName)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/FormulaManager.html#unescape(java.lang.String)">FormulaManager</a></code></span></div>
+<div class="block">Unescape the symbol/name for variables or undefined functions, if necessary.
+
+ <p>The result is undefined for Strings that are not properly escaped.
+
+ <p>See <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(String)</code></a> for further details.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/FormulaManager.html#unescape(java.lang.String)">unescape</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html
new file mode 100644
index 0000000000..ed9cfa553c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html
@@ -0,0 +1,422 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingIntegerFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingIntegerFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingIntegerFormulaManager" class="title">Class DebuggingIntegerFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">org.sosy_lab.java_smt.delegate.debugging.DebuggingNumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingIntegerFormulaManager</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code>, <code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;</code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingIntegerFormulaManager</span>
+extends <a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>,&#8203;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&gt;
+implements <a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingIntegerFormulaManager</a></span>&#8203;(<a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;pDelegate,
+                              org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">modularCongruence</a></span>&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                 <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                 long&nbsp;n)</code></th>
+<td class="colLast">
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">modularCongruence</a></span>&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                 <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;n)</code></th>
+<td class="colLast">
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">modulo</a></span>&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;numerator,
+      <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;denominator)</code></th>
+<td class="colLast">
+<div class="block">Create a formula representing the modulo of two operands according to Boute's Euclidean
+ definition.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.delegate.debugging.DebuggingNumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></h3>
+<code><a href="DebuggingNumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="DebuggingNumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="DebuggingNumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="DebuggingNumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="DebuggingNumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="DebuggingNumeralFormulaManager.html#getFormulaType()">getFormulaType</a>, <a href="DebuggingNumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="DebuggingNumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="DebuggingNumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="DebuggingNumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="DebuggingNumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="DebuggingNumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="DebuggingNumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="DebuggingNumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.IntegerFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></h3>
+<code><a href="../../api/IntegerFormulaManager.html#getFormulaType()">getFormulaType</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></h3>
+<code><a href="../../api/NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="../../api/NumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="../../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="../../api/NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="../../api/NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="../../api/NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="../../api/NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="../../api/NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="../../api/NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="../../api/NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="../../api/NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="../../api/NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="../../api/NumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.IntegerFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingIntegerFormulaManager</h4>
+<pre>public&nbsp;DebuggingIntegerFormulaManager&#8203;(<a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>&nbsp;pDelegate,
+                                      org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                                        <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;n)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">IntegerFormulaManager</a></code></span></div>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,java.math.BigInteger)">modularCongruence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modularCongruence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;modularCongruence&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number1,
+                                        <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number2,
+                                        long&nbsp;n)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">IntegerFormulaManager</a></code></span></div>
+<div class="block">Create a term representing the constraint <code>number1 == number2 (mod n)</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/IntegerFormulaManager.html#modularCongruence(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,long)">modularCongruence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>modulo</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;modulo&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;numerator,
+                                            <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;denominator)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/IntegerFormulaManager.html#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">IntegerFormulaManager</a></code></span></div>
+<div class="block">Create a formula representing the modulo of two operands according to Boute's Euclidean
+ definition. The quotient (div numerator denominator) of the internal modulo calculation is
+ floored for positive denominators and rounded up for negative denominators.
+
+ <p>If the denominator evaluates to zero (modulo-by-zero), either directly as value or
+ indirectly via an additional constraint, then the solver is allowed to choose an arbitrary
+ value for the result of the modulo operation (cf. SMTLIB standard for the division operator in
+ Ints or Reals theory).
+
+ <p>Examples:
+
+ <ul>
+   <li>10 % 5 == 0
+   <li>10 % 3 == 1
+   <li>10 % (-3) == 1
+   <li>-10 % 5 == 0
+   <li>-10 % 3 == 2
+   <li>-10 % (-3) == 2
+ </ul>
+
+ <p>Note: Some solvers, e.g., Yices2, abort with an exception when exploring a modulo-by-zero
+ during the SAT-check. This is not compliant to the SMTLIB standard, but sadly happens.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/IntegerFormulaManager.html#modulo(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">modulo</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html
new file mode 100644
index 0000000000..eca0eb6a58
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html
@@ -0,0 +1,794 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingInterpolatingProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingInterpolatingProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingInterpolatingProverEnvironment" class="title">Class DebuggingInterpolatingProverEnvironment&lt;T&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingInterpolatingProverEnvironment&lt;T&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code>, <code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingInterpolatingProverEnvironment&lt;T&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingInterpolatingProverEnvironment</a></span>&#8203;(<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&nbsp;pDelegate,
+                                       org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">addConstraint</span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">allSat</span>&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">close</span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInterpolant(java.util.Collection)">getInterpolant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&nbsp;formulasOfA)</code></th>
+<td class="colLast">
+<div class="block">Get an interpolant for two groups of formulas.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getModel</span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSeqInterpolants(java.util.List)">getSeqInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas)</code></th>
+<td class="colLast">
+<div class="block">This method returns interpolants of an 'inductive sequence'.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas,
+                   int[]&nbsp;startOfSubTree)</code></th>
+<td class="colLast">
+<div class="block">Compute a sequence of interpolants.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getUnsatCore</span>()</code></th>
+<td class="colLast">
+<div class="block">Get an unsat core.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsat</span>()</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsatWithAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">pop</span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">push</span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">size</span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">unsatCoreOverAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../../api/BasicProverEnvironment.html#close()">close</a>, <a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../../api/BasicProverEnvironment.html#pop()">pop</a>, <a href="../../api/BasicProverEnvironment.html#push()">push</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../../api/BasicProverEnvironment.html#size()">size</a>, <a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.InterpolatingProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a></h3>
+<code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants0(java.util.List)">getSeqInterpolants0</a>, <a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants0(java.util.List,int%5B%5D)">getTreeInterpolants0</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.InterpolatingProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingInterpolatingProverEnvironment</h4>
+<pre>public&nbsp;DebuggingInterpolatingProverEnvironment&#8203;(<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&nbsp;pDelegate,
+                                               org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getInterpolant(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getInterpolant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getInterpolant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&nbsp;formulasOfA)
+                              throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">Get an interpolant for two groups of formulas. This should be called only immediately after an
+ <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>true</code>.
+
+ <p>There is no direct guarantee that the interpolants returned are part of an inductive
+ sequence', however this seems to work for most solvers as long as the same proof is used, i.e.
+ all interpolants are computed after the same SAT-check. If a solver does not use the same
+ internal proof for several interpolation queries (such as CVC5), then the returned interpolants
+ might not satisfy the sequence-criteria. We suggest the proper method <a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)"><code>InterpolatingProverEnvironment.getSeqInterpolants(java.util.List&lt;? extends java.util.Collection&lt;T&gt;&gt;)</code></a> for that case.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getInterpolant(java.util.Collection)">getInterpolant</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formulasOfA</code> - A collection of values returned by <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(BooleanFormula)</code></a>. All the
+     corresponding formulas from group A, the remaining formulas form group B.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>An interpolant for A and B</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSeqInterpolants(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSeqInterpolants</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getSeqInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas)
+                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">This method returns interpolants of an 'inductive sequence'. This property must be supported by
+ the interpolation-strategy of the underlying SMT-solver! Depending on the underlying SMT-solver
+ this method might be faster than N direct calls to getInterpolant().
+
+ <p>The prover stack should contain the partitioned formulas, but any order is allowed. For an
+ input of N partitions we return N-1 interpolants. Any asserted formula that is on the prover
+ stack and not part of the partitioned list, will be used for background theory and its symbols
+ can appear in any interpolant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getSeqInterpolants(java.util.List)">getSeqInterpolants</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;</code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a 'inductive sequence' of interpolants, such that the implication <code>AND(I_i, P_i)
+     =&gt; I_(i+1)</code> is satisfied for all i, where P_i is the conjunction of all formulas in
+     partition i.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getTreeInterpolants(java.util.List,int[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTreeInterpolants</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getTreeInterpolants&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;&gt;&nbsp;partitionedFormulas,
+                                                int[]&nbsp;startOfSubTree)
+                                         throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">InterpolatingProverEnvironment</a></code></span></div>
+<div class="block">Compute a sequence of interpolants. The nesting array describes the start of the subtree for
+ tree interpolants. For inductive sequences of interpolants use a nesting array completely
+ filled with 0.
+
+ <p>Example:
+
+ <pre>
+ A  D
+ |  |
+ B  E
+ | /
+ C
+ |
+ F  H
+ | /
+ G
+
+ arrayIndex     = [0,1,2,3,4,5,6,7]  // only for demonstration, not needed
+ partition      = [A,B,D,E,C,F,H,G]  // post-order of tree
+ startOfSubTree = [0,0,2,2,0,0,6,0]  // index of left-most leaf of the current element
+ </pre>
+
+ <p>The prover stack should contain the partitioned formulas. For an input of N partitions
+ (nodes in the tree) we return N-1 interpolants (one interpolant for/below each node except the
+ root). Any asserted formula that is on the prover stack and not part of the partitioned list,
+ will be used for background theory and its symbols can appear in any interpolant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/InterpolatingProverEnvironment.html#getTreeInterpolants(java.util.List,int%5B%5D)">getTreeInterpolants</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;<a href="DebuggingInterpolatingProverEnvironment.html" title="type parameter in DebuggingInterpolatingProverEnvironment">T</a>&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>partitionedFormulas</code> - of formulas</dd>
+<dd><code>startOfSubTree</code> - The start of the subtree containing the formula at this index as root.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Tree interpolants respecting the nesting relation.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code> - if interpolant cannot be computed, for example because interpolation
+     procedure is incomplete</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;pop()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#pop()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#pop()">pop</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">public&nbsp;@Nullable T&nbsp;addConstraint&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;push()
+          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#push()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#push()">push</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;size()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#size()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#size()">size</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsat</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsat()
+                throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsat()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsatWithAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatWithAssumptions</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsatWithAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - A list of literals.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getModel()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUnsatCore</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getUnsatCore()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get an unsat core. This should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that
+ returned <code>false</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="unsatCoreOverAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unsatCoreOverAssumptions</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;&nbsp;unsatCoreOverAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions. Does NOT require the <a href="../../api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE"><code>SolverContext.ProverOptions.GENERATE_UNSAT_CORE</code></a> option to work.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - Selected assumptions</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Empty optional if the constraints with assumptions are satisfiable, subset of
+     assumptions which is unsatisfiable with the original constraints otherwise.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#close()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)
+             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                    <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dd><code>important</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html
new file mode 100644
index 0000000000..23c50c9fda
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html
@@ -0,0 +1,616 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingModel (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingModel (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingModel" class="title">Class DebuggingModel</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingModel</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;<a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code>, <code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code>, <code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingModel</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.Model,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingModel</a></span>&#8203;(<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;pDelegate,
+              org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#asList()">asList</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Free resources associated with this model (existing <a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eval(T)">eval</a></span>&#8203;(T&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></span>&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for bitvector formulas.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for boolean formulas.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></span>&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for enumeration formulas.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="../../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></span>&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for floating-point formulas.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Evaluate a given formula substituting the values from the model.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></span>&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for integer formulas.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></span>&#8203;(<a href="../../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for rational formulas.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Type-safe evaluation for string formulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Iterable">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#forEach(java.util.function.Consumer)" title="class or interface in java.lang" class="externalLink">forEach</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true#spliterator()" title="class or interface in java.lang" class="externalLink">spliterator</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.Model">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></h3>
+<code><a href="../../api/Model.html#iterator()">iterator</a>, <a href="../../api/Model.html#toString()">toString</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.Model,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingModel</h4>
+<pre>public&nbsp;DebuggingModel&#8203;(<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;pDelegate,
+                      org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="eval(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="eval(T)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eval</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;@Nullable T&nbsp;eval&#8203;(T&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#eval(T)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model and return it as formula.
+
+ <p>If a value is not relevant to the satisfiability result, the solver can choose either to
+ insert an arbitrary value (e.g., the value <code>0</code> for the matching type) or just return
+ <code>null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression. The solver
+ will replace all symbols from the formula with their model values and then simplify the formula
+ into a simple formula, e.g., consisting only of a numeral expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#eval(T)">eval</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula to be evaluated.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>evaluation of the given formula or <code>null</code> if the solver does not provide a
+     better evaluation.</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&nbsp;evaluate&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">Evaluator</a></code></span></div>
+<div class="block">Evaluate a given formula substituting the values from the model.
+
+ <p>If a value is not relevant to the satisfiability result, the model can choose either an
+ arbitrary value (e.g., the value <code>0</code> for the matching type) or just return <code>
+ null</code>.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>formula</code> - Input formula</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Either of: - Number (Rational/Double/BigInteger/Long/Integer) - Boolean</dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for integer formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;evaluate&#8203;(<a href="../../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for rational formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.NumeralFormula.RationalFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&nbsp;evaluate&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for boolean formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BooleanFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;evaluate&#8203;(<a href="../../api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for bitvector formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.BitvectorFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for string formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.StringFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;evaluate&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for enumeration formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.EnumerationFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>evaluate</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="../../api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api">FloatingPointNumber</a>&nbsp;evaluate&#8203;(<a href="../../api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormula</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">Evaluator</a></code></span></div>
+<div class="block">Type-safe evaluation for floating-point formulas.
+
+ <p>The formula does not need to be a variable, we also allow complex expression.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.FloatingPointFormula)">evaluate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="asList()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>asList</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableList.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableList</a>&lt;<a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api">Model.ValueAssignment</a>&gt;&nbsp;asList()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Model.html#asList()">Model</a></code></span></div>
+<div class="block">Build a list of assignments that stays valid after closing the model.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Model.html#asList()">asList</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/Model.html#close()">Model</a></code></span></div>
+<div class="block">Free resources associated with this model (existing <a href="../../api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><code>Model.ValueAssignment</code></a> instances stay
+ valid, but <a href="../../api/Evaluator.html#evaluate(org.sosy_lab.java_smt.api.Formula)"><code>Evaluator.evaluate(Formula)</code></a> etc. and <a href="../../api/Model.html#iterator()"><code>Model.iterator()</code></a> must not be called again).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Evaluator.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/Model.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html
new file mode 100644
index 0000000000..2f3ede7cb8
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html
@@ -0,0 +1,765 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingNumeralFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingNumeralFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingNumeralFormulaManager" class="title">Class DebuggingNumeralFormulaManager&lt;ParamFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingNumeralFormulaManager&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;</code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></code>, <code><a href="DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingNumeralFormulaManager&lt;ParamFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.NumeralFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingNumeralFormulaManager</a></span>&#8203;(<a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&gt;&nbsp;pDelegate,
+                              org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#add(ParamFormulaType,ParamFormulaType)">add</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+   <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#distinct(java.util.List)">distinct</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</code></th>
+<td class="colLast">
+<div class="block">All given numbers are pairwise unequal.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divide(ParamFormulaType,ParamFormulaType)">divide</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;numerator,
+      <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;denominator)</code></th>
+<td class="colLast">
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(ParamFormulaType,ParamFormulaType)">equal</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+     <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floor(ParamFormulaType)">floor</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaType()">getFormulaType</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+               <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+           <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+            <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(double)">makeNumber</a></span>&#8203;(double&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(long)">makeNumber</a></span>&#8203;(long&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.lang.String)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pI)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigDecimal)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Create a numeric literal with a given value.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(java.math.BigInteger)">makeNumber</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiply(ParamFormulaType,ParamFormulaType)">multiply</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#negate(ParamFormulaType)">negate</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#subtract(ParamFormulaType,ParamFormulaType)">subtract</a></span>&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+        <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sum(java.util.List)">sum</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.NumeralFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingNumeralFormulaManager</h4>
+<pre>public&nbsp;DebuggingNumeralFormulaManager&#8203;(<a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&gt;&nbsp;pDelegate,
+                                      org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeNumber(long)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(long&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(long)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigInteger)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigInteger.html?is-external=true" title="class or interface in java.math" class="externalLink">BigInteger</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(double)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(double&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#makeNumber(double)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(double)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.math.BigDecimal)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html?is-external=true" title="class or interface in java.math" class="externalLink">BigDecimal</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a numeric literal with a given value. Note: if the theory represented by this instance
+ cannot handle rational numbers, the value may get rounded or otherwise represented imprecisely.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pI)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNumber(org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeNumber</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeNumber&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;pRational)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Creates a variable with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="getFormulaType()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaType</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&gt;&nbsp;getFormulaType()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#getFormulaType()">getFormulaType</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="negate(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="negate(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>negate</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;negate&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="add(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="add(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>add</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;add&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                             <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="sum(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>sum</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;sum&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;operands)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#sum(java.util.List)">sum</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="subtract(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="subtract(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>subtract</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;subtract&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                                  <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="divide(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="divide(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>divide</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;divide&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;numerator,
+                                <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;denominator)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">NumeralFormulaManager</a></code></span></div>
+<div class="block">Create a formula representing the division of two operands according to Boute's Euclidean
+ definition.
+
+ <p>If the denominator evaluates to zero (division-by-zero), either directly as value or
+ indirectly via an additional constraint, then the solver is allowed to choose an arbitrary
+ value for the result of the division (cf. SMTLIB standard for the division operator in Ints or
+ Reals theory).
+
+ <p>Note: Some solvers, e.g., Yices2, abort with an exception when exploring a division-by-zero
+ during the SAT-check. This is not compliant to the SMTLIB standard, but sadly happens.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiply(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="multiply(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiply</h4>
+<pre class="methodSignature">public&nbsp;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a>&nbsp;multiply&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                                  <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="equal(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                            <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="distinct(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>distinct</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;distinct&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&gt;&nbsp;pNumbers)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#distinct(java.util.List)">NumeralFormulaManager</a></code></span></div>
+<div class="block">All given numbers are pairwise unequal.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#distinct(java.util.List)">distinct</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                                  <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="greaterOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                                      <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessThan(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                               <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.NumeralFormula,org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="lessOrEquals(ParamFormulaType,ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number1,
+                                   <a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;number2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="floor(org.sosy_lab.java_smt.api.NumeralFormula)">
+<!--   -->
+</a><a id="floor(ParamFormulaType)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>floor</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;floor&#8203;(<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a>&nbsp;formula)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/NumeralFormulaManager.html#floor(ParamFormulaType)">NumeralFormulaManager</a></code></span></div>
+<div class="block">The <code>floor</code> operation returns the nearest integer formula that is less or equal to the
+ given argument formula.
+
+ <p>For rational formulas, SMTlib2 denotes this operation as <code>to_int</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ParamFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="DebuggingNumeralFormulaManager.html" title="type parameter in DebuggingNumeralFormulaManager">ResultFormulaType</a> extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html
new file mode 100644
index 0000000000..f22fe9e01c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html
@@ -0,0 +1,791 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingOptimizationProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingOptimizationProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingOptimizationProverEnvironment" class="title">Class DebuggingOptimizationProverEnvironment</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingOptimizationProverEnvironment</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code>, <code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingOptimizationProverEnvironment</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.OptimizationProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></h3>
+<code><a href="../../api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.OptimizationProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingOptimizationProverEnvironment</a></span>&#8203;(<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;pDelegate,
+                                      org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">addConstraint</span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">allSat</span>&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#check()">check</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Optimize the objective function subject to the previously imposed constraints.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">close</span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getModel</span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getUnsatCore</span>()</code></th>
+<td class="colLast">
+<div class="block">Get an unsat core.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsat</span>()</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsatWithAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lower(int,org.sosy_lab.common.rationals.Rational)">lower</a></span>&#8203;(int&nbsp;handle,
+     <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#maximize(org.sosy_lab.java_smt.api.Formula)">maximize</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</code></th>
+<td class="colLast">
+<div class="block">Add the maximization <code>objective</code>.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#minimize(org.sosy_lab.java_smt.api.Formula)">minimize</a></span>&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</code></th>
+<td class="colLast">
+<div class="block">Add minimization <code>objective</code>.</div>
+</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">pop</span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">push</span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">size</span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">unsatCoreOverAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#upper(int,org.sosy_lab.common.rationals.Rational)">upper</a></span>&#8203;(int&nbsp;handle,
+     <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../../api/BasicProverEnvironment.html#close()">close</a>, <a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../../api/BasicProverEnvironment.html#pop()">pop</a>, <a href="../../api/BasicProverEnvironment.html#push()">push</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../../api/BasicProverEnvironment.html#size()">size</a>, <a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.OptimizationProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></h3>
+<code><a href="../../api/OptimizationProverEnvironment.html#getModel()">getModel</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.OptimizationProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingOptimizationProverEnvironment</h4>
+<pre>public&nbsp;DebuggingOptimizationProverEnvironment&#8203;(<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;pDelegate,
+                                              org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="maximize(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>maximize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;maximize&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html#maximize(org.sosy_lab.java_smt.api.Formula)">OptimizationProverEnvironment</a></code></span></div>
+<div class="block">Add the maximization <code>objective</code>.
+
+ <p><b>Note: <code>push/pop</code> may be used for switching objectives</b></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/OptimizationProverEnvironment.html#maximize(org.sosy_lab.java_smt.api.Formula)">maximize</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Objective handle, to be used for retrieving the value.</dd>
+</dl>
+</li>
+</ul>
+<a id="minimize(org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>minimize</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;minimize&#8203;(<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;objective)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html#minimize(org.sosy_lab.java_smt.api.Formula)">OptimizationProverEnvironment</a></code></span></div>
+<div class="block">Add minimization <code>objective</code>.
+
+ <p><b>Note: <code>push/pop</code> may be used for switching objectives</b></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/OptimizationProverEnvironment.html#minimize(org.sosy_lab.java_smt.api.Formula)">minimize</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Objective handle, to be used for retrieving the value.</dd>
+</dl>
+</li>
+</ul>
+<a id="check()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>check</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api">OptimizationProverEnvironment.OptStatus</a>&nbsp;check()
+                                              throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                                     <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html#check()">OptimizationProverEnvironment</a></code></span></div>
+<div class="block">Optimize the objective function subject to the previously imposed constraints.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/OptimizationProverEnvironment.html#check()">check</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Status of the optimization problem.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="upper(int,org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>upper</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;&nbsp;upper&#8203;(int&nbsp;handle,
+                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/OptimizationProverEnvironment.html#upper(int,org.sosy_lab.common.rationals.Rational)">upper</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+<dd><code>epsilon</code> - Value to substitute for the <code>epsilon</code>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Upper approximation of the optimized value, or absent optional if the objective is
+     unbounded.</dd>
+</dl>
+</li>
+</ul>
+<a id="lower(int,org.sosy_lab.common.rationals.Rational)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lower</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&gt;&nbsp;lower&#8203;(int&nbsp;handle,
+                                <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/rationals/Rational.html?is-external=true" title="class or interface in org.sosy_lab.common.rationals" class="externalLink">Rational</a>&nbsp;epsilon)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/OptimizationProverEnvironment.html#lower(int,org.sosy_lab.common.rationals.Rational)">lower</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></dd>
+<dd><code>epsilon</code> - Value to substitute for the <code>epsilon</code>.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Lower approximation of the optimized value, or absent optional if the objective is
+     unbounded.</dd>
+</dl>
+</li>
+</ul>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;pop()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#pop()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#pop()">pop</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">public&nbsp;@Nullable T&nbsp;addConstraint&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;push()
+          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#push()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#push()">push</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;size()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#size()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#size()">size</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsat</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsat()
+                throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsat()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsatWithAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatWithAssumptions</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsatWithAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - A list of literals.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getModel()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUnsatCore</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getUnsatCore()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get an unsat core. This should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that
+ returned <code>false</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="unsatCoreOverAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unsatCoreOverAssumptions</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;&nbsp;unsatCoreOverAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions. Does NOT require the <a href="../../api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE"><code>SolverContext.ProverOptions.GENERATE_UNSAT_CORE</code></a> option to work.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - Selected assumptions</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Empty optional if the constraints with assumptions are satisfiable, subset of
+     assumptions which is unsatisfiable with the original constraints otherwise.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#close()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)
+             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                    <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dd><code>important</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html
new file mode 100644
index 0000000000..3f0e949a28
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html
@@ -0,0 +1,648 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingProverEnvironment (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingProverEnvironment (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingProverEnvironment" class="title">Class DebuggingProverEnvironment</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingProverEnvironment</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;</code>, <code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingProverEnvironment</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="type parameter in BasicProverEnvironment.AllSatCallback">R</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Fields inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#NO_MODEL_HELP">NO_MODEL_HELP</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.BasicProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingProverEnvironment</a></span>&#8203;(<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;&nbsp;pDelegate,
+                          org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">addConstraint</span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)</code></th>
+<td class="colLast">
+<div class="block">Add a constraint to the latest backtracking point.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">allSat</span>&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)</code></th>
+<td class="colLast">
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">close</span>()</code></th>
+<td class="colLast">
+<div class="block">Closes the prover environment.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getModel</span>()</code></th>
+<td class="colLast">
+<div class="block">Get a satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">getUnsatCore</span>()</code></th>
+<td class="colLast">
+<div class="block">Get an unsat core.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsat</span>()</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">isUnsatWithAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">pop</span>()</code></th>
+<td class="colLast">
+<div class="block">Remove one backtracking point/level from the current stack.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">push</span>()</code></th>
+<td class="colLast">
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">size</span>()</code></th>
+<td class="colLast">
+<div class="block">Get the number of backtracking points/levels on the current stack.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink">unsatCoreOverAssumptions</span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)</code></th>
+<td class="colLast">
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.BasicProverEnvironment">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a></h3>
+<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a>, <a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a>, <a href="../../api/BasicProverEnvironment.html#close()">close</a>, <a href="../../api/BasicProverEnvironment.html#getEvaluator()">getEvaluator</a>, <a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a>, <a href="../../api/BasicProverEnvironment.html#getModelAssignments()">getModelAssignments</a>, <a href="../../api/BasicProverEnvironment.html#getStatistics()">getStatistics</a>, <a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a>, <a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a>, <a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a>, <a href="../../api/BasicProverEnvironment.html#pop()">pop</a>, <a href="../../api/BasicProverEnvironment.html#push()">push</a>, <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)">push</a>, <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)">registerUserPropagator</a>, <a href="../../api/BasicProverEnvironment.html#size()">size</a>, <a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.BasicProverEnvironment,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingProverEnvironment</h4>
+<pre>public&nbsp;DebuggingProverEnvironment&#8203;(<a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Void.html?is-external=true" title="class or interface in java.lang" class="externalLink">Void</a>&gt;&nbsp;pDelegate,
+                                  org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="pop()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>pop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;pop()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#pop()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Remove one backtracking point/level from the current stack. This removes the latest level
+ including all of its formulas, i.e., all formulas that were added for this backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#pop()">pop</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addConstraint</h4>
+<pre class="methodSignature">public&nbsp;@Nullable T&nbsp;addConstraint&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint)
+                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Add a constraint to the latest backtracking point.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#addConstraint(org.sosy_lab.java_smt.api.BooleanFormula)">addConstraint</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="push()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>push</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;push()
+          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#push()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Create a new backtracking point, i.e., a new level on the assertion stack. Each level can hold
+ several asserted formulas.
+
+ <p>If formulas are added before creating the first backtracking point, they can not be removed
+ via a POP-operation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#push()">push</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="size()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>size</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;size()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#size()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get the number of backtracking points/levels on the current stack.
+
+ <p>Caution: This is the number of PUSH-operations, and not necessarily equal to the number of
+ asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even
+ with size of 0, formulas can already be asserted (at bottom level).</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#size()">size</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsat</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsat()
+                throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                       <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsat()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack is unsatisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsat()">isUnsat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isUnsatWithAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatWithAssumptions</h4>
+<pre class="methodSignature">public&nbsp;boolean&nbsp;isUnsatWithAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Check whether the conjunction of all formulas on the stack together with the list of
+ assumptions is satisfiable.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#isUnsatWithAssumptions(java.util.Collection)">isUnsatWithAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - A list of literals.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getModel</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>&nbsp;getModel()
+               throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getModel()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get a satisfying assignment. This method should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that returned <code>false</code>. The returned model is guaranteed to stay
+ constant and valid as long as the solver context is available, even if constraints are added
+ to, pushed or popped from the prover stack.
+
+ <p>A model might contain additional symbols with their evaluation, if a solver uses its own
+ temporary symbols. There should be at least a value-assignment for each free symbol.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getModel()">getModel</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getUnsatCore</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;getUnsatCore()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get an unsat core. This should be called only immediately after an <a href="../../api/BasicProverEnvironment.html#isUnsat()"><code>BasicProverEnvironment.isUnsat()</code></a> call that
+ returned <code>false</code>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#getUnsatCore()">getUnsatCore</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="unsatCoreOverAssumptions(java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>unsatCoreOverAssumptions</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Optional.html?is-external=true" title="class or interface in java.util" class="externalLink">Optional</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&gt;&nbsp;unsatCoreOverAssumptions&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assumptions)
+                                                        throws <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Returns an UNSAT core (if it exists, otherwise <code>Optional.empty()</code>), over the chosen
+ assumptions. Does NOT require the <a href="../../api/SolverContext.ProverOptions.html#GENERATE_UNSAT_CORE"><code>SolverContext.ProverOptions.GENERATE_UNSAT_CORE</code></a> option to work.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#unsatCoreOverAssumptions(java.util.Collection)">unsatCoreOverAssumptions</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>assumptions</code> - Selected assumptions</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Empty optional if the constraints with assumptions are satisfiable, subset of
+     assumptions which is unsatisfiable with the original constraints otherwise.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#close()">BasicProverEnvironment</a></code></span></div>
+<div class="block">Closes the prover environment. The object should be discarded, and should not be used after
+ closing. The first call of this method will close the prover instance, further calls are
+ ignored.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+</dl>
+</li>
+</ul>
+<a id="allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>allSat</h4>
+<pre class="methodSignature">public&nbsp;&lt;R&gt;&nbsp;R&nbsp;allSat&#8203;(<a href="../../api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment.AllSatCallback</a>&lt;R&gt;&nbsp;callback,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;important)
+             throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                    <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">BasicProverEnvironment</a></code></span></div>
+<div class="block">Get all satisfying assignments of the current environment with regard to a subset of terms, and
+ create a region representing all those models.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/BasicProverEnvironment.html#allSat(org.sosy_lab.java_smt.api.BasicProverEnvironment.AllSatCallback,java.util.List)">allSat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;</code></dd>
+<dd><code>important</code> - A set of (positive) variables appearing in the asserted queries. Only these
+     variables will appear in the region.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A region representing all satisfying models of the formula.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html
new file mode 100644
index 0000000000..112790db6a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html
@@ -0,0 +1,382 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingQuantifiedFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingQuantifiedFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingQuantifiedFormulaManager" class="title">Class DebuggingQuantifiedFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingQuantifiedFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingQuantifiedFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.QuantifiedFormulaManager">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></h3>
+<code><a href="../../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.QuantifiedFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingQuantifiedFormulaManager</a></span>&#8203;(<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>&nbsp;pDelegate,
+                                 org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)</code></th>
+<td class="colLast">
+<div class="block">Eliminate the quantifiers for a given formula.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier</a></span>&#8203;(<a href="../../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+            <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.QuantifiedFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></h3>
+<code><a href="../../api/QuantifiedFormulaManager.html#exists(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a>, <a href="../../api/QuantifiedFormulaManager.html#exists(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">exists</a>, <a href="../../api/QuantifiedFormulaManager.html#forall(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a>, <a href="../../api/QuantifiedFormulaManager.html#forall(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.BooleanFormula)">forall</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.QuantifiedFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingQuantifiedFormulaManager</h4>
+<pre>public&nbsp;DebuggingQuantifiedFormulaManager&#8203;(<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>&nbsp;pDelegate,
+                                         org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>mkQuantifier</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;mkQuantifier&#8203;(<a href="../../api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api">QuantifiedFormulaManager.Quantifier</a>&nbsp;q,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pVariables,
+                                   <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pBody)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/QuantifiedFormulaManager.html#mkQuantifier(org.sosy_lab.java_smt.api.QuantifiedFormulaManager.Quantifier,java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">mkQuantifier</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>q</code> - Quantifier type</dd>
+<dd><code>pVariables</code> - The variables that will get bound (variables) by the quantification.</dd>
+<dd><code>pBody</code> - The <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a>} within that the binding will be performed.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>A quantified formula</dd>
+</dl>
+</li>
+</ul>
+<a id="eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>eliminateQuantifiers</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;eliminateQuantifiers&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF)
+                                    throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                           <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/QuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">QuantifiedFormulaManager</a></code></span></div>
+<div class="block">Eliminate the quantifiers for a given formula. If this is not possible, it will return the
+ input formula. Note that CVC4 only supports this for LIA and LRA.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/QuantifiedFormulaManager.html#eliminateQuantifiers(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateQuantifiers</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - Formula with quantifiers.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>New formula without quantifiers.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html
new file mode 100644
index 0000000000..5357222a63
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html
@@ -0,0 +1,300 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingRationalFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingRationalFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingRationalFormulaManager" class="title">Class DebuggingRationalFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">org.sosy_lab.java_smt.delegate.debugging.DebuggingNumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="../../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingRationalFormulaManager</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="../../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;</code>, <code><a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingRationalFormulaManager</span>
+extends <a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a>&lt;<a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;<a href="../../api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.RationalFormula</a>&gt;
+implements <a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingRationalFormulaManager</a></span>&#8203;(<a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;pDelegate,
+                               org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.delegate.debugging.DebuggingNumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a></h3>
+<code><a href="DebuggingNumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="DebuggingNumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="DebuggingNumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="DebuggingNumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="DebuggingNumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="DebuggingNumeralFormulaManager.html#getFormulaType()">getFormulaType</a>, <a href="DebuggingNumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="DebuggingNumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="DebuggingNumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="DebuggingNumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="DebuggingNumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="DebuggingNumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="DebuggingNumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="DebuggingNumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="DebuggingNumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.NumeralFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a></h3>
+<code><a href="../../api/NumeralFormulaManager.html#add(ParamFormulaType,ParamFormulaType)">add</a>, <a href="../../api/NumeralFormulaManager.html#distinct(java.util.List)">distinct</a>, <a href="../../api/NumeralFormulaManager.html#divide(ParamFormulaType,ParamFormulaType)">divide</a>, <a href="../../api/NumeralFormulaManager.html#equal(ParamFormulaType,ParamFormulaType)">equal</a>, <a href="../../api/NumeralFormulaManager.html#floor(ParamFormulaType)">floor</a>, <a href="../../api/NumeralFormulaManager.html#greaterOrEquals(ParamFormulaType,ParamFormulaType)">greaterOrEquals</a>, <a href="../../api/NumeralFormulaManager.html#greaterThan(ParamFormulaType,ParamFormulaType)">greaterThan</a>, <a href="../../api/NumeralFormulaManager.html#lessOrEquals(ParamFormulaType,ParamFormulaType)">lessOrEquals</a>, <a href="../../api/NumeralFormulaManager.html#lessThan(ParamFormulaType,ParamFormulaType)">lessThan</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(double)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(long)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.lang.String)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigDecimal)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(java.math.BigInteger)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeNumber(org.sosy_lab.common.rationals.Rational)">makeNumber</a>, <a href="../../api/NumeralFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a>, <a href="../../api/NumeralFormulaManager.html#multiply(ParamFormulaType,ParamFormulaType)">multiply</a>, <a href="../../api/NumeralFormulaManager.html#negate(ParamFormulaType)">negate</a>, <a href="../../api/NumeralFormulaManager.html#subtract(ParamFormulaType,ParamFormulaType)">subtract</a>, <a href="../../api/NumeralFormulaManager.html#sum(java.util.List)">sum</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.RationalFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></h3>
+<code><a href="../../api/RationalFormulaManager.html#getFormulaType()">getFormulaType</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.RationalFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingRationalFormulaManager</h4>
+<pre>public&nbsp;DebuggingRationalFormulaManager&#8203;(<a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>&nbsp;pDelegate,
+                                       org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html
new file mode 100644
index 0000000000..5b7173b6b8
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html
@@ -0,0 +1,402 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingSLFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingSLFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingSLFormulaManager" class="title">Class DebuggingSLFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingSLFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingSLFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SLFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingSLFormulaManager</a></span>&#8203;(<a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>&nbsp;pDelegate,
+                         org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;<br><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeEmptyHeap(AT,VT)">makeEmptyHeap</a></span>&#8203;(AT&nbsp;pAdressType,
+             VT&nbsp;pValueType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+             <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;<br>AF</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeNilElement(AT)">makeNilElement</a></span>&#8203;(AT&nbsp;pAdressType)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makePointsTo(AF,VF)">makePointsTo</a></span>&#8203;(AF&nbsp;ptr,
+            VF&nbsp;to)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+        <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SLFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingSLFormulaManager</h4>
+<pre>public&nbsp;DebuggingSLFormulaManager&#8203;(<a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>&nbsp;pDelegate,
+                                 org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeStar</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeStar&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                               <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SLFormulaManager.html#makeStar(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeStar</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makePointsTo(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.api.Formula)">
+<!--   -->
+</a><a id="makePointsTo(AF,VF)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makePointsTo</h4>
+<pre class="methodSignature">public&nbsp;&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makePointsTo&#8203;(AF&nbsp;ptr,
+                                                                                 VF&nbsp;to)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SLFormulaManager.html#makePointsTo(AF,VF)">makePointsTo</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeMagicWand</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeMagicWand&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f1,
+                                    <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SLFormulaManager.html#makeMagicWand(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.BooleanFormula)">makeMagicWand</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeEmptyHeap(org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeEmptyHeap(AT,VT)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeEmptyHeap</h4>
+<pre class="methodSignature">public&nbsp;&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;VF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;,&#8203;VT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;VF&gt;&gt;&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;makeEmptyHeap&#8203;(AT&nbsp;pAdressType,
+                                                                                                                                                    VT&nbsp;pValueType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SLFormulaManager.html#makeEmptyHeap(AT,VT)">makeEmptyHeap</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeNilElement(org.sosy_lab.java_smt.api.FormulaType)">
+<!--   -->
+</a><a id="makeNilElement(AT)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>makeNilElement</h4>
+<pre class="methodSignature">public&nbsp;&lt;AF extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;AT extends <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;AF&gt;&gt;&nbsp;AF&nbsp;makeNilElement&#8203;(AT&nbsp;pAdressType)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SLFormulaManager.html#makeNilElement(AT)">makeNilElement</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html
new file mode 100644
index 0000000000..a0b49ec6a0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html
@@ -0,0 +1,538 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingSolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingSolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingSolverContext" class="title">Class DebuggingSolverContext</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingSolverContext</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingSolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.SolverContextFactory.Solvers,org.sosy_lab.common.configuration.Configuration,org.sosy_lab.java_smt.api.SolverContext)">DebuggingSolverContext</a></span>&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;pSolver,
+                      <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfiguration,
+                      <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Close the solver context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverName()">getSolverName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a complete solver context.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get version information out of the solver.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.SolverContextFactory.Solvers,org.sosy_lab.common.configuration.Configuration,org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingSolverContext</h4>
+<pre>public&nbsp;DebuggingSolverContext&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;pSolver,
+                              <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfiguration,
+                              <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)
+                       throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getFormulaManager()">SolverContext</a></code></span></div>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getFormulaManager()">getFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getVersion()">SolverContext</a></code></span></div>
+<div class="block">Get version information out of the solver.
+
+ <p>In most cases, the version contains the name of the solver followed by some numbers and
+ additional info about the version, e.g., "SMTInterpol 2.5-12-g3d15a15c".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getVersion()">getVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverName</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;getSolverName()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getSolverName()">SolverContext</a></code></span></div>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).
+
+ <p>This is an uppercase String matching the enum identifier from <a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><code>SolverContextFactory.Solvers</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getSolverName()">getSolverName</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getStatistics()">SolverContext</a></code></span></div>
+<div class="block">Get statistics for a complete solver context. The returned mapping is intended to provide the
+ solver-internal statistics. The keys can differ between individual solvers.
+
+ <p>Calling the statistics several times for the same context returns accumulated number, i.e.,
+ we currently do not provide any possibility to reset the statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getStatistics()">getStatistics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BasicProverEnvironment.html#getStatistics()"><code>BasicProverEnvironment.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#close()">SolverContext</a></code></span></div>
+<div class="block">Close the solver context.
+
+ <p>After calling this method, further access to any object that had been returned from this
+ context is not wanted, i.e., it depends on the solver. Java-based solvers might wait for the
+ next garbage collection with any cleanup operation. Native solvers might even reference invalid
+ memory and cause segmentation faults.
+
+ <p>Necessary for the solvers implemented in native code, frees the associated memory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html
new file mode 100644
index 0000000000..8bb1b0e02a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html
@@ -0,0 +1,324 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingSolverInformation (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingSolverInformation (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":9,"i2":9,"i3":9,"i4":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingSolverInformation" class="title">Class DebuggingSolverInformation</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingSolverInformation</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingSolverInformation</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addFunctionDeclaration(org.sosy_lab.java_smt.api.FunctionDeclaration)">addFunctionDeclaration</a></span>&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;pFunctionDeclaration)</code></th>
+<td class="colLast">
+<div class="block">Needs to be called after a new function is declared to associate it with this context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGlobalFunctionsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getGlobalFunctionsForSolver</a></span>&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getGlobalTermsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getGlobalTermsForSolver</a></span>&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solverHasSharedFormulas(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">solverHasSharedFormulas</a></span>&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>static boolean</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solverHasSharedFunctions(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">solverHasSharedFunctions</a></span>&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getGlobalTermsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getGlobalTermsForSolver</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;getGlobalTermsForSolver&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</pre>
+</li>
+</ul>
+<a id="solverHasSharedFormulas(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>solverHasSharedFormulas</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;solverHasSharedFormulas&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</pre>
+</li>
+</ul>
+<a id="getGlobalFunctionsForSolver(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getGlobalFunctionsForSolver</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&gt;&nbsp;getGlobalFunctionsForSolver&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</pre>
+</li>
+</ul>
+<a id="solverHasSharedFunctions(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>solverHasSharedFunctions</h4>
+<pre class="methodSignature">public static&nbsp;boolean&nbsp;solverHasSharedFunctions&#8203;(<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</pre>
+</li>
+</ul>
+<a id="addFunctionDeclaration(org.sosy_lab.java_smt.api.FunctionDeclaration)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>addFunctionDeclaration</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;addFunctionDeclaration&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;?&gt;&nbsp;pFunctionDeclaration)</pre>
+<div class="block">Needs to be called after a new function is declared to associate it with this context.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html
new file mode 100644
index 0000000000..51ad0b0df0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html
@@ -0,0 +1,1081 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingStringFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingStringFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingStringFormulaManager" class="title">Class DebuggingStringFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingStringFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingStringFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.StringFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingStringFormulaManager</a></span>&#8203;(<a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>&nbsp;pDelegate,
+                             org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#all()">all</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#allChar()">allChar</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+      <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</code></th>
+<td class="colLast">
+<div class="block">Get a substring of length 1 from the given String.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concat(java.util.List)">concat</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#concatRegex(java.util.List)">concatRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+        <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+          <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+     <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+               <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+           <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+  <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+       <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+       <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</code></th>
+<td class="colLast">
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.</div>
+</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+            <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#length(org.sosy_lab.java_smt.api.StringFormula)">length</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+            <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+        <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeRegex(java.lang.String)">makeRegex</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeString(java.lang.String)">makeString</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">Returns a <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of type String with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#none()">none</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+      <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+     <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+       <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+       <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+          <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+          <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</code></th>
+<td class="colLast">
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+         <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+         <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</code></th>
+<td class="colLast">
+<div class="block">Get a substring from the given String.</div>
+</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+      <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+     int&nbsp;repetitions)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code><a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula</a></span>&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</code></th>
+<td class="colLast">
+<div class="block">Interpret a String formula as an Integer formula.</div>
+</td>
+</tr>
+<tr id="i32" class="altColor">
+<td class="colFirst"><code><a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula</a></span>&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</code></th>
+<td class="colLast">
+<div class="block">Interpret an Integer formula as a String formula.</div>
+</td>
+</tr>
+<tr id="i33" class="rowColor">
+<td class="colFirst"><code><a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union</a></span>&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+     <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.StringFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></h3>
+<code><a href="../../api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.RegexFormula...)">concat</a>, <a href="../../api/StringFormulaManager.html#concat(org.sosy_lab.java_smt.api.StringFormula...)">concat</a>, <a href="../../api/StringFormulaManager.html#range(char,char)">range</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.StringFormulaManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingStringFormulaManager</h4>
+<pre>public&nbsp;DebuggingStringFormulaManager&#8203;(<a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>&nbsp;pDelegate,
+                                     org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="makeString(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeString</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeString&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#makeString(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Returns a <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>StringFormula</code></a> representing the given constant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#makeString(java.lang.String)">makeString</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the string value the returned <code>Formula</code> should represent</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a Formula representing the given value</dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#makeVariable(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of type String with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#makeVariable(java.lang.String)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>equal</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equal&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                            <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#equal(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">equal</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterThan&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                  <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#greaterThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>greaterOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;greaterOrEquals&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                      <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#greaterOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">greaterOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessThan</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessThan&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                               <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#lessThan(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessThan</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>lessOrEquals</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;lessOrEquals&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str1,
+                                   <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#lessOrEquals(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">lessOrEquals</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>prefix</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;prefix&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;prefix,
+                             <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Check whether the given prefix is a real prefix of str.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#prefix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">prefix</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>suffix</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;suffix&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;suffix,
+                             <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Check whether the given suffix is a real suffix of str.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#suffix(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">suffix</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>contains</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;contains&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                               <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#contains(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">contains</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>indexOf</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;indexOf&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                                             <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;part,
+                                             <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;startIndex)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get the first index for a substring in a String, or -1 if the substring is not found.
+ startIndex (inlcuded) denotes the start of the search for the index.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#indexOf(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">indexOf</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>charAt</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;charAt&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                            <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get a substring of length 1 from the given String.
+
+ <p>The result is underspecified, if the index is out of bounds for the given String.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#charAt(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">charAt</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>substring</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;substring&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                               <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;index,
+                               <a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Get a substring from the given String.
+
+ <p>The result is underspecified, if the start index is out of bounds for the given String or if
+ the requested length is negative. The length of the result is the minimum of the requested
+ length and the remaining length of the given String.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#substring(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula,org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">substring</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replace</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replace&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                             <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                             <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Replace the first appearances of target in fullStr with the replacement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#replace(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replace</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>replaceAll</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replaceAll&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;fullStr,
+                                <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;target,
+                                <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;replacement)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Replace all appearances of target in fullStr with the replacement.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#replaceAll(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">replaceAll</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="length(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>length</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;length&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#length(org.sosy_lab.java_smt.api.StringFormula)">length</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="concat(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concat</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;concat&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&gt;&nbsp;parts)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#concat(java.util.List)">concat</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>in</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;in&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str,
+                         <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#in(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.RegexFormula)">in</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>str</code> - formula representing the string to match</dd>
+<dd><code>regex</code> - formula representing the regular expression</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a formula representing the acceptance of the string by the regular expression</dd>
+</dl>
+</li>
+</ul>
+<a id="makeRegex(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeRegex</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;makeRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#makeRegex(java.lang.String)">StringFormulaManager</a></code></span></div>
+<div class="block">Returns a <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>RegexFormula</code></a> representing the given constant.
+
+ <p>This method does not parse an existing regex from String, but uses the String directly as a
+ constant.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#makeRegex(java.lang.String)">makeRegex</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>value</code> - the regular expression the returned <code>Formula</code> should represent</dd>
+</dl>
+</li>
+</ul>
+<a id="none()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>none</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;none()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#none()">none</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the empty set of strings</dd>
+</dl>
+</li>
+</ul>
+<a id="all()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>all</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;all()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#all()">StringFormulaManager</a></code></span></div>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#all()">all</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings, also known as Regex <code>".*"</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="allChar()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>allChar</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;allChar()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#allChar()">StringFormulaManager</a></code></span></div>
+<div class="block">Note: The size of the used alphabet depends on the underlying SMT solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#allChar()">allChar</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the set of all strings of length 1, also known as DOT operator which
+     represents one arbitrary char, or as Regex <code>"."</code>.</dd>
+</dl>
+</li>
+</ul>
+<a id="range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>range</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;range&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;start,
+                          <a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;end)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#range(org.sosy_lab.java_smt.api.StringFormula,org.sosy_lab.java_smt.api.StringFormula)">range</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the range regular expression over two sequences of length 1.</dd>
+</dl>
+</li>
+</ul>
+<a id="concatRegex(java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>concatRegex</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;concatRegex&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&gt;&nbsp;parts)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#concatRegex(java.util.List)">concatRegex</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation</dd>
+</dl>
+</li>
+</ul>
+<a id="union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>union</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;union&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                          <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#union(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">union</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the union</dd>
+</dl>
+</li>
+</ul>
+<a id="intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>intersection</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;intersection&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                                 <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#intersection(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">intersection</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the intersection</dd>
+</dl>
+</li>
+</ul>
+<a id="complement(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>complement</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;complement&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#complement(org.sosy_lab.java_smt.api.RegexFormula)">complement</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure</dd>
+</dl>
+</li>
+</ul>
+<a id="closure(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closure</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;closure&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#closure(org.sosy_lab.java_smt.api.RegexFormula)">closure</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene closure (0 or more), also known as STAR operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>difference</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;difference&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex1,
+                               <a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex2)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#difference(org.sosy_lab.java_smt.api.RegexFormula,org.sosy_lab.java_smt.api.RegexFormula)">difference</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the difference</dd>
+</dl>
+</li>
+</ul>
+<a id="cross(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>cross</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;cross&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#cross(org.sosy_lab.java_smt.api.RegexFormula)">cross</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the Kleene cross (1 or more), also known as PLUS operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="optional(org.sosy_lab.java_smt.api.RegexFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>optional</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;optional&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#optional(org.sosy_lab.java_smt.api.RegexFormula)">optional</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the optionality, also known as QUESTIONMARK operand.</dd>
+</dl>
+</li>
+</ul>
+<a id="times(org.sosy_lab.java_smt.api.RegexFormula,int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>times</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;times&#8203;(<a href="../../api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api">RegexFormula</a>&nbsp;regex,
+                          int&nbsp;repetitions)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#times(org.sosy_lab.java_smt.api.RegexFormula,int)">times</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>formula denoting the concatenation n times</dd>
+</dl>
+</li>
+</ul>
+<a id="toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>toIntegerFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;toIntegerFormula&#8203;(<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;str)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Interpret a String formula as an Integer formula.
+
+ <p>The number is interpreted in base 10 and has no leading zeros. The method works as expected
+ for positive numbers, including zero. It returns the constant value of <code>-1</code> for
+ negative numbers or invalid number representations, for example if any char is no digit.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#toIntegerFormula(org.sosy_lab.java_smt.api.StringFormula)">toIntegerFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toStringFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api">StringFormula</a>&nbsp;toStringFormula&#8203;(<a href="../../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>&nbsp;number)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/StringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">StringFormulaManager</a></code></span></div>
+<div class="block">Interpret an Integer formula as a String formula.
+
+ <p>The number is in base 10. The method works as expected for positive numbers, including zero.
+ It returns the empty string <code>""</code> for negative numbers.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/StringFormulaManager.html#toStringFormula(org.sosy_lab.java_smt.api.NumeralFormula.IntegerFormula)">toStringFormula</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html
new file mode 100644
index 0000000000..b206c5fe00
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html
@@ -0,0 +1,458 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>DebuggingUFManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="DebuggingUFManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.debugging</a></div>
+<h2 title="Class DebuggingUFManager" class="title">Class DebuggingUFManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.debugging.DebuggingUFManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">DebuggingUFManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.UFManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">DebuggingUFManager</a></span>&#8203;(<a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>&nbsp;pDelegate,
+                  org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF</a></span>&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+      <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Create an uninterpreted function call.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF</a></span>&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+      <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</code></th>
+<td class="colLast">
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br>T</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+         <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;<br><a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+         <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+         <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;args)</code></th>
+<td class="colLast">
+<div class="block">Declare an uninterpreted function.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.UFManager,org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>DebuggingUFManager</h4>
+<pre>public&nbsp;DebuggingUFManager&#8203;(<a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>&nbsp;pDelegate,
+                          org.sosy_lab.java_smt.delegate.debugging.DebuggingAssertions&nbsp;pDebugging)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                            <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+                                                            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;&gt;&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Declare an uninterpreted function.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;declareUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                            <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;returnType,
+                                                            <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;?&gt;...&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">UFManager</a></code></span></div>
+<div class="block">Declare an uninterpreted function.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#declareUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.FormulaType...)">declareUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;? extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;args)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Create an uninterpreted function call.
+
+ <p>Simply delegates to <a href="../../api/FormulaManager.html#makeApplication(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>FormulaManager.makeApplication(FunctionDeclaration, List)</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)">callUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>funcType</code> - Declaration of the function to call.</dd>
+<dd><code>args</code> - Arguments of the function.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Instantiated function call.</dd>
+</dl>
+</li>
+</ul>
+<a id="callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>callUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;callUF&#8203;(<a href="../../api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;T&gt;&nbsp;funcType,
+                                    <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;args)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,org.sosy_lab.java_smt.api.Formula...)">callUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/UFManager.html#callUF(org.sosy_lab.java_smt.api.FunctionDeclaration,java.util.List)"><code>UFManager.callUF(FunctionDeclaration, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                              <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                              <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;pArgs)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">UFManager</a></code></span></div>
+<div class="block">Declares and calls an uninterpreted function with exactly the given name.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)">declareAndCallUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>declareAndCallUF</h4>
+<pre class="methodSignature">public&nbsp;&lt;T extends <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;T&nbsp;declareAndCallUF&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                              <a href="../../api/FormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType</a>&lt;T&gt;&nbsp;pReturnType,
+                                              <a href="../../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>...&nbsp;pArgs)</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,org.sosy_lab.java_smt.api.Formula...)">declareAndCallUF</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/UFManager.html#declareAndCallUF(java.lang.String,org.sosy_lab.java_smt.api.FormulaType,java.util.List)"><code>UFManager.declareAndCallUF(String, FormulaType, List)</code></a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/package-summary.html b/api/org/sosy_lab/java_smt/delegate/debugging/package-summary.html
new file mode 100644
index 0000000000..9664a7462a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/package-summary.html
@@ -0,0 +1,242 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.debugging (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.debugging (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.delegate.debugging</h1>
+</div>
+<div class="contentContainer">
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingArrayFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBitvectorFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingBooleanFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingEnumerationFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFloatingPointFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingIntegerFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingInterpolatingProverEnvironment</a>&lt;T&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingModel</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingNumeralFormulaManager</a>&lt;ParamFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>,&#8203;ResultFormulaType extends <a href="../../api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula</a>&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingOptimizationProverEnvironment</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingProverEnvironment</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingQuantifiedFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingRationalFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSLFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverContext</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingSolverInformation</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingStringFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging">DebuggingUFManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/debugging/package-tree.html b/api/org/sosy_lab/java_smt/delegate/debugging/package-tree.html
new file mode 100644
index 0000000000..bea20c6b87
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/debugging/package-tree.html
@@ -0,0 +1,183 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.debugging Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.debugging Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.delegate.debugging</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingArrayFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBitvectorFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBooleanFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFloatingPointFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingInterpolatingProverEnvironment</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingModel</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingNumeralFormulaManager</span></a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt; (implements org.sosy_lab.java_smt.api.<a href="../../api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingIntegerFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingRationalFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingOptimizationProverEnvironment</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingProverEnvironment</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingQuantifiedFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSLFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverInformation</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingStringFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingUFManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>)</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html b/api/org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html
new file mode 100644
index 0000000000..7b3dc49c27
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html
@@ -0,0 +1,532 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>LoggingSolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="LoggingSolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.logging</a></div>
+<h2 title="Class LoggingSolverContext" class="title">Class LoggingSolverContext</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.logging.LoggingSolverContext</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public final class <span class="typeNameLabel">LoggingSolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></pre>
+<div class="block"><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> that wraps all prover environments in their logging versions.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.common.log.LogManager,org.sosy_lab.java_smt.api.SolverContext)">LoggingSolverContext</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                    <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Close the solver context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverName()">getSolverName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a complete solver context.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get version information out of the solver.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.common.log.LogManager,org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>LoggingSolverContext</h4>
+<pre>public&nbsp;LoggingSolverContext&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                            <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getFormulaManager()">SolverContext</a></code></span></div>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getFormulaManager()">getFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>options</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getVersion()">SolverContext</a></code></span></div>
+<div class="block">Get version information out of the solver.
+
+ <p>In most cases, the version contains the name of the solver followed by some numbers and
+ additional info about the version, e.g., "SMTInterpol 2.5-12-g3d15a15c".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getVersion()">getVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverName</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;getSolverName()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getSolverName()">SolverContext</a></code></span></div>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).
+
+ <p>This is an uppercase String matching the enum identifier from <a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><code>SolverContextFactory.Solvers</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getSolverName()">getSolverName</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getStatistics()">SolverContext</a></code></span></div>
+<div class="block">Get statistics for a complete solver context. The returned mapping is intended to provide the
+ solver-internal statistics. The keys can differ between individual solvers.
+
+ <p>Calling the statistics several times for the same context returns accumulated number, i.e.,
+ we currently do not provide any possibility to reset the statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getStatistics()">getStatistics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BasicProverEnvironment.html#getStatistics()"><code>BasicProverEnvironment.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#close()">SolverContext</a></code></span></div>
+<div class="block">Close the solver context.
+
+ <p>After calling this method, further access to any object that had been returned from this
+ context is not wanted, i.e., it depends on the solver. Java-based solvers might wait for the
+ next garbage collection with any cleanup operation. Native solvers might even reference invalid
+ memory and cause segmentation faults.
+
+ <p>Necessary for the solvers implemented in native code, frees the associated memory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/logging/package-summary.html b/api/org/sosy_lab/java_smt/delegate/logging/package-summary.html
new file mode 100644
index 0000000000..87552ce1dc
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/logging/package-summary.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.logging (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.logging (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.delegate.logging</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Wraps the proving environment with loggers.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging">LoggingSolverContext</a></th>
+<td class="colLast">
+<div class="block"><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> that wraps all prover environments in their logging versions.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/logging/package-tree.html b/api/org/sosy_lab/java_smt/delegate/logging/package-tree.html
new file mode 100644
index 0000000000..1bd6df9f68
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/logging/package-tree.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.logging Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.logging Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.delegate.logging</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.logging.<a href="LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging"><span class="typeNameLink">LoggingSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html b/api/org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html
new file mode 100644
index 0000000000..c49ccffda9
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html
@@ -0,0 +1,643 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverStatistics (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverStatistics (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></div>
+<h2 title="Class SolverStatistics" class="title">Class SolverStatistics</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.statistics.SolverStatistics</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">SolverStatistics</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#asMap()">asMap</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMaxTimeOfAllSatQueries()">getMaxTimeOfAllSatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMaxTimeOfInterpolationQueries()">getMaxTimeOfInterpolationQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMaxTimeOfIsUnsatQueries()">getMaxTimeOfIsUnsatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfAddConstraintQueries()">getNumberOfAddConstraintQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfAllSatQueries()">getNumberOfAllSatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfArrayOperations()">getNumberOfArrayOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfBooleanOperations()">getNumberOfBooleanOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfBVOperations()">getNumberOfBVOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfFPOperations()">getNumberOfFPOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfInterpolationQueries()">getNumberOfInterpolationQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfIsUnsatQueries()">getNumberOfIsUnsatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfModelEvaluationQueries()">getNumberOfModelEvaluationQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfModelListings()">getNumberOfModelListings</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfModelQueries()">getNumberOfModelQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfNumericOperations()">getNumberOfNumericOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfPopQueries()">getNumberOfPopQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfProverEnvironments()">getNumberOfProverEnvironments</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfPushQueries()">getNumberOfPushQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfQuantifierOperations()">getNumberOfQuantifierOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfSLOperations()">getNumberOfSLOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfStringOperations()">getNumberOfStringOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfUFOperations()">getNumberOfUFOperations</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfUnsatCoreQueries()">getNumberOfUnsatCoreQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfVisits()">getNumberOfVisits</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSumTimeOfAllSatQueries()">getSumTimeOfAllSatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSumTimeOfInterpolationQueries()">getSumTimeOfInterpolationQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSumTimeOfIsUnsatQueries()">getSumTimeOfIsUnsatQueries</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getNumberOfProverEnvironments()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfProverEnvironments</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfProverEnvironments()</pre>
+</li>
+</ul>
+<a id="getNumberOfPopQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfPopQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfPopQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfPushQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfPushQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfPushQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfAddConstraintQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfAddConstraintQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfAddConstraintQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfModelQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfModelQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfModelQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfUnsatCoreQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfUnsatCoreQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfUnsatCoreQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfIsUnsatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfIsUnsatQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfIsUnsatQueries()</pre>
+</li>
+</ul>
+<a id="getSumTimeOfIsUnsatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSumTimeOfIsUnsatQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getSumTimeOfIsUnsatQueries()</pre>
+</li>
+</ul>
+<a id="getMaxTimeOfIsUnsatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMaxTimeOfIsUnsatQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getMaxTimeOfIsUnsatQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfAllSatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfAllSatQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfAllSatQueries()</pre>
+</li>
+</ul>
+<a id="getSumTimeOfAllSatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSumTimeOfAllSatQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getSumTimeOfAllSatQueries()</pre>
+</li>
+</ul>
+<a id="getMaxTimeOfAllSatQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMaxTimeOfAllSatQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getMaxTimeOfAllSatQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfInterpolationQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfInterpolationQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfInterpolationQueries()</pre>
+</li>
+</ul>
+<a id="getSumTimeOfInterpolationQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSumTimeOfInterpolationQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getSumTimeOfInterpolationQueries()</pre>
+</li>
+</ul>
+<a id="getMaxTimeOfInterpolationQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMaxTimeOfInterpolationQueries</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getMaxTimeOfInterpolationQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfBooleanOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfBooleanOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfBooleanOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfVisits()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfVisits</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfVisits()</pre>
+</li>
+</ul>
+<a id="getNumberOfNumericOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfNumericOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfNumericOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfArrayOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfArrayOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfArrayOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfSLOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfSLOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfSLOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfUFOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfUFOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfUFOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfQuantifierOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfQuantifierOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfQuantifierOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfBVOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfBVOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfBVOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfFPOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfFPOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfFPOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfStringOperations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfStringOperations</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfStringOperations()</pre>
+</li>
+</ul>
+<a id="getNumberOfModelEvaluationQueries()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfModelEvaluationQueries</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfModelEvaluationQueries()</pre>
+</li>
+</ul>
+<a id="getNumberOfModelListings()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfModelListings</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfModelListings()</pre>
+</li>
+</ul>
+<a id="asMap()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>asMap</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;asMap()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html
new file mode 100644
index 0000000000..6cf914bcd2
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>StatisticsEnumerationFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="StatisticsEnumerationFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></div>
+<h2 title="Class StatisticsEnumerationFormulaManager" class="title">Class StatisticsEnumerationFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.statistics.StatisticsEnumerationFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">StatisticsEnumerationFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;elementNames)</code></th>
+<td class="colLast">
+<div class="block">Declare an enumeration.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></span>&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+           <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.EnumerationFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></h3>
+<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareEnumeration(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;elementNames)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Declare an enumeration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the unique name to identify the new enumeration type.</dd>
+<dd><code>elementNames</code> - names for all individual elements of this enumeration type.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeConstant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a constant of given enumeration type with exactly the given name. This constant
+ (symbol) needs to be an element from the given enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+                                  <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html b/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html
new file mode 100644
index 0000000000..e095053c8d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html
@@ -0,0 +1,546 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>StatisticsSolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="StatisticsSolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></div>
+<h2 title="Class StatisticsSolverContext" class="title">Class StatisticsSolverContext</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.statistics.StatisticsSolverContext</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">StatisticsSolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">StatisticsSolverContext</a></span>&#8203;(<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Close the solver context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverName()">getSolverName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverStatistics()">getSolverStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">export statistics about the solver interaction.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a complete solver context.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get version information out of the solver.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>StatisticsSolverContext</h4>
+<pre>public&nbsp;StatisticsSolverContext&#8203;(<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getFormulaManager()">SolverContext</a></code></span></div>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getFormulaManager()">getFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getVersion()">SolverContext</a></code></span></div>
+<div class="block">Get version information out of the solver.
+
+ <p>In most cases, the version contains the name of the solver followed by some numbers and
+ additional info about the version, e.g., "SMTInterpol 2.5-12-g3d15a15c".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getVersion()">getVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverName</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;getSolverName()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getSolverName()">SolverContext</a></code></span></div>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).
+
+ <p>This is an uppercase String matching the enum identifier from <a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><code>SolverContextFactory.Solvers</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getSolverName()">getSolverName</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getStatistics()">SolverContext</a></code></span></div>
+<div class="block">Get statistics for a complete solver context. The returned mapping is intended to provide the
+ solver-internal statistics. The keys can differ between individual solvers.
+
+ <p>Calling the statistics several times for the same context returns accumulated number, i.e.,
+ we currently do not provide any possibility to reset the statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getStatistics()">getStatistics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BasicProverEnvironment.html#getStatistics()"><code>BasicProverEnvironment.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#close()">SolverContext</a></code></span></div>
+<div class="block">Close the solver context.
+
+ <p>After calling this method, further access to any object that had been returned from this
+ context is not wanted, i.e., it depends on the solver. Java-based solvers might wait for the
+ next garbage collection with any cleanup operation. Native solvers might even reference invalid
+ memory and cause segmentation faults.
+
+ <p>Necessary for the solvers implemented in native code, frees the associated memory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverStatistics()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getSolverStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a>&nbsp;getSolverStatistics()</pre>
+<div class="block">export statistics about the solver interaction.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html b/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html
new file mode 100644
index 0000000000..8a262d4752
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html
@@ -0,0 +1,284 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>TimerPool.TimerWrapper (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="TimerPool.TimerWrapper (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></div>
+<h2 title="Class TimerPool.TimerWrapper" class="title">Class TimerPool.TimerWrapper</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.statistics.TimerPool.TimerWrapper</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">TimerPool.TimerWrapper</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">A minimal wrapper to keep a reference on the timer and provide a limited view.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#start()">start</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stop()">stop</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="start()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>start</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;start()</pre>
+</li>
+</ul>
+<a id="stop()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>stop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stop()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.html b/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.html
new file mode 100644
index 0000000000..6e5b8568c0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/TimerPool.html
@@ -0,0 +1,398 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>TimerPool (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="TimerPool (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.statistics</a></div>
+<h2 title="Class TimerPool" class="title">Class TimerPool</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.statistics.TimerPool</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">TimerPool</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></span></code></th>
+<td class="colLast">
+<div class="block">A minimal wrapper to keep a reference on the timer and provide a limited view.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">TimerPool</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getMaxTime()">getMaxTime</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return the maximal time of all intervals.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNewTimer()">getNewTimer</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumberOfIntervals()">getNumberOfIntervals</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return the number of intervals.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSumTime()">getSumTime</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>TimerPool</h4>
+<pre>public&nbsp;TimerPool()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getNewTimer()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNewTimer</h4>
+<pre class="methodSignature">public&nbsp;<a href="TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a>&nbsp;getNewTimer()</pre>
+</li>
+</ul>
+<a id="getSumTime()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSumTime</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getSumTime()</pre>
+</li>
+</ul>
+<a id="getMaxTime()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getMaxTime</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/time/TimeSpan.html?is-external=true" title="class or interface in org.sosy_lab.common.time" class="externalLink">TimeSpan</a>&nbsp;getMaxTime()</pre>
+<div class="block">Return the maximal time of all intervals. If timers are running, the current intervals are also
+ counted (up to the current time). If no timer was started, this method returns 0.</div>
+</li>
+</ul>
+<a id="getNumberOfIntervals()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumberOfIntervals</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumberOfIntervals()</pre>
+<div class="block">Return the number of intervals. If timers are running, the current intervals are also counted.
+ If no timer was started, this method returns 0.</div>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/package-summary.html b/api/org/sosy_lab/java_smt/delegate/statistics/package-summary.html
new file mode 100644
index 0000000000..1e7bb004e7
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/package-summary.html
@@ -0,0 +1,193 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.statistics (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.statistics (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.delegate.statistics</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">The classes of this package wrap the whole proving environment and measure all accesses to it.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics">SolverStatistics</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsEnumerationFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics">StatisticsSolverContext</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics">TimerPool.TimerWrapper</a></th>
+<td class="colLast">
+<div class="block">A minimal wrapper to keep a reference on the timer and provide a limited view.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/statistics/package-tree.html b/api/org/sosy_lab/java_smt/delegate/statistics/package-tree.html
new file mode 100644
index 0000000000..89a6e1f8ca
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/statistics/package-tree.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.statistics Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.statistics Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.delegate.statistics</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">SolverStatistics</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool.TimerWrapper</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html b/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html
new file mode 100644
index 0000000000..3c1dfc3e76
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SynchronizedEnumerationFormulaManager (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SynchronizedEnumerationFormulaManager (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a></div>
+<h2 title="Class SynchronizedEnumerationFormulaManager" class="title">Class SynchronizedEnumerationFormulaManager</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.synchronize.SynchronizedEnumerationFormulaManager</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">SynchronizedEnumerationFormulaManager</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;elementNames)</code></th>
+<td class="colLast">
+<div class="block">Declare an enumeration.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></span>&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+           <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</code></th>
+<td class="colLast">
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a constant of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+            <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</code></th>
+<td class="colLast">
+<div class="block">Creates a variable of given enumeration type with exactly the given name.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.api.EnumerationFormulaManager">
+<!--   -->
+</a>
+<h3>Methods inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></h3>
+<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.lang.String...)">declareEnumeration</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="declareEnumeration(java.lang.String,java.util.Set)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>declareEnumeration</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;declareEnumeration&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name,
+                                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;elementNames)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Declare an enumeration.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#declareEnumeration(java.lang.String,java.util.Set)">declareEnumeration</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the unique name to identify the new enumeration type.</dd>
+<dd><code>elementNames</code> - names for all individual elements of this enumeration type.</dd>
+</dl>
+</li>
+</ul>
+<a id="makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeConstant</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeConstant&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pName,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a constant of given enumeration type with exactly the given name. This constant
+ (symbol) needs to be an element from the given enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeConstant(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeConstant</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>makeVariable</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;makeVariable&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;pVar,
+                                       <a href="../../api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api">FormulaType.EnumerationFormulaType</a>&nbsp;pType)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Creates a variable of given enumeration type with exactly the given name.
+
+ <p>This variable (symbol) represents a "String" for which the SMT solver needs to find a model.
+
+ <p>Please make sure that the given name is valid in SMT-LIB2. Take a look at <a href="../../api/FormulaManager.html#isValidName(java.lang.String)"><code>FormulaManager.isValidName(java.lang.String)</code></a> for further information.
+
+ <p>This method does not quote or unquote the given name, but uses the plain name "AS IS".
+ <a href="../../api/Formula.html#toString()"><code>Formula.toString()</code></a> can return a different String than the given one.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#makeVariable(java.lang.String,org.sosy_lab.java_smt.api.FormulaType.EnumerationFormulaType)">makeVariable</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>equivalence</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;equivalence&#8203;(<a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration1,
+                                  <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>&nbsp;pEnumeration2)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">EnumerationFormulaManager</a></code></span></div>
+<div class="block">Make a <a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a> that represents the equality of two <a href="../../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>EnumerationFormula</code></a> of
+ identical enumeration type.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/EnumerationFormulaManager.html#equivalence(org.sosy_lab.java_smt.api.EnumerationFormula,org.sosy_lab.java_smt.api.EnumerationFormula)">equivalence</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html b/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html
new file mode 100644
index 0000000000..014ae01c67
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html
@@ -0,0 +1,540 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SynchronizedSolverContext (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SynchronizedSolverContext (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.delegate.synchronize</a></div>
+<h2 title="Class SynchronizedSolverContext" class="title">Class SynchronizedSolverContext</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.delegate.synchronize.SynchronizedSolverContext</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code>, <code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">SynchronizedSolverContext</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>
+implements <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.api.SolverContext">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from interface&nbsp;org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></h3>
+<code><a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.api.SolverContext)">SynchronizedSolverContext</a></span>&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                         <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                         <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+                         <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#close()">close</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Close the solver context.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormulaManager()">getFormulaManager</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverName()">getSolverName</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getStatistics()">getStatistics</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get statistics for a complete solver context.</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Get version information out of the solver.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code><a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code><a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code><a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></span>&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</code></th>
+<td class="colLast">
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.common.configuration.Configuration,org.sosy_lab.common.log.LogManager,org.sosy_lab.common.ShutdownNotifier,org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SynchronizedSolverContext</h4>
+<pre>public&nbsp;SynchronizedSolverContext&#8203;(<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a>&nbsp;pConfig,
+                                 <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a>&nbsp;pLogger,
+                                 <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;pShutdownNotifier,
+                                 <a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pDelegate)
+                          throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getFormulaManager()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormulaManager</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;getFormulaManager()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getFormulaManager()">SolverContext</a></code></span></div>
+<div class="block">Get the formula manager, which is used for formula manipulation.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getFormulaManager()">getFormulaManager</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;newProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>ProverEnvironment</code></a> which encapsulates an assertion stack and can be
+ used to check formulas for unsatisfiability.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newProverEnvironmentWithInterpolation</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;?&gt;&nbsp;newProverEnvironmentWithInterpolation&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows generating and retrieve interpolants for unsatisfiable formulas. If the SMT solver
+ is able to handle satisfiability tests with assumptions please consider implementing the <a href="../../api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>InterpolatingProverEnvironment</code></a> interface, and return an Object of this type here.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newProverEnvironmentWithInterpolation(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newProverEnvironmentWithInterpolation</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newOptimizationProverEnvironment</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>&nbsp;newOptimizationProverEnvironment&#8203;(<a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;pOptions)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">SolverContext</a></code></span></div>
+<div class="block">Create a fresh new <a href="../../api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><code>OptimizationProverEnvironment</code></a> which encapsulates an assertion stack
+ and allows solving optimization queries.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#newOptimizationProverEnvironment(org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newOptimizationProverEnvironment</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pOptions</code> - Options specified for the prover environment. All the options specified in
+     <a href="../../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><code>SolverContext.ProverOptions</code></a> are turned off by default.</dd>
+</dl>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getVersion()">SolverContext</a></code></span></div>
+<div class="block">Get version information out of the solver.
+
+ <p>In most cases, the version contains the name of the solver followed by some numbers and
+ additional info about the version, e.g., "SMTInterpol 2.5-12-g3d15a15c".</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getVersion()">getVersion</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getSolverName</h4>
+<pre class="methodSignature">public&nbsp;<a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;getSolverName()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getSolverName()">SolverContext</a></code></span></div>
+<div class="block">Get solver name (MATHSAT5/Z3/etc...).
+
+ <p>This is an uppercase String matching the enum identifier from <a href="../../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><code>SolverContextFactory.Solvers</code></a></div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getSolverName()">getSolverName</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getStatistics()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getStatistics</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://guava.dev/releases/snapshot/api/docs/com/google/common/collect/ImmutableMap.html?is-external=true" title="class or interface in com.google.common.collect" class="externalLink">ImmutableMap</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&gt;&nbsp;getStatistics()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#getStatistics()">SolverContext</a></code></span></div>
+<div class="block">Get statistics for a complete solver context. The returned mapping is intended to provide the
+ solver-internal statistics. The keys can differ between individual solvers.
+
+ <p>Calling the statistics several times for the same context returns accumulated number, i.e.,
+ we currently do not provide any possibility to reset the statistics.
+
+ <p>We do not guarantee any specific key to be present, as this depends on the used solver. We
+ might even return an empty mapping if the solver does not support calling this method or is in
+ an invalid state.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#getStatistics()">getStatistics</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../api/BasicProverEnvironment.html#getStatistics()"><code>BasicProverEnvironment.getStatistics()</code></a></dd>
+</dl>
+</li>
+</ul>
+<a id="close()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>close</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;close()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/SolverContext.html#close()">SolverContext</a></code></span></div>
+<div class="block">Close the solver context.
+
+ <p>After calling this method, further access to any object that had been returned from this
+ context is not wanted, i.e., it depends on the solver. Java-based solvers might wait for the
+ next garbage collection with any cleanup operation. Native solvers might even reference invalid
+ memory and cause segmentation faults.
+
+ <p>Necessary for the solvers implemented in native code, frees the associated memory.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true#close()" title="class or interface in java.lang" class="externalLink">close</a></code>&nbsp;in interface&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/SolverContext.html#close()">close</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/synchronize/package-summary.html b/api/org/sosy_lab/java_smt/delegate/synchronize/package-summary.html
new file mode 100644
index 0000000000..3de5446106
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/synchronize/package-summary.html
@@ -0,0 +1,184 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.synchronize (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.synchronize (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.delegate.synchronize</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">The classes of this package wrap the whole solver context and all corresponding proving
+ environment and synchronize all accesses to it.
+
+ <p>This allows us to use a plain sequential solver in a concurrent context, i.e., we can create
+ formulae and solve queries from multiple interleaving threads without any synchronization from
+ the user.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedEnumerationFormulaManager</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize">SynchronizedSolverContext</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/delegate/synchronize/package-tree.html b/api/org/sosy_lab/java_smt/delegate/synchronize/package-tree.html
new file mode 100644
index 0000000000..40430a75aa
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/delegate/synchronize/package-tree.html
@@ -0,0 +1,163 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.delegate.synchronize Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.delegate.synchronize Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.delegate.synchronize</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.synchronize.<a href="SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.synchronize.<a href="SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/AllSatExample.html b/api/org/sosy_lab/java_smt/example/AllSatExample.html
new file mode 100644
index 0000000000..231148a2d5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/AllSatExample.html
@@ -0,0 +1,317 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>AllSatExample (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="AllSatExample (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class AllSatExample" class="title">Class AllSatExample</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.AllSatExample</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">AllSatExample</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This example shows different ways to get all satisfiable models for a given set of constraints.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.ProverEnvironment)">AllSatExample</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+             <a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;pProver)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.ProverEnvironment)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>AllSatExample</h4>
+<pre>public&nbsp;AllSatExample&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+                     <a href="../api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>&nbsp;pProver)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html b/api/org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html
new file mode 100644
index 0000000000..f3ad21c5d8
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html
@@ -0,0 +1,285 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Binoxxo.BinoxxoSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Binoxxo.BinoxxoSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Binoxxo.BinoxxoSolver" class="title">Class Binoxxo.BinoxxoSolver&lt;S&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Binoxxo.BinoxxoSolver&lt;S&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></code>, <code><a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></dd>
+</dl>
+<hr>
+<pre>public abstract static class <span class="typeNameLabel">Binoxxo.BinoxxoSolver&lt;S&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>char[][]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solve(char%5B%5D%5B%5D)">solve</a></span>&#8203;(char[][]&nbsp;grid)</code></th>
+<td class="colLast">
+<div class="block">Solves a Binoxxo using the given grid values and returns a possible solution.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="solve(char[][])">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>solve</h4>
+<pre class="methodSignature">public&nbsp;char[][]&nbsp;solve&#8203;(char[][]&nbsp;grid)
+               throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                      <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Solves a Binoxxo using the given grid values and returns a possible solution. Return <code>
+ Null
+ </code> if Binoxxo cannot be solved.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html b/api/org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html
new file mode 100644
index 0000000000..6d2961424a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html
@@ -0,0 +1,285 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Binoxxo.BooleanBasedBinoxxoSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Binoxxo.BooleanBasedBinoxxoSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Binoxxo.BooleanBasedBinoxxoSolver" class="title">Class Binoxxo.BooleanBasedBinoxxoSolver</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">org.sosy_lab.java_smt.example.Binoxxo.BinoxxoSolver</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][]&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Binoxxo.BooleanBasedBinoxxoSolver</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">Binoxxo.BooleanBasedBinoxxoSolver</span>
+extends <a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][]&gt;</pre>
+<div class="block">This solver encodes nore steps into boolean logic, which makes it about 10x faster than the
+ <a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><code>Binoxxo.IntegerBasedBinoxxoSolver</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">BooleanBasedBinoxxoSolver</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.Binoxxo.BinoxxoSolver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.<a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a></h3>
+<code><a href="Binoxxo.BinoxxoSolver.html#solve(char%5B%5D%5B%5D)">solve</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>BooleanBasedBinoxxoSolver</h4>
+<pre>public&nbsp;BooleanBasedBinoxxoSolver&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html b/api/org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html
new file mode 100644
index 0000000000..a4df54b674
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Binoxxo.IntegerBasedBinoxxoSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Binoxxo.IntegerBasedBinoxxoSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Binoxxo.IntegerBasedBinoxxoSolver" class="title">Class Binoxxo.IntegerBasedBinoxxoSolver</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">org.sosy_lab.java_smt.example.Binoxxo.BinoxxoSolver</a>&lt;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>[][]&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Binoxxo.IntegerBasedBinoxxoSolver</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">Binoxxo.IntegerBasedBinoxxoSolver</span>
+extends <a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a>&lt;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>[][]&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">IntegerBasedBinoxxoSolver</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.Binoxxo.BinoxxoSolver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.<a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a></h3>
+<code><a href="Binoxxo.BinoxxoSolver.html#solve(char%5B%5D%5B%5D)">solve</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>IntegerBasedBinoxxoSolver</h4>
+<pre>public&nbsp;IntegerBasedBinoxxoSolver&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Binoxxo.html b/api/org/sosy_lab/java_smt/example/Binoxxo.html
new file mode 100644
index 0000000000..1071454dd3
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Binoxxo.html
@@ -0,0 +1,351 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Binoxxo (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Binoxxo (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Binoxxo" class="title">Class Binoxxo</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Binoxxo</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">Binoxxo</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This program parses a user-given Binoxxo and solves it with an SMT solver. Binoxxo is a
+ grid-based Sudoku-like puzzle with values 'O' and 'X' and follows the following rules:
+
+ <ul>
+   <li>In each column or row there are as many 'X's as 'O's.
+   <li>Three aligned cells must not contains an identical value.
+ </ul>
+
+ <p>The Binoxxo is read from StdIn and should be formatted as the following example:
+
+ <pre>
+ X..O...XX.
+ .O.O....X.
+ OO..O..X..
+ ...O....X.
+ .O........
+ .O.....O.X
+ X...X.O...
+ .X..XO...X
+ X.....OO..
+ X..X..O..O
+ </pre>
+
+ <p>A empty newline will terminate the input and start the solving process.
+
+ <p>The solution will then be printed on StdOut, just like the following solution:
+
+ <pre>
+ XXOOXOOXXO
+ OOXOOXXOXX
+ OOXXOOXXOX
+ XXOOXXOOXO
+ OOXXOOXXOX
+ OOXXOXXOOX
+ XXOOXXOOXO
+ OXOOXOXXOX
+ XOXXOXOOXO
+ XXOXXOOXOO
+ </pre></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a>&lt;<a href="Binoxxo.BinoxxoSolver.html" title="type parameter in Binoxxo.BinoxxoSolver">S</a>&gt;</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></span></code></th>
+<td class="colLast">
+<div class="block">This solver encodes nore steps into boolean logic, which makes it about 10x faster than the
+ <a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><code>Binoxxo.IntegerBasedBinoxxoSolver</code></a>.</div>
+</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/FormulaClassifier.html b/api/org/sosy_lab/java_smt/example/FormulaClassifier.html
new file mode 100644
index 0000000000..00abc5bb6c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/FormulaClassifier.html
@@ -0,0 +1,351 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>FormulaClassifier (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="FormulaClassifier (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":10,"i2":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class FormulaClassifier" class="title">Class FormulaClassifier</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.FormulaClassifier</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">FormulaClassifier</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This program parses user-given formulas and prints out the (minimal) matching theory for them.
+
+ <p>Warning: This is a prototype and not intended for larger usage.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">FormulaClassifier</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#visit(org.sosy_lab.java_smt.api.BooleanFormula)">visit</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>FormulaClassifier</h4>
+<pre>public&nbsp;FormulaClassifier&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="visit(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>visit</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;visit&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</pre>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/HoudiniApp.html b/api/org/sosy_lab/java_smt/example/HoudiniApp.html
new file mode 100644
index 0000000000..44073a6f2f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/HoudiniApp.html
@@ -0,0 +1,356 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>HoudiniApp (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="HoudiniApp (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class HoudiniApp" class="title">Class HoudiniApp</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.HoudiniApp</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">HoudiniApp</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This application executes the inductive-invariant synthesis algorithm called "Houdini" taken from
+ the paper Flanagan and Leino: "Houdini, an Annotation Assistant for ESC/Java".
+
+ <p>It considers a program manipulating a set X of variables, defined by an initial condition I(X)
+ (given as lemmas) and a transition relation T(X, X'). Both I and T are quantifier-free
+ first-order formulas.
+
+ <p>A lemma F is called inductive with respect to T if it implies itself over the primed variables
+ after the transition: FORALL X, X' . IMPLIES( AND( F(X), T(X, X') ), F(X')) i.e. in other words,
+ the formula AND( F(X), T(X, X'), NOT(F(X')) ) is unsatisfiable.
+
+ <p>The Houdini algorithm finds and returns a maximal inductive subset L_I of a given set L of
+ candidate lemmas. It repeatedly checks the conjunction of L for inductiveness and updates L to
+ exclude the lemmas that give rise to counterexamples-to-induction.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">HoudiniApp</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;solverContext)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#houdini(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">houdini</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;lemmas,
+       <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transition)</code></th>
+<td class="colLast">
+<div class="block">execute the Houdini algorithm to get the maximal inductive subset L_I for the given lemmas and
+ the transition.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>HoudiniApp</h4>
+<pre>public&nbsp;HoudiniApp&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;solverContext)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="houdini(java.util.List,org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>houdini</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;houdini&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html?is-external=true" title="class or interface in java.util" class="externalLink">List</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;lemmas,
+                                    <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;transition)
+                             throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">execute the Houdini algorithm to get the maximal inductive subset L_I for the given lemmas and
+ the transition.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Interpolation.html b/api/org/sosy_lab/java_smt/example/Interpolation.html
new file mode 100644
index 0000000000..b1ee3616e4
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Interpolation.html
@@ -0,0 +1,275 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Interpolation (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Interpolation (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Interpolation" class="title">Class Interpolation</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Interpolation</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">Interpolation</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Examples for Craig/sequential/tree interpolation.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/NQueens.html b/api/org/sosy_lab/java_smt/example/NQueens.html
new file mode 100644
index 0000000000..e5c1647f2a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/NQueens.html
@@ -0,0 +1,284 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NQueens (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NQueens (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class NQueens" class="title">Class NQueens</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.NQueens</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">NQueens</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.
+
+ <p>For example, the Queen can be placed in these ways for a field size of 4:
+
+ <pre>
+   .Q..
+   ...Q
+   Q...
+   ..Q.
+ </pre></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html b/api/org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html
new file mode 100644
index 0000000000..ae2e0f7a15
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html
@@ -0,0 +1,277 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>OptimizationFormulaWeights (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="OptimizationFormulaWeights (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class OptimizationFormulaWeights" class="title">Class OptimizationFormulaWeights</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.OptimizationFormulaWeights</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">OptimizationFormulaWeights</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Example for optimizing the weight of some constraints. For a given set of formulas, the weight of
+ the satisfied formulas should be maximal and the weight of unsatisfied formulas should be
+ minimal.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/OptimizationIntReal.html b/api/org/sosy_lab/java_smt/example/OptimizationIntReal.html
new file mode 100644
index 0000000000..2eee4b7008
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/OptimizationIntReal.html
@@ -0,0 +1,276 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>OptimizationIntReal (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="OptimizationIntReal (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class OptimizationIntReal" class="title">Class OptimizationIntReal</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.OptimizationIntReal</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">OptimizationIntReal</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Example for optimizing 'x' with the constraint '0 &lt;= x &lt; 10'. We show the difference
+ between optimizing in integer and rational logic.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/PrettyPrinter.html b/api/org/sosy_lab/java_smt/example/PrettyPrinter.html
new file mode 100644
index 0000000000..42ab155797
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/PrettyPrinter.html
@@ -0,0 +1,277 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>PrettyPrinter (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="PrettyPrinter (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class PrettyPrinter" class="title">Class PrettyPrinter</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.PrettyPrinter</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">PrettyPrinter</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This program parses user-given formulas and prints them in a pretty format.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/SimpleUserPropagator.html b/api/org/sosy_lab/java_smt/example/SimpleUserPropagator.html
new file mode 100644
index 0000000000..549c34f7a3
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/SimpleUserPropagator.html
@@ -0,0 +1,275 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SimpleUserPropagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SimpleUserPropagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class SimpleUserPropagator" class="title">Class SimpleUserPropagator</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.SimpleUserPropagator</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">SimpleUserPropagator</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Example of a simple user propagator that prohibits variables/expressions to be set to true.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String%5B%5D)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>[]&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String[])">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>[]&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html
new file mode 100644
index 0000000000..e6ca79ced7
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html
@@ -0,0 +1,338 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverOverviewTable.RowBuilder (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverOverviewTable.RowBuilder (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class SolverOverviewTable.RowBuilder" class="title">Class SolverOverviewTable.RowBuilder</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.SolverOverviewTable.RowBuilder</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">SolverOverviewTable.RowBuilder</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This class builds the table row-by-row.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">RowBuilder</a></span>()</code></th>
+<td class="colLast">
+<div class="block">The constructor builds the header of the table.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#addSolver(org.sosy_lab.java_smt.example.SolverOverviewTable.SolverInfo)">addSolver</a></span>&#8203;(<a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a>&nbsp;solverInfo)</code></th>
+<td class="colLast">
+<div class="block">Takes a SolverInfo object and splits it into multiple lines which are added to the row.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>RowBuilder</h4>
+<pre>public&nbsp;RowBuilder()</pre>
+<div class="block">The constructor builds the header of the table.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="addSolver(org.sosy_lab.java_smt.example.SolverOverviewTable.SolverInfo)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>addSolver</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;addSolver&#8203;(<a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a>&nbsp;solverInfo)</pre>
+<div class="block">Takes a SolverInfo object and splits it into multiple lines which are added to the row.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>solverInfo</code> - the solver with information you want added.</dd>
+</dl>
+</li>
+</ul>
+<a id="toString()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>toString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;toString()</pre>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html
new file mode 100644
index 0000000000..887b0287b0
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html
@@ -0,0 +1,312 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverOverviewTable.SolverInfo (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverOverviewTable.SolverInfo (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class SolverOverviewTable.SolverInfo" class="title">Class SolverOverviewTable.SolverInfo</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.SolverOverviewTable.SolverInfo</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">SolverOverviewTable.SolverInfo</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">just a wrapper for some data.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFeatures()">getFeatures</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getName()">getName</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getTheories()">getTheories</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getVersion()">getVersion</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getName()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getName</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getName()</pre>
+</li>
+</ul>
+<a id="getVersion()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getVersion</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getVersion()</pre>
+</li>
+</ul>
+<a id="getTheories()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getTheories</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getTheories()</pre>
+</li>
+</ul>
+<a id="getFeatures()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getFeatures</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;getFeatures()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/SolverOverviewTable.html b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.html
new file mode 100644
index 0000000000..337f396134
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/SolverOverviewTable.html
@@ -0,0 +1,374 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverOverviewTable (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverOverviewTable (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class SolverOverviewTable" class="title">Class SolverOverviewTable</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.SolverOverviewTable</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">SolverOverviewTable</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This program takes all installed solvers and checks them for version, theories and features and
+ prints them to StdOut in a nice table.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></span></code></th>
+<td class="colLast">
+<div class="block">This class builds the table row-by-row.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></span></code></th>
+<td class="colLast">
+<div class="block">just a wrapper for some data.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">SolverOverviewTable</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSolverInformation(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">getSolverInformation</a></span>&#8203;(<a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)</code></th>
+<td class="colLast">
+<div class="block">Checks for solver-name, version, theories and features.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String%5B%5D)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>[]&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SolverOverviewTable</h4>
+<pre>public&nbsp;SolverOverviewTable()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String[])">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>[]&nbsp;args)
+                 throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="getSolverInformation(org.sosy_lab.java_smt.SolverContextFactory.Solvers)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getSolverInformation</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a>&nbsp;getSolverInformation&#8203;(<a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solver)
+                                                              throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Checks for solver-name, version, theories and features.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>solver</code> - to check for information. Taken from Solvers enum only.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>Information about the solver you entered or NULL if the solver is not available.</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html b/api/org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html
new file mode 100644
index 0000000000..ea8fb4ee67
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Sudoku.BooleanBasedSudokuSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Sudoku.BooleanBasedSudokuSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Sudoku.BooleanBasedSudokuSolver" class="title">Class Sudoku.BooleanBasedSudokuSolver</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">org.sosy_lab.java_smt.example.Sudoku.SudokuSolver</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][][]&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Sudoku.BooleanBasedSudokuSolver</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">Sudoku.BooleanBasedSudokuSolver</span>
+extends <a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][][]&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">BooleanBasedSudokuSolver</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.Sudoku.SudokuSolver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.<a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a></h3>
+<code><a href="Sudoku.SudokuSolver.html#solve(java.lang.Integer%5B%5D%5B%5D)">solve</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>BooleanBasedSudokuSolver</h4>
+<pre>public&nbsp;BooleanBasedSudokuSolver&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html b/api/org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html
new file mode 100644
index 0000000000..047a52d868
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Sudoku.EnumerationBasedSudokuSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Sudoku.EnumerationBasedSudokuSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Sudoku.EnumerationBasedSudokuSolver" class="title">Class Sudoku.EnumerationBasedSudokuSolver</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">org.sosy_lab.java_smt.example.Sudoku.SudokuSolver</a>&lt;<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>[][]&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Sudoku.EnumerationBasedSudokuSolver</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">Sudoku.EnumerationBasedSudokuSolver</span>
+extends <a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;<a href="../api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormula</a>[][]&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">EnumerationBasedSudokuSolver</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.Sudoku.SudokuSolver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.<a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a></h3>
+<code><a href="Sudoku.SudokuSolver.html#solve(java.lang.Integer%5B%5D%5B%5D)">solve</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>EnumerationBasedSudokuSolver</h4>
+<pre>public&nbsp;EnumerationBasedSudokuSolver&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html b/api/org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html
new file mode 100644
index 0000000000..294ea56016
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Sudoku.IntegerBasedSudokuSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Sudoku.IntegerBasedSudokuSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Sudoku.IntegerBasedSudokuSolver" class="title">Class Sudoku.IntegerBasedSudokuSolver</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">org.sosy_lab.java_smt.example.Sudoku.SudokuSolver</a>&lt;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>[][]&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Sudoku.IntegerBasedSudokuSolver</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">Sudoku.IntegerBasedSudokuSolver</span>
+extends <a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;<a href="../api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormula.IntegerFormula</a>[][]&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext)">IntegerBasedSudokuSolver</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.Sudoku.SudokuSolver">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.<a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a></h3>
+<code><a href="Sudoku.SudokuSolver.html#solve(java.lang.Integer%5B%5D%5B%5D)">solve</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>IntegerBasedSudokuSolver</h4>
+<pre>public&nbsp;IntegerBasedSudokuSolver&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li>Method</li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html b/api/org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html
new file mode 100644
index 0000000000..a42eb658f6
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html
@@ -0,0 +1,285 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Sudoku.SudokuSolver (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Sudoku.SudokuSolver (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Sudoku.SudokuSolver" class="title">Class Sudoku.SudokuSolver&lt;S&gt;</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Sudoku.SudokuSolver&lt;S&gt;</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></code>, <code><a href="Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></code>, <code><a href="Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></dd>
+</dl>
+<hr>
+<pre>public abstract static class <span class="typeNameLabel">Sudoku.SudokuSolver&lt;S&gt;</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>[][]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solve(java.lang.Integer%5B%5D%5B%5D)">solve</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>[][]&nbsp;grid)</code></th>
+<td class="colLast">
+<div class="block">Solves a sudoku using the given grid values and returns a possible solution.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="solve(java.lang.Integer[][])">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>solve</h4>
+<pre class="methodSignature">public&nbsp;@Nullable <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>[][]&nbsp;solve&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>[][]&nbsp;grid)
+                            throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                   <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Solves a sudoku using the given grid values and returns a possible solution. Return <code>
+ Null
+ </code> if Sudoku cannot be solved.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/Sudoku.html b/api/org/sosy_lab/java_smt/example/Sudoku.html
new file mode 100644
index 0000000000..43da6e728d
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/Sudoku.html
@@ -0,0 +1,408 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Sudoku (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Sudoku (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example</a></div>
+<h2 title="Class Sudoku" class="title">Class Sudoku</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.Sudoku</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">Sudoku</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This program parses user-given Sudoku and solves it with an SMT solver.
+
+ <p>This program is just an example and provides several distinct strategies for encoding the
+ Sudoku problem as SMT. Clearly SMT is not the best solution for solving Sudoku. There might be
+ other algorithms out there that are specialized and better suited for solving Sudoku.
+
+ <p>Our strategies:
+
+ <ul>
+   <li>Integer-based: We encode all values as integer formulas for a range from 1 to 9. Straight
+       forward, simple to understand, but slow.
+   <li>Enumeration-based: We encode all values as enumeration formulas for enumeration values from
+       ONE to NINE. Reasonable fast (up to 10x faster than integer-based strategy).
+   <li>Boolean-based: We use one more dimension to encode values for the 2D-grid and a
+       one-hot-encoding. Fastest SMT-based solution, because it is purely based on SAT, and no
+       additional SMT theory is applied.
+ </ul>
+
+ <p>The more numbers are available in a Sudoku, the easier it can be solved. A completely empty
+ Sudoku will cause the longest runtime in the solver, because it will guess a lot of values.
+
+ <p>The Sudoku is read from StdIn and should be formatted as the following example:
+
+ <pre>
+ 2..9.6..1
+ ..6.4...9
+ ...52.4..
+ 3.2..7.5.
+ ...2..1..
+ .9.3..7..
+ .87.5.31.
+ 6.3.1.8..
+ 4....9...
+ </pre>
+
+ <p>The solution will then be printed on StdOut, just like the following solution:
+
+ <pre>
+ 248976531
+ 536148279
+ 179523468
+ 312487956
+ 764295183
+ 895361742
+ 987652314
+ 623714895
+ 451839627
+ </pre></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;<a href="Sudoku.SudokuSolver.html" title="type parameter in Sudoku.SudokuSolver">S</a>&gt;</span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SIZE">SIZE</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="SIZE">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SIZE</h4>
+<pre>public static final&nbsp;int SIZE</pre>
+<dl>
+<dt><span class="seeLabel">See Also:</span></dt>
+<dd><a href="../../../../constant-values.html#org.sosy_lab.java_smt.example.Sudoku.SIZE">Constant Field Values</a></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/IOException.html?is-external=true" title="class or interface in java.io" class="externalLink">IOException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html
new file mode 100644
index 0000000000..f0e82cb5a8
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html
@@ -0,0 +1,326 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NQueens (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NQueens (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></div>
+<h2 title="Class NQueens" class="title">Class NQueens</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueens</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">NQueens</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.
+
+ <p>For example, the Queen can be placed in these ways for a field size of 4:
+
+ <pre>
+   .Q..
+   ...Q
+   Q...
+   ..Q.
+ </pre></div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.SolverContext,int)">NQueens</a></span>&#8203;(<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+       int&nbsp;n)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#main(java.lang.String...)">main</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.SolverContext,int)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NQueens</h4>
+<pre>public&nbsp;NQueens&#8203;(<a href="../../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+               int&nbsp;n)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="main(java.lang.String...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>main</h4>
+<pre class="methodSignature">public static&nbsp;void&nbsp;main&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>...&nbsp;args)
+                 throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a>,
+                        <a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+<dd><code><a href="../../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html
new file mode 100644
index 0000000000..0de78a90ec
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html
@@ -0,0 +1,375 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NQueensConstraintPropagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NQueensConstraintPropagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></div>
+<h2 title="Class NQueensConstraintPropagator" class="title">Class NQueensConstraintPropagator</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">org.sosy_lab.java_smt.basicimpl.AbstractUserPropagator</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueensEnumeratingPropagator</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueensConstraintPropagator</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">NQueensConstraintPropagator</span>
+extends <a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></pre>
+<div class="block">In addition to the enumeration done by <a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><code>NQueensEnumeratingPropagator</code></a>, this propagator also
+ enforces the queen placement constraints without explicit encoding.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueensEnumeratingPropagator">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></h3>
+<code><a href="NQueensEnumeratingPropagator.html#currentModel">currentModel</a>, <a href="NQueensEnumeratingPropagator.html#fixedCount">fixedCount</a>, <a href="NQueensEnumeratingPropagator.html#fixedVariables">fixedVariables</a>, <a href="NQueensEnumeratingPropagator.html#modelSet">modelSet</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D%5B%5D)">NQueensConstraintPropagator</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][]&nbsp;symbols)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+            boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>).</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueensEnumeratingPropagator">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></h3>
+<code><a href="NQueensEnumeratingPropagator.html#getNumOfSolutions()">getNumOfSolutions</a>, <a href="NQueensEnumeratingPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a>, <a href="NQueensEnumeratingPropagator.html#onFinalCheck()">onFinalCheck</a>, <a href="NQueensEnumeratingPropagator.html#onPop(int)">onPop</a>, <a href="NQueensEnumeratingPropagator.html#onPush()">onPush</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractUserPropagator">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></h3>
+<code><a href="../../basicimpl/AbstractUserPropagator.html#getBackend()">getBackend</a>, <a href="../../basicimpl/AbstractUserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision</a>, <a href="../../basicimpl/AbstractUserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.BooleanFormula[][])">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NQueensConstraintPropagator</h4>
+<pre>public&nbsp;NQueensConstraintPropagator&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>[][]&nbsp;symbols)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>onKnownValue</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onKnownValue&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+                         boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can raise conflicts via <a href="../../api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])</code></a>, propagate consequences via <a href="../../api/PropagatorBackend.html#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)"><code>PropagatorBackend.propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[], org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, or influence the solvers decision heuristics via
+ <a href="../../api/PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>The reported value is only known on the current and later push levels, but will get
+ invalidated when backtracking.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../../api/PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="NQueensEnumeratingPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></code>&nbsp;in class&nbsp;<code><a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>var</code> - The expressions whose value is known.</dd>
+<dd><code>value</code> - The value of the expression.</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html
new file mode 100644
index 0000000000..d925afcef1
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html
@@ -0,0 +1,561 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>NQueensEnumeratingPropagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="NQueensEnumeratingPropagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a></div>
+<h2 title="Class NQueensEnumeratingPropagator" class="title">Class NQueensEnumeratingPropagator</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">org.sosy_lab.java_smt.basicimpl.AbstractUserPropagator</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.example.nqueens_user_propagator.NQueensEnumeratingPropagator</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+</dl>
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></code></dd>
+</dl>
+<hr>
+<pre>public class <span class="typeNameLabel">NQueensEnumeratingPropagator</span>
+extends <a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></pre>
+<div class="block">This propagator enumerates the solutions of the NQueens problem by raising a conflict whenever
+ the solver finds a model.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#currentModel">currentModel</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Deque.html?is-external=true" title="class or interface in java.util" class="externalLink">Deque</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fixedCount">fixedCount</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Deque.html?is-external=true" title="class or interface in java.util" class="externalLink">Deque</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fixedVariables">fixedVariables</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelSet">modelSet</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">NQueensEnumeratingPropagator</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>int</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getNumOfSolutions()">getNumOfSolutions</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></span>&#8203;(<a href="../../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;backend)</code></th>
+<td class="colLast">
+<div class="block">This method is invoked after the user propagator is registered via <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onFinalCheck()">onFinalCheck</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></span>&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+            boolean&nbsp;value)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>).</div>
+</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPop(int)">onPop</a></span>&#8203;(int&nbsp;numPoppedLevel)</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked when the solver backtracks.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#onPush()">onPush</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This callback is invoked whenever the solver creates a new decision level.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.basicimpl.AbstractUserPropagator">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.basicimpl.<a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></h3>
+<code><a href="../../basicimpl/AbstractUserPropagator.html#getBackend()">getBackend</a>, <a href="../../basicimpl/AbstractUserPropagator.html#onDecision(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onDecision</a>, <a href="../../basicimpl/AbstractUserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)">registerExpression</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="fixedCount">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fixedCount</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Deque.html?is-external=true" title="class or interface in java.util" class="externalLink">Deque</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>&gt; fixedCount</pre>
+</li>
+</ul>
+<a id="fixedVariables">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fixedVariables</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Deque.html?is-external=true" title="class or interface in java.util" class="externalLink">Deque</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt; fixedVariables</pre>
+</li>
+</ul>
+<a id="currentModel">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>currentModel</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang" class="externalLink">Boolean</a>&gt; currentModel</pre>
+</li>
+</ul>
+<a id="modelSet">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>modelSet</h4>
+<pre>protected final&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Set.html?is-external=true" title="class or interface in java.util" class="externalLink">Set</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>,&#8203;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Integer.html?is-external=true" title="class or interface in java.lang" class="externalLink">Integer</a>&gt;&gt; modelSet</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>NQueensEnumeratingPropagator</h4>
+<pre>public&nbsp;NQueensEnumeratingPropagator()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getNumOfSolutions()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getNumOfSolutions</h4>
+<pre class="methodSignature">public&nbsp;int&nbsp;getNumOfSolutions()</pre>
+</li>
+</ul>
+<a id="onPush()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPush</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onPush()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#onPush()">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked whenever the solver creates a new decision level. A user propagator
+ should maintain backtracking points on each push to enable later backtracking.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="../../api/BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#onPush()">onPush</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../basicimpl/AbstractUserPropagator.html#onPush()">onPush</a></code>&nbsp;in class&nbsp;<code><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="onPop(int)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onPop</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onPop&#8203;(int&nbsp;numPoppedLevel)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#onPop(int)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked when the solver backtracks. The solver can backtrack multiple levels
+ simultaneously.
+
+ <p>The onPush or onPop operation refers to internal state of the SMT/SAT solver while running a
+ SAT check. This does not relate to Prover operations in the SMT-based API, such as <a href="../../api/BasicProverEnvironment.html#push(org.sosy_lab.java_smt.api.BooleanFormula)"><code>BasicProverEnvironment.push(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> or <a href="../../api/BasicProverEnvironment.html#pop()"><code>BasicProverEnvironment.pop()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#onPop(int)">onPop</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../basicimpl/AbstractUserPropagator.html#onPop(int)">onPop</a></code>&nbsp;in class&nbsp;<code><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>numPoppedLevel</code> - The number of levels to backtrack (~ number of pushes to backtrack).</dd>
+</dl>
+</li>
+</ul>
+<a id="onFinalCheck()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onFinalCheck</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onFinalCheck()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#onFinalCheck()">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked when the solver finds a complete satisfying assignment. The user can
+ check the found model for consistency and potentially raise conflicts via <a href="../../api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(BooleanFormula[])</code></a>.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../../api/PropagatorBackend.html#notifyOnFinalCheck()"><code>PropagatorBackend.notifyOnFinalCheck()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#onFinalCheck()">onFinalCheck</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../basicimpl/AbstractUserPropagator.html#onFinalCheck()">onFinalCheck</a></code>&nbsp;in class&nbsp;<code><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>onKnownValue</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;onKnownValue&#8203;(<a href="../../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;var,
+                         boolean&nbsp;value)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">UserPropagator</a></code></span></div>
+<div class="block">This callback is invoked if the solver gets to know the value of a registered expression
+ (<a href="../../api/UserPropagator.html#registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)"><code>UserPropagator.registerExpression(org.sosy_lab.java_smt.api.BooleanFormula)</code></a>). Within the callback, the user can raise conflicts via <a href="../../api/PropagatorBackend.html#propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D)"><code>PropagatorBackend.propagateConflict(org.sosy_lab.java_smt.api.BooleanFormula[])</code></a>, propagate consequences via <a href="../../api/PropagatorBackend.html#propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula%5B%5D,org.sosy_lab.java_smt.api.BooleanFormula)"><code>PropagatorBackend.propagateConsequence(org.sosy_lab.java_smt.api.BooleanFormula[], org.sosy_lab.java_smt.api.BooleanFormula)</code></a>, or influence the solvers decision heuristics via
+ <a href="../../api/PropagatorBackend.html#propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula,java.util.Optional)"><code>PropagatorBackend.propagateNextDecision(org.sosy_lab.java_smt.api.BooleanFormula, java.util.Optional&lt;java.lang.Boolean&gt;)</code></a>.
+
+ <p>The reported value is only known on the current and later push levels, but will get
+ invalidated when backtracking.
+
+ <p>Note: This callback is only invoked if the user propagator enabled it via <a href="../../api/PropagatorBackend.html#notifyOnKnownValue()"><code>PropagatorBackend.notifyOnKnownValue()</code></a>.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../basicimpl/AbstractUserPropagator.html#onKnownValue(org.sosy_lab.java_smt.api.BooleanFormula,boolean)">onKnownValue</a></code>&nbsp;in class&nbsp;<code><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code></dd>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>var</code> - The expressions whose value is known.</dd>
+<dd><code>value</code> - The value of the expression.</dd>
+</dl>
+</li>
+</ul>
+<a id="initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>initializeWithBackend</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;initializeWithBackend&#8203;(<a href="../../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api">PropagatorBackend</a>&nbsp;backend)</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../api/UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">UserPropagator</a></code></span></div>
+<div class="block">This method is invoked after the user propagator is registered via <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a>. The user can enable notifications by
+ accessing the provided <a href="../../api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><code>PropagatorBackend</code></a>.
+
+ <p>Warning: During its lifetime, a user propagator shall only be registered once via <a href="../../api/BasicProverEnvironment.html#registerUserPropagator(org.sosy_lab.java_smt.api.UserPropagator)"><code>BasicProverEnvironment.registerUserPropagator(UserPropagator)</code></a> for otherwise unexpected errors can
+ occur. Implementations are advised to throw exceptions if this method is called multiple times.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
+<dd><code><a href="../../api/UserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></code>&nbsp;in interface&nbsp;<code><a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a></code></dd>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="../../basicimpl/AbstractUserPropagator.html#initializeWithBackend(org.sosy_lab.java_smt.api.PropagatorBackend)">initializeWithBackend</a></code>&nbsp;in class&nbsp;<code><a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl">AbstractUserPropagator</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html
new file mode 100644
index 0000000000..e04f923e1a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-summary.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.example.nqueens_user_propagator (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.example.nqueens_user_propagator (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.example.nqueens_user_propagator</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Some basic examples for using Java-SMT.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueens</a></th>
+<td class="colLast">
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensConstraintPropagator</a></th>
+<td class="colLast">
+<div class="block">In addition to the enumeration done by <a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><code>NQueensEnumeratingPropagator</code></a>, this propagator also
+ enforces the queen placement constraints without explicit encoding.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator">NQueensEnumeratingPropagator</a></th>
+<td class="colLast">
+<div class="block">This propagator enumerates the solutions of the NQueens problem by raising a conflict whenever
+ the solver finds a model.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-tree.html b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-tree.html
new file mode 100644
index 0000000000..585c754591
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/nqueens_user_propagator/package-tree.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.example.nqueens_user_propagator Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../../script.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.example.nqueens_user_propagator Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.example.nqueens_user_propagator</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="../../basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUserPropagator</span></a> (implements org.sosy_lab.java_smt.api.<a href="../../api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensEnumeratingPropagator</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensConstraintPropagator</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueens</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+<li><a href="../../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/package-summary.html b/api/org/sosy_lab/java_smt/example/package-summary.html
new file mode 100644
index 0000000000..eea826ae4e
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/package-summary.html
@@ -0,0 +1,283 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.example (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.example (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.example</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Some basic examples for using Java-SMT.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="AllSatExample.html" title="class in org.sosy_lab.java_smt.example">AllSatExample</a></th>
+<td class="colLast">
+<div class="block">This example shows different ways to get all satisfiable models for a given set of constraints.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Binoxxo.html" title="class in org.sosy_lab.java_smt.example">Binoxxo</a></th>
+<td class="colLast">
+<div class="block">This program parses a user-given Binoxxo and solves it with an SMT solver.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BinoxxoSolver</a>&lt;S&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.BooleanBasedBinoxxoSolver</a></th>
+<td class="colLast">
+<div class="block">This solver encodes nore steps into boolean logic, which makes it about 10x faster than the
+ <a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><code>Binoxxo.IntegerBasedBinoxxoSolver</code></a>.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example">Binoxxo.IntegerBasedBinoxxoSolver</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example">FormulaClassifier</a></th>
+<td class="colLast">
+<div class="block">This program parses user-given formulas and prints out the (minimal) matching theory for them.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="HoudiniApp.html" title="class in org.sosy_lab.java_smt.example">HoudiniApp</a></th>
+<td class="colLast">
+<div class="block">This application executes the inductive-invariant synthesis algorithm called "Houdini" taken from
+ the paper Flanagan and Leino: "Houdini, an Annotation Assistant for ESC/Java".</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Interpolation.html" title="class in org.sosy_lab.java_smt.example">Interpolation</a></th>
+<td class="colLast">
+<div class="block">Examples for Craig/sequential/tree interpolation.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="NQueens.html" title="class in org.sosy_lab.java_smt.example">NQueens</a></th>
+<td class="colLast">
+<div class="block">This example program solves a NQueens problem of given size and prints a possible solution.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example">OptimizationFormulaWeights</a></th>
+<td class="colLast">
+<div class="block">Example for optimizing the weight of some constraints.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example">OptimizationIntReal</a></th>
+<td class="colLast">
+<div class="block">Example for optimizing 'x' with the constraint '0 &lt;= x &lt; 10'.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example">PrettyPrinter</a></th>
+<td class="colLast">
+<div class="block">This program parses user-given formulas and prints them in a pretty format.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example">SimpleUserPropagator</a></th>
+<td class="colLast">
+<div class="block">Example of a simple user propagator that prohibits variables/expressions to be set to true.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable</a></th>
+<td class="colLast">
+<div class="block">This program takes all installed solvers and checks them for version, theories and features and
+ prints them to StdOut in a nice table.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.RowBuilder</a></th>
+<td class="colLast">
+<div class="block">This class builds the table row-by-row.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example">SolverOverviewTable.SolverInfo</a></th>
+<td class="colLast">
+<div class="block">just a wrapper for some data.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example">Sudoku</a></th>
+<td class="colLast">
+<div class="block">This program parses user-given Sudoku and solves it with an SMT solver.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.BooleanBasedSudokuSolver</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.EnumerationBasedSudokuSolver</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.IntegerBasedSudokuSolver</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example">Sudoku.SudokuSolver</a>&lt;S&gt;</th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/example/package-tree.html b/api/org/sosy_lab/java_smt/example/package-tree.html
new file mode 100644
index 0000000000..b4fca64126
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/example/package-tree.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.example Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.example Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.example</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="AllSatExample.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">AllSatExample</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Binoxxo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BinoxxoSolver</span></a>&lt;S&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BooleanBasedBinoxxoSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.IntegerBasedBinoxxoSolver</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">FormulaClassifier</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="HoudiniApp.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">HoudiniApp</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Interpolation.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Interpolation</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="NQueens.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">NQueens</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationFormulaWeights</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationIntReal</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">PrettyPrinter</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SimpleUserPropagator</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.RowBuilder</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.SolverInfo</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Sudoku.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.SudokuSolver</span></a>&lt;S&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.BooleanBasedSudokuSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.EnumerationBasedSudokuSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.IntegerBasedSudokuSolver</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/package-summary.html b/api/org/sosy_lab/java_smt/package-summary.html
new file mode 100644
index 0000000000..6b6f4b1d43
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/package-summary.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../script.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">JavaSMT: a generic SMT solver API.
+
+ <p><a href="SolverContextFactory.html" title="class in org.sosy_lab.java_smt"><code>SolverContextFactory</code></a> is a package entry point, which creates a
+ <a href="api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><code>SolverContext</code></a> object. All operations on formulas are performed
+ using managers, available through the context object.
+
+ <p>All interfaces which form the public API are located in the <a href="api/package-summary.html">API package</a>.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></th>
+<td class="colLast">
+<div class="block">Factory class for loading and generating solver contexts.</div>
+</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/package-tree.html b/api/org/sosy_lab/java_smt/package-tree.html
new file mode 100644
index 0000000000..6e56db8dfc
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/package-tree.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../script.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.<a href="SolverContextFactory.html" title="class in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.<a href="SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory.Solvers</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+<li><a href="../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/BooleanFormulaSubject.html b/api/org/sosy_lab/java_smt/test/BooleanFormulaSubject.html
new file mode 100644
index 0000000000..be1736da82
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/BooleanFormulaSubject.html
@@ -0,0 +1,470 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>BooleanFormulaSubject (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="BooleanFormulaSubject (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.test</a></div>
+<h2 title="Class BooleanFormulaSubject" class="title">Class BooleanFormulaSubject</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">com.google.common.truth.Subject</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.test.BooleanFormulaSubject</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">BooleanFormulaSubject</span>
+extends <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></pre>
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about BooleanFormulas with Truth (allows using
+ <code>assert_().about(...).that(formula).isUnsatisfiable()</code> etc.).
+
+ <p>For a test use either <a href="SolverBasedTest0.html#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>SolverBasedTest0.assertThatFormula(BooleanFormula)</code></a>, or use
+ <a href="https://truth.dev/api/latest/com/google/common/truth/StandardSubjectBuilder.html?is-external=true#about(com.google.common.truth.Subject.Factory)" title="class or interface in com.google.common.truth" class="externalLink"><code>StandardSubjectBuilder.about(com.google.common.truth.Subject.Factory)</code></a> and set a solver
+ via the method <a href="#booleanFormulasOf(org.sosy_lab.java_smt.api.SolverContext)"><code>booleanFormulasOf(SolverContext)</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.com.google.common.truth.Subject">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></h3>
+<code><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">SubjectT</a> extends <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a>,&#8203;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">ActualT</a> extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="https://truth.dev/api/latest/com/google/common/truth/SimpleSubjectBuilder.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">SimpleSubjectBuilder</a>&lt;<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a>,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assertUsing(org.sosy_lab.java_smt.api.SolverContext)">assertUsing</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assertUsing(context)).that(formula).is...()</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a>,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#booleanFormulasOf(org.sosy_lab.java_smt.api.SolverContext)">booleanFormulasOf</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assert_().about(booleanFormulasOf(context)).that(formula).is...()</code>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#implies(org.sosy_lab.java_smt.api.BooleanFormula)">implies</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expected)</code></th>
+<td class="colLast">
+<div class="block">Check that the subject implies a given formula, i.e.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEquisatisfiableTo(org.sosy_lab.java_smt.api.BooleanFormula)">isEquisatisfiableTo</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;other)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isEquivalentTo(org.sosy_lab.java_smt.api.BooleanFormula)">isEquivalentTo</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expected)</code></th>
+<td class="colLast">
+<div class="block">Check that the subject is equivalent to a given formula, i.e.</div>
+</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSatisfiable()">isSatisfiable</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check that the subject is satisfiable.</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isTautological()">isTautological</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check that the subject is tautological, i.e., always holds.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsatisfiable()">isUnsatisfiable</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check that the subject is unsatisfiable.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.com.google.common.truth.Subject">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></h3>
+<code><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#actualCustomStringRepresentation()" title="class or interface in com.google.common.truth" class="externalLink">actualCustomStringRepresentation</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#check(java.lang.String,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">check</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#equals(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">equals</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithActual(com.google.common.truth.Fact,com.google.common.truth.Fact...)" title="class or interface in com.google.common.truth" class="externalLink">failWithActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithActual(java.lang.String,java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">failWithActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithoutActual(com.google.common.truth.Fact,com.google.common.truth.Fact...)" title="class or interface in com.google.common.truth" class="externalLink">failWithoutActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#hashCode()" title="class or interface in com.google.common.truth" class="externalLink">hashCode</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#ignoreCheck()" title="class or interface in com.google.common.truth" class="externalLink">ignoreCheck</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isAnyOf(java.lang.Object,java.lang.Object,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">isAnyOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isEqualTo(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isEqualTo</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isIn(java.lang.Iterable)" title="class or interface in com.google.common.truth" class="externalLink">isIn</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isInstanceOf(java.lang.Class)" title="class or interface in com.google.common.truth" class="externalLink">isInstanceOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNoneOf(java.lang.Object,java.lang.Object,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">isNoneOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotEqualTo(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isNotEqualTo</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotIn(java.lang.Iterable)" title="class or interface in com.google.common.truth" class="externalLink">isNotIn</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotInstanceOf(java.lang.Class)" title="class or interface in com.google.common.truth" class="externalLink">isNotInstanceOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotNull()" title="class or interface in com.google.common.truth" class="externalLink">isNotNull</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotSameInstanceAs(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isNotSameInstanceAs</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNull()" title="class or interface in com.google.common.truth" class="externalLink">isNull</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isSameInstanceAs(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isSameInstanceAs</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#toString()" title="class or interface in com.google.common.truth" class="externalLink">toString</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="booleanFormulasOf(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>booleanFormulasOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a>,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;booleanFormulasOf&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assert_().about(booleanFormulasOf(context)).that(formula).is...()</code>.</div>
+</li>
+</ul>
+<a id="assertUsing(org.sosy_lab.java_smt.api.SolverContext)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assertUsing</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://truth.dev/api/latest/com/google/common/truth/SimpleSubjectBuilder.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">SimpleSubjectBuilder</a>&lt;<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a>,&#8203;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&gt;&nbsp;assertUsing&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;context)</pre>
+<div class="block">Use this for checking assertions about BooleanFormulas (given the corresponding solver) with
+ Truth: <code>assertUsing(context)).that(formula).is...()</code>.</div>
+</li>
+</ul>
+<a id="isUnsatisfiable()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatisfiable</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isUnsatisfiable()
+                     throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject is unsatisfiable. Will show a model (satisfying assignment) on failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isSatisfiable()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isSatisfiable</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isSatisfiable()
+                   throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject is satisfiable. Will show an unsat core on failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isTautological()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isTautological</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isTautological()
+                    throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject is tautological, i.e., always holds. This is equivalent to calling
+ <a href="#isEquivalentTo(org.sosy_lab.java_smt.api.BooleanFormula)"><code>isEquivalentTo(BooleanFormula)</code></a> with the formula <code>true</code>, but it checks
+ satisfiability of the subject and unsatisfiability of the negated subject in two steps to
+ improve error messages.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isEquivalentTo(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEquivalentTo</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isEquivalentTo&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expected)
+                    throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject is equivalent to a given formula, i.e. <code>subject &lt;=&gt; expected</code>
+ always holds. Will show a counterexample on failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isEquisatisfiableTo(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isEquisatisfiableTo</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isEquisatisfiableTo&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;other)
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="implies(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>implies</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;implies&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;expected)
+             throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject implies a given formula, i.e. <code>subject =&gt; expected</code> always holds.
+ Will show a counterexample on failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html b/api/org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html
new file mode 100644
index 0000000000..ad3487f5c6
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html
@@ -0,0 +1,372 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>ProverEnvironmentSubject (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="ProverEnvironmentSubject (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":10,"i2":10,"i3":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.test</a></div>
+<h2 title="Class ProverEnvironmentSubject" class="title">Class ProverEnvironmentSubject</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">com.google.common.truth.Subject</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.test.ProverEnvironmentSubject</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">ProverEnvironmentSubject</span>
+extends <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></pre>
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about ProverEnvironments with Truth (allows using
+ <code>assert_().about(...).that(stack).isUnsatisfiable()</code> etc.).
+
+ <p>For a test use <a href="SolverBasedTest0.html#assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)"><code>SolverBasedTest0.assertThatEnvironment(BasicProverEnvironment)</code></a>, or
+ <a href="https://truth.dev/api/latest/com/google/common/truth/StandardSubjectBuilder.html?is-external=true#about(com.google.common.truth.Subject.Factory)" title="class or interface in com.google.common.truth" class="externalLink"><code>StandardSubjectBuilder.about(com.google.common.truth.Subject.Factory)</code></a> and <a href="#proverEnvironments()"><code>proverEnvironments()</code></a>.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.com.google.common.truth.Subject">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></h3>
+<code><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">SubjectT</a> extends <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a>,&#8203;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">ActualT</a> extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;</code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assertThat(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThat</a></span>&#8203;(<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&nbsp;prover)</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThat(stack).is...()</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isSatisfiable()">isSatisfiable</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check that the subject stack is satisfiable.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#isUnsatisfiable()">isUnsatisfiable</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Check that the subject stack is unsatisfiable.</div>
+</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>static <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a>,&#8203;<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#proverEnvironments()">proverEnvironments</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assert_().about(proverEnvironments()).that(stack).is...()</code>.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.com.google.common.truth.Subject">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject</a></h3>
+<code><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#actualCustomStringRepresentation()" title="class or interface in com.google.common.truth" class="externalLink">actualCustomStringRepresentation</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#check(java.lang.String,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">check</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#equals(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">equals</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithActual(com.google.common.truth.Fact,com.google.common.truth.Fact...)" title="class or interface in com.google.common.truth" class="externalLink">failWithActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithActual(java.lang.String,java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">failWithActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#failWithoutActual(com.google.common.truth.Fact,com.google.common.truth.Fact...)" title="class or interface in com.google.common.truth" class="externalLink">failWithoutActual</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#hashCode()" title="class or interface in com.google.common.truth" class="externalLink">hashCode</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#ignoreCheck()" title="class or interface in com.google.common.truth" class="externalLink">ignoreCheck</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isAnyOf(java.lang.Object,java.lang.Object,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">isAnyOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isEqualTo(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isEqualTo</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isIn(java.lang.Iterable)" title="class or interface in com.google.common.truth" class="externalLink">isIn</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isInstanceOf(java.lang.Class)" title="class or interface in com.google.common.truth" class="externalLink">isInstanceOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNoneOf(java.lang.Object,java.lang.Object,java.lang.Object...)" title="class or interface in com.google.common.truth" class="externalLink">isNoneOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotEqualTo(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isNotEqualTo</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotIn(java.lang.Iterable)" title="class or interface in com.google.common.truth" class="externalLink">isNotIn</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotInstanceOf(java.lang.Class)" title="class or interface in com.google.common.truth" class="externalLink">isNotInstanceOf</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotNull()" title="class or interface in com.google.common.truth" class="externalLink">isNotNull</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNotSameInstanceAs(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isNotSameInstanceAs</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isNull()" title="class or interface in com.google.common.truth" class="externalLink">isNull</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#isSameInstanceAs(java.lang.Object)" title="class or interface in com.google.common.truth" class="externalLink">isSameInstanceAs</a>, <a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true#toString()" title="class or interface in com.google.common.truth" class="externalLink">toString</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="proverEnvironments()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>proverEnvironments</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.Factory.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink">Subject.Factory</a>&lt;<a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a>,&#8203;<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&gt;&nbsp;proverEnvironments()</pre>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assert_().about(proverEnvironments()).that(stack).is...()</code>.</div>
+</li>
+</ul>
+<a id="assertThat(org.sosy_lab.java_smt.api.BasicProverEnvironment)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assertThat</h4>
+<pre class="methodSignature">public static&nbsp;<a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a>&nbsp;assertThat&#8203;(<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&nbsp;prover)</pre>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThat(stack).is...()</code>.</div>
+</li>
+</ul>
+<a id="isUnsatisfiable()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>isUnsatisfiable</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isUnsatisfiable()
+                     throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                            <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject stack is unsatisfiable. Will show a model (satisfying assignment) on
+ failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="isSatisfiable()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>isSatisfiable</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;isSatisfiable()
+                   throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">Check that the subject stack is satisfiable. Will show an unsat core on failure.</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html b/api/org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html
new file mode 100644
index 0000000000..654999408f
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html
@@ -0,0 +1,414 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverBasedTest0.ParameterizedSolverBasedTest0 (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverBasedTest0.ParameterizedSolverBasedTest0 (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.test</a></div>
+<h2 title="Class SolverBasedTest0.ParameterizedSolverBasedTest0" class="title">Class SolverBasedTest0.ParameterizedSolverBasedTest0</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">org.sosy_lab.java_smt.test.SolverBasedTest0</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.test.SolverBasedTest0.ParameterizedSolverBasedTest0</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></dd>
+</dl>
+<hr>
+<pre>public abstract static class <span class="typeNameLabel">SolverBasedTest0.ParameterizedSolverBasedTest0</span>
+extends <a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code><a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solver">solver</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.html#amgr">amgr</a>, <a href="SolverBasedTest0.html#bmgr">bmgr</a>, <a href="SolverBasedTest0.html#bvmgr">bvmgr</a>, <a href="SolverBasedTest0.html#config">config</a>, <a href="SolverBasedTest0.html#context">context</a>, <a href="SolverBasedTest0.html#emgr">emgr</a>, <a href="SolverBasedTest0.html#factory">factory</a>, <a href="SolverBasedTest0.html#fmgr">fmgr</a>, <a href="SolverBasedTest0.html#fpmgr">fpmgr</a>, <a href="SolverBasedTest0.html#imgr">imgr</a>, <a href="SolverBasedTest0.html#logger">logger</a>, <a href="SolverBasedTest0.html#mgr">mgr</a>, <a href="SolverBasedTest0.html#qmgr">qmgr</a>, <a href="SolverBasedTest0.html#rmgr">rmgr</a>, <a href="SolverBasedTest0.html#shutdownManager">shutdownManager</a>, <a href="SolverBasedTest0.html#smgr">smgr</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">ParameterizedSolverBasedTest0</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getAllSolvers()">getAllSolvers</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected <a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solverToUse()">solverToUse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return the solver to use in this test.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.html#assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThatEnvironment</a>, <a href="SolverBasedTest0.html#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)">assertThatFormula</a>, <a href="SolverBasedTest0.html#closeSolver()">closeSolver</a>, <a href="SolverBasedTest0.html#createTestConfigBuilder()">createTestConfigBuilder</a>, <a href="SolverBasedTest0.html#evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)">evaluateInModel</a>, <a href="SolverBasedTest0.html#initSolver()">initSolver</a>, <a href="SolverBasedTest0.html#logicToUse()">logicToUse</a>, <a href="SolverBasedTest0.html#requireArrayModel()">requireArrayModel</a>, <a href="SolverBasedTest0.html#requireArrays()">requireArrays</a>, <a href="SolverBasedTest0.html#requireBitvectors()">requireBitvectors</a>, <a href="SolverBasedTest0.html#requireBitvectorToInt()">requireBitvectorToInt</a>, <a href="SolverBasedTest0.html#requireEnumeration()">requireEnumeration</a>, <a href="SolverBasedTest0.html#requireFloats()">requireFloats</a>, <a href="SolverBasedTest0.html#requireIntegers()">requireIntegers</a>, <a href="SolverBasedTest0.html#requireInterpolation()">requireInterpolation</a>, <a href="SolverBasedTest0.html#requireModel()">requireModel</a>, <a href="SolverBasedTest0.html#requireOptimization()">requireOptimization</a>, <a href="SolverBasedTest0.html#requireParser()">requireParser</a>, <a href="SolverBasedTest0.html#requireQuantifiers()">requireQuantifiers</a>, <a href="SolverBasedTest0.html#requireRationals()">requireRationals</a>, <a href="SolverBasedTest0.html#requireStrings()">requireStrings</a>, <a href="SolverBasedTest0.html#requireSubstitution()">requireSubstitution</a>, <a href="SolverBasedTest0.html#requireUnsatCore()">requireUnsatCore</a>, <a href="SolverBasedTest0.html#requireUnsatCoreOverAssumptions()">requireUnsatCoreOverAssumptions</a>, <a href="SolverBasedTest0.html#requireUserPropagators()">requireUserPropagators</a>, <a href="SolverBasedTest0.html#requireVisitor()">requireVisitor</a>, <a href="SolverBasedTest0.html#shutdownNotifierToUse()">shutdownNotifierToUse</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="solver">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>solver</h4>
+<pre>public&nbsp;<a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a> solver</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>ParameterizedSolverBasedTest0</h4>
+<pre>public&nbsp;ParameterizedSolverBasedTest0()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="getAllSolvers()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getAllSolvers</h4>
+<pre class="methodSignature">public static&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>[]&nbsp;getAllSolvers()</pre>
+</li>
+</ul>
+<a id="solverToUse()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>solverToUse</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solverToUse()</pre>
+<div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="SolverBasedTest0.html#solverToUse()">SolverBasedTest0</a></code></span></div>
+<div class="block">Return the solver to use in this test. The default is SMTInterpol because it's the only solver
+ guaranteed on all platforms. Overwrite to specify a different solver.</div>
+<dl>
+<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
+<dd><code><a href="SolverBasedTest0.html#solverToUse()">solverToUse</a></code>&nbsp;in class&nbsp;<code><a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/SolverBasedTest0.html b/api/org/sosy_lab/java_smt/test/SolverBasedTest0.html
new file mode 100644
index 0000000000..094d3cc376
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/SolverBasedTest0.html
@@ -0,0 +1,1051 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverBasedTest0 (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverBasedTest0 (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.test</a></div>
+<h2 title="Class SolverBasedTest0" class="title">Class SolverBasedTest0</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.test.SolverBasedTest0</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Direct Known Subclasses:</dt>
+<dd><code><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></code></dd>
+</dl>
+<hr>
+<pre>public abstract class <span class="typeNameLabel">SolverBasedTest0</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Abstract base class with helpful utilities for writing tests that use an SMT solver. It
+ instantiates and closes the SMT solver before and after each test, and provides fields with
+ direct access to the most relevant instances.
+
+ <p>To run the tests using all available solvers, add the following code to your class:
+
+ <pre>
+ <code>
+  @Parameters(name="{0}")
+  public static List&lt;Object[]&gt; getAllSolvers() {
+    return allSolversAsParameters();
+  }
+
+  @Parameter(0)
+  public Solvers solver;
+
+  @Override
+  protected Solvers solverToUse() {
+    return solver;
+  }
+ </code>
+ </pre>
+
+ <a href="#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>assertThatFormula(BooleanFormula)</code></a> can be used to easily write assertions about formulas
+ using Truth.
+
+ <p>Test that rely on a theory that not all solvers support should call one of the <code>require</code>
+ methods at the beginning.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<table class="memberSummary">
+<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Field</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#amgr">amgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#bmgr">bmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#bvmgr">bvmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#config">config</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#context">context</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#emgr">emgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="../SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#factory">factory</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fmgr">fmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#fpmgr">fpmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#imgr">imgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#logger">logger</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#mgr">mgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#qmgr">qmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rmgr">rmgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownManager.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shutdownManager">shutdownManager</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<td class="colFirst"><code>protected @Nullable <a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#smgr">smgr</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">SolverBasedTest0</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>protected <a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThatEnvironment</a></span>&#8203;(<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&nbsp;prover)</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThatEnvironment(stack).is...()</code>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>protected <a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)">assertThatFormula</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</code></th>
+<td class="colLast">
+<div class="block">Use this for checking assertions about BooleanFormulas with Truth: <code>
+ assertThatFormula(formula).is...()</code>.</div>
+</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#closeSolver()">closeSolver</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/ConfigurationBuilder.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">ConfigurationBuilder</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#createTestConfigBuilder()">createTestConfigBuilder</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)">evaluateInModel</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint,
+               <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;possibleExpectedValues,
+               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;possibleExpectedFormulas)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#initSolver()">initSolver</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>protected org.sosy_lab.java_smt.solvers.opensmt.Logics</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#logicToUse()">logicToUse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This method is only called, if OpenSMT is called.</div>
+</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireArrayModel()">requireArrayModel</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireArrays()">requireArrays</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support arrays.</div>
+</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireBitvectors()">requireBitvectors</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support bitvectors.</div>
+</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireBitvectorToInt()">requireBitvectorToInt</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireEnumeration()">requireEnumeration</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support enumeration theory.</div>
+</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireFloats()">requireFloats</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireIntegers()">requireIntegers</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support integers.</div>
+</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireInterpolation()">requireInterpolation</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireModel()">requireModel</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireOptimization()">requireOptimization</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support optimization.</div>
+</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireParser()">requireParser</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireQuantifiers()">requireQuantifiers</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support quantifiers.</div>
+</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireRationals()">requireRationals</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support rationals.</div>
+</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireStrings()">requireStrings</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Skip test if the solver does not support strings.</div>
+</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireSubstitution()">requireSubstitution</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireUnsatCore()">requireUnsatCore</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireUnsatCoreOverAssumptions()">requireUnsatCoreOverAssumptions</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireUserPropagators()">requireUserPropagators</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireVisitor()">requireVisitor</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code>protected <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shutdownNotifierToUse()">shutdownNotifierToUse</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>protected <a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#solverToUse()">solverToUse</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Return the solver to use in this test.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ FIELD DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.detail">
+<!--   -->
+</a>
+<h3>Field Detail</h3>
+<a id="config">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>config</h4>
+<pre>protected&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/Configuration.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">Configuration</a> config</pre>
+</li>
+</ul>
+<a id="logger">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>logger</h4>
+<pre>protected final&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/log/LogManager.html?is-external=true" title="class or interface in org.sosy_lab.common.log" class="externalLink">LogManager</a> logger</pre>
+</li>
+</ul>
+<a id="factory">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>factory</h4>
+<pre>protected&nbsp;<a href="../SolverContextFactory.html" title="class in org.sosy_lab.java_smt">SolverContextFactory</a> factory</pre>
+</li>
+</ul>
+<a id="context">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>context</h4>
+<pre>protected&nbsp;<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a> context</pre>
+</li>
+</ul>
+<a id="mgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>mgr</h4>
+<pre>protected&nbsp;<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a> mgr</pre>
+</li>
+</ul>
+<a id="bmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>bmgr</h4>
+<pre>protected&nbsp;<a href="../api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a> bmgr</pre>
+</li>
+</ul>
+<a id="fmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fmgr</h4>
+<pre>protected&nbsp;<a href="../api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a> fmgr</pre>
+</li>
+</ul>
+<a id="imgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>imgr</h4>
+<pre>protected&nbsp;<a href="../api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a> imgr</pre>
+</li>
+</ul>
+<a id="rmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>rmgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a> rmgr</pre>
+</li>
+</ul>
+<a id="bvmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>bvmgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a> bvmgr</pre>
+</li>
+</ul>
+<a id="qmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>qmgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a> qmgr</pre>
+</li>
+</ul>
+<a id="amgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>amgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a> amgr</pre>
+</li>
+</ul>
+<a id="fpmgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>fpmgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a> fpmgr</pre>
+</li>
+</ul>
+<a id="smgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>smgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a> smgr</pre>
+</li>
+</ul>
+<a id="emgr">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>emgr</h4>
+<pre>protected&nbsp;@Nullable <a href="../api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a> emgr</pre>
+</li>
+</ul>
+<a id="shutdownManager">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>shutdownManager</h4>
+<pre>protected&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownManager.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownManager</a> shutdownManager</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SolverBasedTest0</h4>
+<pre>public&nbsp;SolverBasedTest0()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="shutdownNotifierToUse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>shutdownNotifierToUse</h4>
+<pre class="methodSignature">protected&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier</a>&nbsp;shutdownNotifierToUse()</pre>
+</li>
+</ul>
+<a id="solverToUse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>solverToUse</h4>
+<pre class="methodSignature">protected&nbsp;<a href="../SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt">SolverContextFactory.Solvers</a>&nbsp;solverToUse()</pre>
+<div class="block">Return the solver to use in this test. The default is SMTInterpol because it's the only solver
+ guaranteed on all platforms. Overwrite to specify a different solver.</div>
+</li>
+</ul>
+<a id="logicToUse()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>logicToUse</h4>
+<pre class="methodSignature">protected&nbsp;org.sosy_lab.java_smt.solvers.opensmt.Logics&nbsp;logicToUse()</pre>
+<div class="block">This method is only called, if OpenSMT is called. OpenSMT needs to know the logic upfront.</div>
+</li>
+</ul>
+<a id="createTestConfigBuilder()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>createTestConfigBuilder</h4>
+<pre class="methodSignature">protected&nbsp;<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/ConfigurationBuilder.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">ConfigurationBuilder</a>&nbsp;createTestConfigBuilder()</pre>
+</li>
+</ul>
+<a id="initSolver()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>initSolver</h4>
+<pre class="methodSignature">public final&nbsp;void&nbsp;initSolver()
+                      throws <a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/configuration/InvalidConfigurationException.html?is-external=true" title="class or interface in org.sosy_lab.common.configuration" class="externalLink">InvalidConfigurationException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="closeSolver()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>closeSolver</h4>
+<pre class="methodSignature">public final&nbsp;void&nbsp;closeSolver()</pre>
+</li>
+</ul>
+<a id="requireIntegers()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireIntegers</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireIntegers()</pre>
+<div class="block">Skip test if the solver does not support integers.</div>
+</li>
+</ul>
+<a id="requireRationals()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireRationals</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireRationals()</pre>
+<div class="block">Skip test if the solver does not support rationals.</div>
+</li>
+</ul>
+<a id="requireBitvectors()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireBitvectors</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireBitvectors()</pre>
+<div class="block">Skip test if the solver does not support bitvectors.</div>
+</li>
+</ul>
+<a id="requireBitvectorToInt()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireBitvectorToInt</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireBitvectorToInt()</pre>
+</li>
+</ul>
+<a id="requireQuantifiers()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireQuantifiers</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireQuantifiers()</pre>
+<div class="block">Skip test if the solver does not support quantifiers.</div>
+</li>
+</ul>
+<a id="requireArrays()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireArrays</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireArrays()</pre>
+<div class="block">Skip test if the solver does not support arrays.</div>
+</li>
+</ul>
+<a id="requireFloats()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireFloats</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireFloats()</pre>
+</li>
+</ul>
+<a id="requireStrings()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireStrings</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireStrings()</pre>
+<div class="block">Skip test if the solver does not support strings.</div>
+</li>
+</ul>
+<a id="requireEnumeration()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireEnumeration</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireEnumeration()</pre>
+<div class="block">Skip test if the solver does not support enumeration theory.</div>
+</li>
+</ul>
+<a id="requireOptimization()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireOptimization</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireOptimization()</pre>
+<div class="block">Skip test if the solver does not support optimization.</div>
+</li>
+</ul>
+<a id="requireInterpolation()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireInterpolation</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireInterpolation()</pre>
+</li>
+</ul>
+<a id="requireParser()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireParser</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireParser()</pre>
+</li>
+</ul>
+<a id="requireArrayModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireArrayModel</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireArrayModel()</pre>
+</li>
+</ul>
+<a id="requireModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireModel</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireModel()</pre>
+</li>
+</ul>
+<a id="requireVisitor()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireVisitor</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireVisitor()</pre>
+</li>
+</ul>
+<a id="requireUnsatCore()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireUnsatCore</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireUnsatCore()</pre>
+</li>
+</ul>
+<a id="requireUnsatCoreOverAssumptions()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireUnsatCoreOverAssumptions</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireUnsatCoreOverAssumptions()</pre>
+</li>
+</ul>
+<a id="requireSubstitution()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireSubstitution</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireSubstitution()</pre>
+</li>
+</ul>
+<a id="requireUserPropagators()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireUserPropagators</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireUserPropagators()</pre>
+</li>
+</ul>
+<a id="assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assertThatFormula</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a>&nbsp;assertThatFormula&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;formula)</pre>
+<div class="block">Use this for checking assertions about BooleanFormulas with Truth: <code>
+ assertThatFormula(formula).is...()</code>.</div>
+</li>
+</ul>
+<a id="assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>assertThatEnvironment</h4>
+<pre class="methodSignature">protected final&nbsp;<a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a>&nbsp;assertThatEnvironment&#8203;(<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&nbsp;prover)</pre>
+<div class="block">Use this for checking assertions about ProverEnvironments with Truth: <code>
+ assertThatEnvironment(stack).is...()</code>.
+
+ <p>For new code, we suggest using <a href="ProverEnvironmentSubject.html#assertThat(org.sosy_lab.java_smt.api.BasicProverEnvironment)"><code>ProverEnvironmentSubject.assertThat(BasicProverEnvironment)</code></a> with a static import.</div>
+</li>
+</ul>
+<a id="evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>evaluateInModel</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;evaluateInModel&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;constraint,
+                               <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;formula,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a>&gt;&nbsp;possibleExpectedValues,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Collection.html?is-external=true" title="class or interface in java.util" class="externalLink">Collection</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;possibleExpectedFormulas)
+                        throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/SolverStackTest0.html b/api/org/sosy_lab/java_smt/test/SolverStackTest0.html
new file mode 100644
index 0000000000..29bd0172a5
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/SolverStackTest0.html
@@ -0,0 +1,1003 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverStackTest0 (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverStackTest0 (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":6,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.test</a></div>
+<h2 title="Class SolverStackTest0" class="title">Class SolverStackTest0</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">org.sosy_lab.java_smt.test.SolverBasedTest0</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">org.sosy_lab.java_smt.test.SolverBasedTest0.ParameterizedSolverBasedTest0</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.test.SolverStackTest0</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public abstract class <span class="typeNameLabel">SolverStackTest0</span>
+extends <a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="nested.classes.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Nested classes/interfaces inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- =========== FIELD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="field.summary">
+<!--   -->
+</a>
+<h3>Field Summary</h3>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0.ParameterizedSolverBasedTest0">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html#solver">solver</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="fields.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Fields inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.html#amgr">amgr</a>, <a href="SolverBasedTest0.html#bmgr">bmgr</a>, <a href="SolverBasedTest0.html#bvmgr">bvmgr</a>, <a href="SolverBasedTest0.html#config">config</a>, <a href="SolverBasedTest0.html#context">context</a>, <a href="SolverBasedTest0.html#emgr">emgr</a>, <a href="SolverBasedTest0.html#factory">factory</a>, <a href="SolverBasedTest0.html#fmgr">fmgr</a>, <a href="SolverBasedTest0.html#fpmgr">fpmgr</a>, <a href="SolverBasedTest0.html#imgr">imgr</a>, <a href="SolverBasedTest0.html#logger">logger</a>, <a href="SolverBasedTest0.html#mgr">mgr</a>, <a href="SolverBasedTest0.html#qmgr">qmgr</a>, <a href="SolverBasedTest0.html#rmgr">rmgr</a>, <a href="SolverBasedTest0.html#shutdownManager">shutdownManager</a>, <a href="SolverBasedTest0.html#smgr">smgr</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E()">SolverStackTest0</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#avoidDualStacksIfNotSupported()">avoidDualStacksIfNotSupported</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#constraintTestBool1()">constraintTestBool1</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#constraintTestBool2()">constraintTestBool2</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#constraintTestBool3()">constraintTestBool3</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i4" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#constraintTestBool4()">constraintTestBool4</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i5" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dualStackGlobalDeclarations()">dualStackGlobalDeclarations</a></span>()</code></th>
+<td class="colLast">
+<div class="block">This test checks that an SMT solver uses "global declarations": regardless of the stack at
+ declaration time, declarations always live for the full lifetime of the solver (i.e., they do
+ not get deleted on pop()).</div>
+</td>
+</tr>
+<tr id="i6" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dualStackTest()">dualStackTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i7" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#dualStackTest2()">dualStackTest2</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i8" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#largerStackUsageTest()">largerStackUsageTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i9" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#largeStackUsageTest()">largeStackUsageTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i10" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelForSatFormula()">modelForSatFormula</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i11" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelForSatFormulaWithLargeValue()">modelForSatFormulaWithLargeValue</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i12" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelForSatFormulaWithUF()">modelForSatFormulaWithUF</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i13" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelForUnsatFormula()">modelForUnsatFormula</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i14" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#modelForUnsatFormula2()">modelForUnsatFormula2</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i15" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiCloseTest()">multiCloseTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i16" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#multiStackTest()">multiStackTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i17" class="rowColor">
+<td class="colFirst"><code>protected abstract <a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#newEnvironmentForTest(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">newEnvironmentForTest</a></span>&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+                     <a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i18" class="altColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireTheoryCombination()">requireTheoryCombination</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i19" class="rowColor">
+<td class="colFirst"><code>protected void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#requireUfValuesInModel()">requireUfValuesInModel</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i20" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#satTestBool5()">satTestBool5</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i21" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#simpleStackTestBool()">simpleStackTestBool</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i22" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#singleStackTestInteger()">singleStackTestInteger</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i23" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#singleStackTestRational()">singleStackTestRational</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i24" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTest()">stackTest</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i25" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTest2()">stackTest2</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i26" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTest3()">stackTest3</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i27" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTest4()">stackTest4</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i28" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTest5()">stackTest5</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i29" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTestUnsat()">stackTestUnsat</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i30" class="altColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#stackTestUnsat2()">stackTestUnsat2</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i31" class="rowColor">
+<td class="colFirst"><code>void</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#symbolsOnStackTest()">symbolsOnStackTest</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Create a symbol on a level and pop this level.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0.ParameterizedSolverBasedTest0">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html#getAllSolvers()">getAllSolvers</a>, <a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html#solverToUse()">solverToUse</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.org.sosy_lab.java_smt.test.SolverBasedTest0">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></h3>
+<code><a href="SolverBasedTest0.html#assertThatEnvironment(org.sosy_lab.java_smt.api.BasicProverEnvironment)">assertThatEnvironment</a>, <a href="SolverBasedTest0.html#assertThatFormula(org.sosy_lab.java_smt.api.BooleanFormula)">assertThatFormula</a>, <a href="SolverBasedTest0.html#closeSolver()">closeSolver</a>, <a href="SolverBasedTest0.html#createTestConfigBuilder()">createTestConfigBuilder</a>, <a href="SolverBasedTest0.html#evaluateInModel(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.api.Formula,java.util.Collection,java.util.Collection)">evaluateInModel</a>, <a href="SolverBasedTest0.html#initSolver()">initSolver</a>, <a href="SolverBasedTest0.html#logicToUse()">logicToUse</a>, <a href="SolverBasedTest0.html#requireArrayModel()">requireArrayModel</a>, <a href="SolverBasedTest0.html#requireArrays()">requireArrays</a>, <a href="SolverBasedTest0.html#requireBitvectors()">requireBitvectors</a>, <a href="SolverBasedTest0.html#requireBitvectorToInt()">requireBitvectorToInt</a>, <a href="SolverBasedTest0.html#requireEnumeration()">requireEnumeration</a>, <a href="SolverBasedTest0.html#requireFloats()">requireFloats</a>, <a href="SolverBasedTest0.html#requireIntegers()">requireIntegers</a>, <a href="SolverBasedTest0.html#requireInterpolation()">requireInterpolation</a>, <a href="SolverBasedTest0.html#requireModel()">requireModel</a>, <a href="SolverBasedTest0.html#requireOptimization()">requireOptimization</a>, <a href="SolverBasedTest0.html#requireParser()">requireParser</a>, <a href="SolverBasedTest0.html#requireQuantifiers()">requireQuantifiers</a>, <a href="SolverBasedTest0.html#requireRationals()">requireRationals</a>, <a href="SolverBasedTest0.html#requireStrings()">requireStrings</a>, <a href="SolverBasedTest0.html#requireSubstitution()">requireSubstitution</a>, <a href="SolverBasedTest0.html#requireUnsatCore()">requireUnsatCore</a>, <a href="SolverBasedTest0.html#requireUnsatCoreOverAssumptions()">requireUnsatCoreOverAssumptions</a>, <a href="SolverBasedTest0.html#requireUserPropagators()">requireUserPropagators</a>, <a href="SolverBasedTest0.html#requireVisitor()">requireVisitor</a>, <a href="SolverBasedTest0.html#shutdownNotifierToUse()">shutdownNotifierToUse</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SolverStackTest0</h4>
+<pre>public&nbsp;SolverStackTest0()</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="newEnvironmentForTest(org.sosy_lab.java_smt.api.SolverContext,org.sosy_lab.java_smt.api.SolverContext.ProverOptions...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>newEnvironmentForTest</h4>
+<pre class="methodSignature">protected abstract&nbsp;<a href="../api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;?&gt;&nbsp;newEnvironmentForTest&#8203;(<a href="../api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>&nbsp;pContext,
+                                                                   <a href="../api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api">SolverContext.ProverOptions</a>...&nbsp;options)</pre>
+</li>
+</ul>
+<a id="requireTheoryCombination()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireTheoryCombination</h4>
+<pre class="methodSignature">protected&nbsp;void&nbsp;requireTheoryCombination()</pre>
+</li>
+</ul>
+<a id="requireUfValuesInModel()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>requireUfValuesInModel</h4>
+<pre class="methodSignature">protected final&nbsp;void&nbsp;requireUfValuesInModel()</pre>
+</li>
+</ul>
+<a id="simpleStackTestBool()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>simpleStackTestBool</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;simpleStackTestBool()
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="singleStackTestInteger()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>singleStackTestInteger</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;singleStackTestInteger()
+                            throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                   <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="singleStackTestRational()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>singleStackTestRational</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;singleStackTestRational()
+                             throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTest()</pre>
+</li>
+</ul>
+<a id="stackTest2()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTest2</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTest2()
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTest3()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTest3</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTest3()
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTest4()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTest4</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTest4()
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="largeStackUsageTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>largeStackUsageTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;largeStackUsageTest()
+                         throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="largerStackUsageTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>largerStackUsageTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;largerStackUsageTest()
+                          throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                                 <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTest5()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTest5</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTest5()
+                throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTestUnsat()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTestUnsat</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTestUnsat()
+                    throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                           <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="stackTestUnsat2()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>stackTestUnsat2</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;stackTestUnsat2()
+                     throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                            <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="symbolsOnStackTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>symbolsOnStackTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;symbolsOnStackTest()
+                        throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a>,
+                               <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></pre>
+<div class="block">Create a symbol on a level and pop this level. Symbol must remain valid and usable!</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="constraintTestBool1()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>constraintTestBool1</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;constraintTestBool1()
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="constraintTestBool2()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>constraintTestBool2</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;constraintTestBool2()
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="constraintTestBool3()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>constraintTestBool3</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;constraintTestBool3()
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="constraintTestBool4()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>constraintTestBool4</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;constraintTestBool4()
+                         throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="satTestBool5()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>satTestBool5</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;satTestBool5()
+                  throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                         <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="dualStackTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dualStackTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;dualStackTest()
+                   throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                          <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="dualStackTest2()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dualStackTest2</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;dualStackTest2()
+                    throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiStackTest()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>multiStackTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;multiStackTest()
+                    throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="avoidDualStacksIfNotSupported()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>avoidDualStacksIfNotSupported</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;avoidDualStacksIfNotSupported()
+                                   throws <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="dualStackGlobalDeclarations()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>dualStackGlobalDeclarations</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;dualStackGlobalDeclarations()
+                                 throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                        <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<div class="block">This test checks that an SMT solver uses "global declarations": regardless of the stack at
+ declaration time, declarations always live for the full lifetime of the solver (i.e., they do
+ not get deleted on pop()). This is contrary to the SMTLib standard, but required by us, e.g.
+ for BMC with induction (where we create new formulas while there is something on the stack).</div>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modelForUnsatFormula()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modelForUnsatFormula</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;modelForUnsatFormula()
+                          throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                 <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modelForUnsatFormula2()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modelForUnsatFormula2</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;modelForUnsatFormula2()
+                           throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                  <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modelForSatFormula()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modelForSatFormula</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;modelForSatFormula()
+                        throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                               <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modelForSatFormulaWithLargeValue()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modelForSatFormulaWithLargeValue</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;modelForSatFormulaWithLargeValue()
+                                      throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                             <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="modelForSatFormulaWithUF()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>modelForSatFormulaWithUF</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;modelForSatFormulaWithUF()
+                              throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                                     <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+<a id="multiCloseTest()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>multiCloseTest</h4>
+<pre class="methodSignature">public&nbsp;void&nbsp;multiCloseTest()
+                    throws <a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a>,
+                           <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></pre>
+<dl>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="../api/SolverException.html" title="class in org.sosy_lab.java_smt.api">SolverException</a></code></dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/InterruptedException.html?is-external=true" title="class or interface in java.lang" class="externalLink">InterruptedException</a></code></dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/package-summary.html b/api/org/sosy_lab/java_smt/test/package-summary.html
new file mode 100644
index 0000000000..92899facfd
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/package-summary.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.test (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.test (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.test</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Solver-independent tests and test utilities for the solver API.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test">BooleanFormulaSubject</a></th>
+<td class="colLast">
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about BooleanFormulas with Truth (allows using
+ <code>assert_().about(...).that(formula).isUnsatisfiable()</code> etc.).</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test">ProverEnvironmentSubject</a></th>
+<td class="colLast">
+<div class="block"><a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><code>Subject</code></a> subclass for testing assertions about ProverEnvironments with Truth (allows using
+ <code>assert_().about(...).that(stack).isUnsatisfiable()</code> etc.).</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0</a></th>
+<td class="colLast">
+<div class="block">Abstract base class with helpful utilities for writing tests that use an SMT solver.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test">SolverBasedTest0.ParameterizedSolverBasedTest0</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test">SolverStackTest0</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/test/package-tree.html b/api/org/sosy_lab/java_smt/test/package-tree.html
new file mode 100644
index 0000000000..8e3a2075a6
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/test/package-tree.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.test Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.test Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.test</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0.ParameterizedSolverBasedTest0</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverStackTest0</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="circle">com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><span class="typeNameLink">Subject</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">BooleanFormulaSubject</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">ProverEnvironmentSubject</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html b/api/org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html
new file mode 100644
index 0000000000..0062bab95c
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html
@@ -0,0 +1,371 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>PrettyPrinter.PrinterOption (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="PrettyPrinter.PrinterOption (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.utils</a></div>
+<h2 title="Enum PrettyPrinter.PrinterOption" class="title">Enum PrettyPrinter.PrinterOption</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Enum</a>&lt;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>&gt;</li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption</li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a></code>, <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>&gt;</code></dd>
+</dl>
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></dd>
+</dl>
+<hr>
+<pre>public static enum <span class="typeNameLabel">PrettyPrinter.PrinterOption</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a>&lt;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>&gt;</pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- =========== ENUM CONSTANT SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.summary">
+<!--   -->
+</a>
+<h3>Enum Constant Summary</h3>
+<table class="memberSummary">
+<caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum Constant</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><code><span class="memberNameLink"><a href="#SPLIT_ONLY_BOOLEAN_OPERATIONS">SPLIT_ONLY_BOOLEAN_OPERATIONS</a></span></code></th>
+<td class="colLast">
+<div class="block">introduce newlines only for boolean operations, instead of for all operations.</div>
+</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th>
+<td class="colLast">
+<div class="block">Returns the enum constant of this type with the specified name.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>[]</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#values()">values</a></span>()</code></th>
+<td class="colLast">
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Enum">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink">Enum</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#compareTo(E)" title="class or interface in java.lang" class="externalLink">compareTo</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#getDeclaringClass()" title="class or interface in java.lang" class="externalLink">getDeclaringClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#name()" title="class or interface in java.lang" class="externalLink">name</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#ordinal()" title="class or interface in java.lang" class="externalLink">ordinal</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true#valueOf(java.lang.Class,java.lang.String)" title="class or interface in java.lang" class="externalLink">valueOf</a></code></li>
+</ul>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ ENUM CONSTANT DETAIL =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="enum.constant.detail">
+<!--   -->
+</a>
+<h3>Enum Constant Detail</h3>
+<a id="SPLIT_ONLY_BOOLEAN_OPERATIONS">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>SPLIT_ONLY_BOOLEAN_OPERATIONS</h4>
+<pre>public static final&nbsp;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a> SPLIT_ONLY_BOOLEAN_OPERATIONS</pre>
+<div class="block">introduce newlines only for boolean operations, instead of for all operations.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="values()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>values</h4>
+<pre class="methodSignature">public static&nbsp;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>[]&nbsp;values()</pre>
+<div class="block">Returns an array containing the constants of this enum type, in
+the order they are declared. This method may be used to iterate
+over the constants as follows:
+<pre>
+for (PrettyPrinter.PrinterOption c : PrettyPrinter.PrinterOption.values())
+&nbsp;   System.out.println(c);
+</pre></div>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>an array containing the constants of this enum type, in the order they are declared</dd>
+</dl>
+</li>
+</ul>
+<a id="valueOf(java.lang.String)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>valueOf</h4>
+<pre class="methodSignature">public static&nbsp;<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>&nbsp;valueOf&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</pre>
+<div class="block">Returns the enum constant of this type with the specified name.
+The string must match <i>exactly</i> an identifier used to declare an
+enum constant in this type.  (Extraneous whitespace characters are 
+not permitted.)</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>name</code> - the name of the enum constant to be returned.</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the enum constant with the specified name</dd>
+<dt><span class="throwsLabel">Throws:</span></dt>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if this enum type has no constant with the specified name</dd>
+<dd><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/NullPointerException.html?is-external=true" title="class or interface in java.lang" class="externalLink">NullPointerException</a></code> - if the argument is null</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/PrettyPrinter.html b/api/org/sosy_lab/java_smt/utils/PrettyPrinter.html
new file mode 100644
index 0000000000..b3ed2b9406
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/PrettyPrinter.html
@@ -0,0 +1,366 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>PrettyPrinter (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="PrettyPrinter (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.utils</a></div>
+<h2 title="Class PrettyPrinter" class="title">Class PrettyPrinter</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.utils.PrettyPrinter</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">PrettyPrinter</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ======== CONSTRUCTOR SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.summary">
+<!--   -->
+</a>
+<h3>Constructor Summary</h3>
+<table class="memberSummary">
+<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Constructor</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(org.sosy_lab.java_smt.api.FormulaManager)">PrettyPrinter</a></span>&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#formulaToDot(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">formulaToDot</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+            <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">This method returns a Graphviz/Dot representation of the given formula.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#formulaToString(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">formulaToString</a></span>&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+               <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>...&nbsp;options)</code></th>
+<td class="colLast">
+<div class="block">This method returns a multi-line String with pretty-formatted and indented subformulas.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========= CONSTRUCTOR DETAIL ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="constructor.detail">
+<!--   -->
+</a>
+<h3>Constructor Detail</h3>
+<a id="&lt;init&gt;(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>PrettyPrinter</h4>
+<pre>public&nbsp;PrettyPrinter&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFmgr)</pre>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="formulaToString(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>formulaToString</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaToString&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                              <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>...&nbsp;options)</pre>
+<div class="block">This method returns a multi-line String with pretty-formatted and indented subformulas.
+
+ <p>The String representation might contain solver-specific symbols that appear during a
+ visitation of the formula. The returned String is intended to be human-readable and should not
+ be used for further processing. The formatting of this string might change with future
+ development and thus is not considered as "stable". If a user wants to apply further
+ processing, we refer to <a href="../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>FormulaManager.dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> that provides machine-readable
+ SMTLIB2.</div>
+</li>
+</ul>
+<a id="formulaToDot(org.sosy_lab.java_smt.api.Formula,org.sosy_lab.java_smt.utils.PrettyPrinter.PrinterOption...)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>formulaToDot</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;formulaToDot&#8203;(<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&nbsp;f,
+                           <a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a>...&nbsp;options)</pre>
+<div class="block">This method returns a Graphviz/Dot representation of the given formula.
+
+ <p>The graph representation might contain solver-specific symbols that appear during a
+ visitation of the formula. The returned String is intended to be a human-readable graph for
+ Graphviz/Dot and should not be used for further processing. The formatting of this string might
+ change with future development and thus is not considered as "stable". If a user wants to apply
+ further processing, we refer to <a href="../api/FormulaManager.html#dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)"><code>FormulaManager.dumpFormula(org.sosy_lab.java_smt.api.BooleanFormula)</code></a> that provides
+ machine-readable SMTLIB2.</div>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/SolverUtils.html b/api/org/sosy_lab/java_smt/utils/SolverUtils.html
new file mode 100644
index 0000000000..f4852b6e13
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/SolverUtils.html
@@ -0,0 +1,298 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>SolverUtils (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="SolverUtils (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":9};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.utils</a></div>
+<h2 title="Class SolverUtils" class="title">Class SolverUtils</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.utils.SolverUtils</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public final class <span class="typeNameLabel">SolverUtils</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">Central entry point for all utility classes.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#prettyPrinter(org.sosy_lab.java_smt.api.FormulaManager)">prettyPrinter</a></span>&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</code></th>
+<td class="colLast">
+<div class="block">Creates a new <a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><code>PrettyPrinter</code></a> instance.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code>static <a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ufElimination(org.sosy_lab.java_smt.api.FormulaManager)">ufElimination</a></span>&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</code></th>
+<td class="colLast">
+<div class="block">Creates a new <a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination</code></a> instance.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="ufElimination(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>ufElimination</h4>
+<pre class="methodSignature">public static&nbsp;<a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a>&nbsp;ufElimination&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</pre>
+<div class="block">Creates a new <a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination</code></a> instance.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pFormulaManager</code> - the <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FormulaManager</code></a> to be used</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a new <a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination</code></a> instance</dd>
+</dl>
+</li>
+</ul>
+<a id="prettyPrinter(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>prettyPrinter</h4>
+<pre class="methodSignature">public static&nbsp;<a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a>&nbsp;prettyPrinter&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</pre>
+<div class="block">Creates a new <a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><code>PrettyPrinter</code></a> instance.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pFormulaManager</code> - the <a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><code>FormulaManager</code></a> to be used</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>a new <a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><code>PrettyPrinter</code></a> instance</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/UfElimination.Result.html b/api/org/sosy_lab/java_smt/utils/UfElimination.Result.html
new file mode 100644
index 0000000000..28aa3d345a
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/UfElimination.Result.html
@@ -0,0 +1,323 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>UfElimination.Result (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="UfElimination.Result (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":9,"i1":10,"i2":10,"i3":10};
+var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.utils</a></div>
+<h2 title="Class UfElimination.Result" class="title">Class UfElimination.Result</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.utils.UfElimination.Result</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<dl>
+<dt>Enclosing class:</dt>
+<dd><a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></dd>
+</dl>
+<hr>
+<pre>public static class <span class="typeNameLabel">UfElimination.Result</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code>static <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#empty(org.sosy_lab.java_smt.api.FormulaManager)">empty</a></span>&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getConstraints()">getConstraints</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i2" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getFormula()">getFormula</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr id="i3" class="rowColor">
+<td class="colFirst"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getSubstitution()">getSubstitution</a></span>()</code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="empty(org.sosy_lab.java_smt.api.FormulaManager)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>empty</h4>
+<pre class="methodSignature">public static&nbsp;<a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a>&nbsp;empty&#8203;(<a href="../api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>&nbsp;pFormulaManager)</pre>
+</li>
+</ul>
+<a id="getFormula()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getFormula</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getFormula()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the new <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> without UFs</dd>
+</dl>
+</li>
+</ul>
+<a id="getConstraints()">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>getConstraints</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;getConstraints()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the constraints enforcing the functional consistency.</dd>
+</dl>
+</li>
+</ul>
+<a id="getSubstitution()">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>getSubstitution</h4>
+<pre class="methodSignature">public&nbsp;<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html?is-external=true" title="class or interface in java.util" class="externalLink">Map</a>&lt;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>,&#8203;<a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api">Formula</a>&gt;&nbsp;getSubstitution()</pre>
+<dl>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the substitution used to replace UFs</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li>Nested&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/UfElimination.html b/api/org/sosy_lab/java_smt/utils/UfElimination.html
new file mode 100644
index 0000000000..12bdf21d03
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/UfElimination.html
@@ -0,0 +1,326 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>UfElimination (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="UfElimination (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var data = {"i0":10,"i1":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<!-- ======== START OF CLASS DATA ======== -->
+<main role="main">
+<div class="header">
+<div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">org.sosy_lab.java_smt.utils</a></div>
+<h2 title="Class UfElimination" class="title">Class UfElimination</h2>
+</div>
+<div class="contentContainer">
+<ul class="inheritance">
+<li><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">java.lang.Object</a></li>
+<li>
+<ul class="inheritance">
+<li>org.sosy_lab.java_smt.utils.UfElimination</li>
+</ul>
+</li>
+</ul>
+<div class="description">
+<ul class="blockList">
+<li class="blockList">
+<hr>
+<pre>public class <span class="typeNameLabel">UfElimination</span>
+extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></pre>
+<div class="block">UfElimination replaces UFs by fresh variables and adds constraints to enforce the functional
+ consistency.</div>
+</li>
+</ul>
+</div>
+<div class="summary">
+<ul class="blockList">
+<li class="blockList">
+<!-- ======== NESTED CLASS SUMMARY ======== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="nested.class.summary">
+<!--   -->
+</a>
+<h3>Nested Class Summary</h3>
+<table class="memberSummary">
+<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr class="altColor">
+<td class="colFirst"><code>static class&nbsp;</code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></span></code></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</table>
+</li>
+</ul>
+</section>
+<!-- ========== METHOD SUMMARY =========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.summary">
+<!--   -->
+</a>
+<h3>Method Summary</h3>
+<table class="memberSummary">
+<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
+<tr>
+<th class="colFirst" scope="col">Modifier and Type</th>
+<th class="colSecond" scope="col">Method</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tr id="i0" class="altColor">
+<td class="colFirst"><code><a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula)">eliminateUfs</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</code></th>
+<td class="colLast">
+<div class="block">Applies the Ackermann transformation to the given <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a>.</div>
+</td>
+</tr>
+<tr id="i1" class="rowColor">
+<td class="colFirst"><code><a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></code></td>
+<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.utils.UfElimination.Result)">eliminateUfs</a></span>&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF,
+            <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a>&nbsp;pOtherResult)</code></th>
+<td class="colLast">
+<div class="block">Applies the Ackermann transformation to the given <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> with respect to the <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination.Result</code></a> of another formula.</div>
+</td>
+</tr>
+</table>
+<ul class="blockList">
+<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
+<!--   -->
+</a>
+<h3>Methods inherited from class&nbsp;java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink">Object</a></h3>
+<code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#toString()" title="class or interface in java.lang" class="externalLink">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink">wait</a></code></li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+<div class="details">
+<ul class="blockList">
+<li class="blockList">
+<!-- ============ METHOD DETAIL ========== -->
+<section>
+<ul class="blockList">
+<li class="blockList"><a id="method.detail">
+<!--   -->
+</a>
+<h3>Method Detail</h3>
+<a id="eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula)">
+<!--   -->
+</a>
+<ul class="blockList">
+<li class="blockList">
+<h4>eliminateUfs</h4>
+<pre class="methodSignature">public&nbsp;<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;eliminateUfs&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;f)</pre>
+<div class="block">Applies the Ackermann transformation to the given <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a>. Quantified formulas are not
+ supported.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>f</code> - the <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> to remove all Ufs from</dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the new <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> and the substitution done during transformation</dd>
+</dl>
+</li>
+</ul>
+<a id="eliminateUfs(org.sosy_lab.java_smt.api.BooleanFormula,org.sosy_lab.java_smt.utils.UfElimination.Result)">
+<!--   -->
+</a>
+<ul class="blockListLast">
+<li class="blockList">
+<h4>eliminateUfs</h4>
+<pre class="methodSignature">public&nbsp;<a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a>&nbsp;eliminateUfs&#8203;(<a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormula</a>&nbsp;pF,
+                                         <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a>&nbsp;pOtherResult)</pre>
+<div class="block">Applies the Ackermann transformation to the given <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> with respect to the <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination.Result</code></a> of another formula. Quantified formulas are not supported.</div>
+<dl>
+<dt><span class="paramLabel">Parameters:</span></dt>
+<dd><code>pF</code> - the <a href="../api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><code>Formula</code></a> to remove all Ufs from</dd>
+<dd><code>pOtherResult</code> - result of eliminating Ufs in another <a href="../api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><code>BooleanFormula</code></a></dd>
+<dt><span class="returnLabel">Returns:</span></dt>
+<dd>the <a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><code>UfElimination.Result</code></a> of the Ackermannization</dd>
+</dl>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</div>
+</main>
+<!-- ========= END OF CLASS DATA ========= -->
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li class="navBarCell1Rev">Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<div>
+<ul class="subNavList">
+<li>Summary:&nbsp;</li>
+<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.summary">Method</a></li>
+</ul>
+<ul class="subNavList">
+<li>Detail:&nbsp;</li>
+<li>Field&nbsp;|&nbsp;</li>
+<li>Constr&nbsp;|&nbsp;</li>
+<li><a href="#method.detail">Method</a></li>
+</ul>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/package-summary.html b/api/org/sosy_lab/java_smt/utils/package-summary.html
new file mode 100644
index 0000000000..ffc2c19729
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/package-summary.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.utils (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.utils (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<p>@CheckReturnValue
+@ParametersAreNonnullByDefault
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/FieldsAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@FieldsAreNonnullByDefault</a>
+<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/annotations/ReturnValuesAreNonnullByDefault.html?is-external=true" title="class or interface in org.sosy_lab.common.annotations" class="externalLink">@ReturnValuesAreNonnullByDefault</a>
+</p>
+<h1 title="Package" class="title">Package&nbsp;org.sosy_lab.java_smt.utils</h1>
+</div>
+<div class="contentContainer">
+<section><a id="package.description">
+<!--   -->
+</a>
+<div class="block">Utility classes implementing algorithms based on the API of JavaSMT.</div>
+</section>
+<ul class="blockList">
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Class</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils">PrettyPrinter</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="SolverUtils.html" title="class in org.sosy_lab.java_smt.utils">SolverUtils</a></th>
+<td class="colLast">
+<div class="block">Central entry point for all utility classes.</div>
+</td>
+</tr>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils">UfElimination</a></th>
+<td class="colLast">
+<div class="block">UfElimination replaces UFs by fresh variables and adds constraints to enforce the functional
+ consistency.</div>
+</td>
+</tr>
+<tr class="rowColor">
+<th class="colFirst" scope="row"><a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils">UfElimination.Result</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+<li class="blockList">
+<table class="typeSummary">
+<caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption>
+<tr>
+<th class="colFirst" scope="col">Enum</th>
+<th class="colLast" scope="col">Description</th>
+</tr>
+<tbody>
+<tr class="altColor">
+<th class="colFirst" scope="row"><a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils">PrettyPrinter.PrinterOption</a></th>
+<td class="colLast">&nbsp;</td>
+</tr>
+</tbody>
+</table>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li class="navBarCell1Rev">Package</li>
+<li>Class</li>
+<li><a href="package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/org/sosy_lab/java_smt/utils/package-tree.html b/api/org/sosy_lab/java_smt/utils/package-tree.html
new file mode 100644
index 0000000000..157b3d0f0b
--- /dev/null
+++ b/api/org/sosy_lab/java_smt/utils/package-tree.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>org.sosy_lab.java_smt.utils Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="../../../../jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="../../../../script.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="../../../../jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="../../../../jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="org.sosy_lab.java_smt.utils Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "../../../../";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For Package org.sosy_lab.java_smt.utils</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="../../../../overview-tree.html">All Packages</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="SolverUtils.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">SolverUtils</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination.Result</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter.PrinterOption</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="../../../../index.html">Overview</a></li>
+<li><a href="package-summary.html">Package</a></li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+<li><a href="../../../../help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="../../../../allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/overview-summary.html b/api/overview-summary.html
new file mode 100644
index 0000000000..3bceb1121a
--- /dev/null
+++ b/api/overview-summary.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>JavaSMT Solver Library</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<script type="text/javascript">window.location.replace('index.html')</script>
+<noscript>
+<meta http-equiv="Refresh" content="0;index.html">
+</noscript>
+<link rel="canonical" href="index.html">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+</head>
+<body>
+<main role="main">
+<noscript>
+<p>JavaScript is disabled on your browser.</p>
+</noscript>
+<p><a href="index.html">index.html</a></p>
+</main>
+</body>
+</html>
diff --git a/api/overview-tree.html b/api/overview-tree.html
new file mode 100644
index 0000000000..1e8a6293fa
--- /dev/null
+++ b/api/overview-tree.html
@@ -0,0 +1,420 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Class Hierarchy (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Class Hierarchy (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 class="title">Hierarchy For All Packages</h1>
+<span class="packageHierarchyLabel">Package Hierarchies:</span>
+<ul class="horizontal">
+<li><a href="org/sosy_lab/java_smt/package-tree.html">org.sosy_lab.java_smt</a>, </li>
+<li><a href="org/sosy_lab/java_smt/api/package-tree.html">org.sosy_lab.java_smt.api</a>, </li>
+<li><a href="org/sosy_lab/java_smt/api/visitors/package-tree.html">org.sosy_lab.java_smt.api.visitors</a>, </li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/package-tree.html">org.sosy_lab.java_smt.basicimpl</a>, </li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/tactics/package-tree.html">org.sosy_lab.java_smt.basicimpl.tactics</a>, </li>
+<li><a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/package-tree.html">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper</a>, </li>
+<li><a href="org/sosy_lab/java_smt/delegate/debugging/package-tree.html">org.sosy_lab.java_smt.delegate.debugging</a>, </li>
+<li><a href="org/sosy_lab/java_smt/delegate/logging/package-tree.html">org.sosy_lab.java_smt.delegate.logging</a>, </li>
+<li><a href="org/sosy_lab/java_smt/delegate/statistics/package-tree.html">org.sosy_lab.java_smt.delegate.statistics</a>, </li>
+<li><a href="org/sosy_lab/java_smt/delegate/synchronize/package-tree.html">org.sosy_lab.java_smt.delegate.synchronize</a>, </li>
+<li><a href="org/sosy_lab/java_smt/example/package-tree.html">org.sosy_lab.java_smt.example</a>, </li>
+<li><a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/package-tree.html">org.sosy_lab.java_smt.example.nqueens_user_propagator</a>, </li>
+<li><a href="org/sosy_lab/java_smt/test/package-tree.html">org.sosy_lab.java_smt.test</a>, </li>
+<li><a href="org/sosy_lab/java_smt/utils/package-tree.html">org.sosy_lab.java_smt.utils</a></li>
+</ul>
+</div>
+<div class="contentContainer">
+<section>
+<h2 title="Class Hierarchy">Class Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractArrayFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBitvectorFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractBooleanFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEnumerationFormulaManager.EnumType.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEnumerationFormulaManager.EnumType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractEvaluator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractEvaluator</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractModel</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFloatingPointFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;ParamFormulaType,&#8203;ResultFormulaType,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProver.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProver</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractProverWithAllSat.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractProverWithAllSat</span></a>&lt;T&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractQuantifiedFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSLFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSLFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractSolverContext.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractStringFormulaManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractStringFormulaManager</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUFManager.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUFManager</span></a>&lt;TFormulaInfo,&#8203;TFunctionDecl,&#8203;TType,&#8203;TEnv&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractUserPropagator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractUserPropagator</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api">UserPropagator</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensEnumeratingPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensEnumeratingPropagator</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueensConstraintPropagator.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueensConstraintPropagator</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/AllSatExample.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">AllSatExample</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/BasicProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">BasicProverWithAssumptionsWrapper</span></a>&lt;T,&#8203;P&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/InterpolatingProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">InterpolatingProverWithAssumptionsWrapper</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper.<a href="org/sosy_lab/java_smt/basicimpl/withAssumptionsWrapper/ProverWithAssumptionsWrapper.html" title="class in org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"><span class="typeNameLink">ProverWithAssumptionsWrapper</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.BinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BinoxxoSolver</span></a>&lt;S&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.BooleanBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.BooleanBasedBinoxxoSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Binoxxo.IntegerBasedBinoxxoSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Binoxxo.IntegerBasedBinoxxoSolver</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaTransformationVisitor</span></a> (implements org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.tactics.<a href="org/sosy_lab/java_smt/basicimpl/tactics/NNFVisitor.html" title="class in org.sosy_lab.java_smt.basicimpl.tactics"><span class="typeNameLink">NNFVisitor</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/CachingModel.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">CachingModel</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingArrayFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingArrayFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">ArrayFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBitvectorFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBitvectorFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BitvectorFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingBooleanFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingBooleanFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">BooleanFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFloatingPointFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFloatingPointFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FloatingPointFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api">FormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingInterpolatingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingInterpolatingProverEnvironment</span></a>&lt;T&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">InterpolatingProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingModel.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingModel</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api">Model</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingNumeralFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingNumeralFormulaManager</span></a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">NumeralFormulaManager</a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingIntegerFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingIntegerFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">IntegerFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingRationalFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingRationalFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">RationalFormulaManager</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingOptimizationProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingOptimizationProverEnvironment</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">OptimizationProverEnvironment</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingProverEnvironment.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingProverEnvironment</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">ProverEnvironment</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingQuantifiedFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingQuantifiedFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">QuantifiedFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSLFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSLFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">SLFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingSolverInformation.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingSolverInformation</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingStringFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingStringFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">StringFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.debugging.<a href="org/sosy_lab/java_smt/delegate/debugging/DebuggingUFManager.html" title="class in org.sosy_lab.java_smt.delegate.debugging"><span class="typeNameLink">DebuggingUFManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api">UFManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultBooleanFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultBooleanFormulaVisitor</span></a>&lt;R&gt; (implements org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">BooleanFormulaVisitor</a>&lt;R&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/DefaultFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">DefaultFormulaVisitor</span></a>&lt;R&gt; (implements org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/ExpectedFormulaVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">ExpectedFormulaVisitor</span></a>&lt;R&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointNumber.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointNumber</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/FormulaClassifier.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">FormulaClassifier</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FormulaCreator.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FormulaCreator</span></a>&lt;TFormulaInfo,&#8203;TType,&#8203;TEnv,&#8203;TFuncDecl&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaTransformationVisitor.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaTransformationVisitor</span></a> (implements org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors">FormulaVisitor</a>&lt;R&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.ArrayFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.ArrayFormulaType</span></a>&lt;TI,&#8203;TE&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.BitvectorType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.BitvectorType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.EnumerationFormulaType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.EnumerationFormulaType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.FloatingPointType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.FloatingPointType</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaType.NumeralType.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaType.NumeralType</span></a>&lt;T&gt;</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/FunctionDeclarationImpl.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">FunctionDeclarationImpl</span></a>&lt;F,&#8203;T&gt; (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api">FunctionDeclaration</a>&lt;E&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/HoudiniApp.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">HoudiniApp</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Interpolation.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Interpolation</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.logging.<a href="org/sosy_lab/java_smt/delegate/logging/LoggingSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.logging"><span class="typeNameLink">LoggingSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.ValueAssignment.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model.ValueAssignment</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/NQueens.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">NQueens</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.nqueens_user_propagator.<a href="org/sosy_lab/java_smt/example/nqueens_user_propagator/NQueens.html" title="class in org.sosy_lab.java_smt.example.nqueens_user_propagator"><span class="typeNameLink">NQueens</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/OptimizationFormulaWeights.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationFormulaWeights</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/OptimizationIntReal.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">OptimizationIntReal</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">PrettyPrinter</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/ShutdownHook.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">ShutdownHook</span></a> (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, org.sosy_lab.common.<a href="https://sosy-lab.github.io/java-common-lib/api/org/sosy_lab/common/ShutdownNotifier.ShutdownRequestListener.html?is-external=true" title="class or interface in org.sosy_lab.common" class="externalLink">ShutdownNotifier.ShutdownRequestListener</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SimpleUserPropagator.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SimpleUserPropagator</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverBasedTest0.ParameterizedSolverBasedTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverBasedTest0.ParameterizedSolverBasedTest0</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/SolverStackTest0.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">SolverStackTest0</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.html" title="class in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.RowBuilder.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.RowBuilder</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/SolverOverviewTable.SolverInfo.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">SolverOverviewTable.SolverInfo</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/SolverStatistics.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">SolverStatistics</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/SolverUtils.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">SolverUtils</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/StatisticsSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">StatisticsSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">com.google.common.truth.<a href="https://truth.dev/api/latest/com/google/common/truth/Subject.html?is-external=true" title="class or interface in com.google.common.truth" class="externalLink"><span class="typeNameLink">Subject</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/BooleanFormulaSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">BooleanFormulaSubject</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.test.<a href="org/sosy_lab/java_smt/test/ProverEnvironmentSubject.html" title="class in org.sosy_lab.java_smt.test"><span class="typeNameLink">ProverEnvironmentSubject</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.SudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.SudokuSolver</span></a>&lt;S&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.BooleanBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.BooleanBasedSudokuSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.EnumerationBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.EnumerationBasedSudokuSolver</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.example.<a href="org/sosy_lab/java_smt/example/Sudoku.IntegerBasedSudokuSolver.html" title="class in org.sosy_lab.java_smt.example"><span class="typeNameLink">Sudoku.IntegerBasedSudokuSolver</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedEnumerationFormulaManager.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedEnumerationFormulaManager</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api">EnumerationFormulaManager</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.synchronize.<a href="org/sosy_lab/java_smt/delegate/synchronize/SynchronizedSolverContext.html" title="class in org.sosy_lab.java_smt.delegate.synchronize"><span class="typeNameLink">SynchronizedSolverContext</span></a> (implements org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api">SolverContext</a>)</li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Throwable</span></a> (implements java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Exception.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Exception</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverException</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.delegate.statistics.<a href="org/sosy_lab/java_smt/delegate/statistics/TimerPool.TimerWrapper.html" title="class in org.sosy_lab.java_smt.delegate.statistics"><span class="typeNameLink">TimerPool.TimerWrapper</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/Tokenizer.html" title="class in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">Tokenizer</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.html" title="class in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/UfElimination.Result.html" title="class in org.sosy_lab.java_smt.utils"><span class="typeNameLink">UfElimination.Result</span></a></li>
+</ul>
+</li>
+</ul>
+</section>
+<section>
+<h2 title="Interface Hierarchy">Interface Hierarchy</h2>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormulaManager</span></a></li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">AutoCloseable</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/InterpolatingProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">InterpolatingProverEnvironment</span></a>&lt;T&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ProverEnvironment</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Evaluator</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;T&gt;)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>, java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Iterable</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment</span></a> (also extends org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.html" title="interface in org.sosy_lab.java_smt.api">BasicProverEnvironment</a>&lt;T&gt;)</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BasicProverEnvironment.AllSatCallback.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BasicProverEnvironment.AllSatCallback</span></a>&lt;R&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/BooleanFormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">BooleanFormulaVisitor</span></a>&lt;R&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Formula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Formula</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/ArrayFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">ArrayFormula</span></a>&lt;TI,&#8203;TE&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BitvectorFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BitvectorFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/BooleanFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">BooleanFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/EnumerationFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">EnumerationFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingModeFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingModeFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula</span></a>
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormula.IntegerFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.IntegerFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormula.RationalFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormula.RationalFormula</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/RegexFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RegexFormula</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormula.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormula</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/FormulaVisitor.html" title="interface in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">FormulaVisitor</span></a>&lt;R&gt;</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclaration.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclaration</span></a>&lt;E&gt;</li>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Iterable</span></a>&lt;T&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Model.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">Model</span></a> (also extends java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/AutoCloseable.html?is-external=true" title="class or interface in java.lang" class="externalLink">AutoCloseable</a>, org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Evaluator.html" title="interface in org.sosy_lab.java_smt.api">Evaluator</a>)</li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/NumeralFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">NumeralFormulaManager</span></a>&lt;ParamFormulaType,&#8203;ResultFormulaType&gt;
+<ul>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/IntegerFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">IntegerFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/RationalFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">RationalFormulaManager</span></a></li>
+</ul>
+</li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/PropagatorBackend.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">PropagatorBackend</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SLFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">SLFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/StringFormulaManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">StringFormulaManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UFManager.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UFManager</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/UserPropagator.html" title="interface in org.sosy_lab.java_smt.api"><span class="typeNameLink">UserPropagator</span></a></li>
+</ul>
+</section>
+<section>
+<h2 title="Enum Hierarchy">Enum Hierarchy</h2>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Object</span></a>
+<ul>
+<li class="circle">java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Enum.html?is-external=true" title="class or interface in java.lang" class="externalLink"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang" class="externalLink">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/Serializable.html?is-external=true" title="class or interface in java.io" class="externalLink">Serializable</a>)
+<ul>
+<li class="circle">org.sosy_lab.java_smt.basicimpl.<a href="org/sosy_lab/java_smt/basicimpl/AbstractNumeralFormulaManager.NonLinearArithmetic.html" title="enum in org.sosy_lab.java_smt.basicimpl"><span class="typeNameLink">AbstractNumeralFormulaManager.NonLinearArithmetic</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FloatingPointRoundingMode.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FloatingPointRoundingMode</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/FunctionDeclarationKind.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">FunctionDeclarationKind</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/OptimizationProverEnvironment.OptStatus.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">OptimizationProverEnvironment.OptStatus</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.utils.<a href="org/sosy_lab/java_smt/utils/PrettyPrinter.PrinterOption.html" title="enum in org.sosy_lab.java_smt.utils"><span class="typeNameLink">PrettyPrinter.PrinterOption</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/QuantifiedFormulaManager.Quantifier.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">QuantifiedFormulaManager.Quantifier</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/SolverContext.ProverOptions.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">SolverContext.ProverOptions</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.<a href="org/sosy_lab/java_smt/SolverContextFactory.Solvers.html" title="enum in org.sosy_lab.java_smt"><span class="typeNameLink">SolverContextFactory.Solvers</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.<a href="org/sosy_lab/java_smt/api/Tactic.html" title="enum in org.sosy_lab.java_smt.api"><span class="typeNameLink">Tactic</span></a></li>
+<li class="circle">org.sosy_lab.java_smt.api.visitors.<a href="org/sosy_lab/java_smt/api/visitors/TraversalProcess.TraversalType.html" title="enum in org.sosy_lab.java_smt.api.visitors"><span class="typeNameLink">TraversalProcess.TraversalType</span></a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+</section>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li class="navBarCell1Rev">Tree</li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/package-search-index.js b/api/package-search-index.js
new file mode 100644
index 0000000000..1bd1e7deb5
--- /dev/null
+++ b/api/package-search-index.js
@@ -0,0 +1 @@
+packageSearchIndex = [{"l":"All Packages","url":"allpackages-index.html"},{"l":"org.sosy_lab.java_smt"},{"l":"org.sosy_lab.java_smt.api"},{"l":"org.sosy_lab.java_smt.api.visitors"},{"l":"org.sosy_lab.java_smt.basicimpl"},{"l":"org.sosy_lab.java_smt.basicimpl.tactics"},{"l":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper"},{"l":"org.sosy_lab.java_smt.delegate.debugging"},{"l":"org.sosy_lab.java_smt.delegate.logging"},{"l":"org.sosy_lab.java_smt.delegate.statistics"},{"l":"org.sosy_lab.java_smt.delegate.synchronize"},{"l":"org.sosy_lab.java_smt.example"},{"l":"org.sosy_lab.java_smt.example.nqueens_user_propagator"},{"l":"org.sosy_lab.java_smt.test"},{"l":"org.sosy_lab.java_smt.utils"}]
\ No newline at end of file
diff --git a/api/package-search-index.zip b/api/package-search-index.zip
new file mode 100644
index 0000000000..8a2c02411a
Binary files /dev/null and b/api/package-search-index.zip differ
diff --git a/api/resources/glass.png b/api/resources/glass.png
new file mode 100644
index 0000000000..a7f591f467
Binary files /dev/null and b/api/resources/glass.png differ
diff --git a/api/resources/x.png b/api/resources/x.png
new file mode 100644
index 0000000000..30548a756e
Binary files /dev/null and b/api/resources/x.png differ
diff --git a/api/script.js b/api/script.js
new file mode 100644
index 0000000000..7dc93c48e3
--- /dev/null
+++ b/api/script.js
@@ -0,0 +1,149 @@
+/*
+ * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+var moduleSearchIndex;
+var packageSearchIndex;
+var typeSearchIndex;
+var memberSearchIndex;
+var tagSearchIndex;
+function loadScripts(doc, tag) {
+    createElem(doc, tag, 'jquery/jszip/dist/jszip.js');
+    createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils.js');
+    if (window.navigator.userAgent.indexOf('MSIE ') > 0 || window.navigator.userAgent.indexOf('Trident/') > 0 ||
+            window.navigator.userAgent.indexOf('Edge/') > 0) {
+        createElem(doc, tag, 'jquery/jszip-utils/dist/jszip-utils-ie.js');
+    }
+    createElem(doc, tag, 'search.js');
+
+    $.get(pathtoroot + "module-search-index.zip")
+            .done(function() {
+                JSZipUtils.getBinaryContent(pathtoroot + "module-search-index.zip", function(e, data) {
+                    JSZip.loadAsync(data).then(function(zip){
+                        zip.file("module-search-index.json").async("text").then(function(content){
+                            moduleSearchIndex = JSON.parse(content);
+                        });
+                    });
+                });
+            });
+    $.get(pathtoroot + "package-search-index.zip")
+            .done(function() {
+                JSZipUtils.getBinaryContent(pathtoroot + "package-search-index.zip", function(e, data) {
+                    JSZip.loadAsync(data).then(function(zip){
+                        zip.file("package-search-index.json").async("text").then(function(content){
+                            packageSearchIndex = JSON.parse(content);
+                        });
+                    });
+                });
+            });
+    $.get(pathtoroot + "type-search-index.zip")
+            .done(function() {
+                JSZipUtils.getBinaryContent(pathtoroot + "type-search-index.zip", function(e, data) {
+                    JSZip.loadAsync(data).then(function(zip){
+                        zip.file("type-search-index.json").async("text").then(function(content){
+                            typeSearchIndex = JSON.parse(content);
+                        });
+                    });
+                });
+            });
+    $.get(pathtoroot + "member-search-index.zip")
+            .done(function() {
+                JSZipUtils.getBinaryContent(pathtoroot + "member-search-index.zip", function(e, data) {
+                    JSZip.loadAsync(data).then(function(zip){
+                        zip.file("member-search-index.json").async("text").then(function(content){
+                            memberSearchIndex = JSON.parse(content);
+                        });
+                    });
+                });
+            });
+    $.get(pathtoroot + "tag-search-index.zip")
+            .done(function() {
+                JSZipUtils.getBinaryContent(pathtoroot + "tag-search-index.zip", function(e, data) {
+                    JSZip.loadAsync(data).then(function(zip){
+                        zip.file("tag-search-index.json").async("text").then(function(content){
+                            tagSearchIndex = JSON.parse(content);
+                        });
+                    });
+                });
+            });
+    if (!moduleSearchIndex) {
+        createElem(doc, tag, 'module-search-index.js');
+    }
+    if (!packageSearchIndex) {
+        createElem(doc, tag, 'package-search-index.js');
+    }
+    if (!typeSearchIndex) {
+        createElem(doc, tag, 'type-search-index.js');
+    }
+    if (!memberSearchIndex) {
+        createElem(doc, tag, 'member-search-index.js');
+    }
+    if (!tagSearchIndex) {
+        createElem(doc, tag, 'tag-search-index.js');
+    }
+    $(window).resize(function() {
+        $('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+    });
+}
+
+function createElem(doc, tag, path) {
+    var script = doc.createElement(tag);
+    var scriptElement = doc.getElementsByTagName(tag)[0];
+    script.src = pathtoroot + path;
+    scriptElement.parentNode.insertBefore(script, scriptElement);
+}
+
+function show(type) {
+    count = 0;
+    for (var key in data) {
+        var row = document.getElementById(key);
+        if ((data[key] &  type) !== 0) {
+            row.style.display = '';
+            row.className = (count++ % 2) ? rowColor : altColor;
+        }
+        else
+            row.style.display = 'none';
+    }
+    updateTabs(type);
+}
+
+function updateTabs(type) {
+    for (var value in tabs) {
+        var sNode = document.getElementById(tabs[value][0]);
+        var spanNode = sNode.firstChild;
+        if (value == type) {
+            sNode.className = activeTableTab;
+            spanNode.innerHTML = tabs[value][1];
+        }
+        else {
+            sNode.className = tableTab;
+            spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
+        }
+    }
+}
+
+function updateModuleFrame(pFrame, cFrame) {
+    top.packageFrame.location = pFrame;
+    top.classFrame.location = cFrame;
+}
diff --git a/api/search.js b/api/search.js
new file mode 100644
index 0000000000..8492271e71
--- /dev/null
+++ b/api/search.js
@@ -0,0 +1,326 @@
+/*
+ * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+var noResult = {l: "No results found"};
+var catModules = "Modules";
+var catPackages = "Packages";
+var catTypes = "Types";
+var catMembers = "Members";
+var catSearchTags = "SearchTags";
+var highlight = "<span class=\"resultHighlight\">$&</span>";
+var camelCaseRegexp = "";
+var secondaryMatcher = "";
+function getHighlightedText(item) {
+    var ccMatcher = new RegExp(camelCaseRegexp);
+    var label = item.replace(ccMatcher, highlight);
+    if (label === item) {
+        label = item.replace(secondaryMatcher, highlight);
+    }
+    return label;
+}
+function getURLPrefix(ui) {
+    var urlPrefix="";
+    if (useModuleDirectories) {
+        var slash = "/";
+        if (ui.item.category === catModules) {
+            return ui.item.l + slash;
+        } else if (ui.item.category === catPackages && ui.item.m) {
+            return ui.item.m + slash;
+        } else if ((ui.item.category === catTypes && ui.item.p) || ui.item.category === catMembers) {
+            $.each(packageSearchIndex, function(index, item) {
+                if (item.m && ui.item.p == item.l) {
+                    urlPrefix = item.m + slash;
+                }
+            });
+            return urlPrefix;
+        } else {
+            return urlPrefix;
+        }
+    }
+    return urlPrefix;
+}
+var watermark = 'Search';
+$(function() {
+    $("#search").val('');
+    $("#search").prop("disabled", false);
+    $("#reset").prop("disabled", false);
+    $("#search").val(watermark).addClass('watermark');
+    $("#search").blur(function() {
+        if ($(this).val().length == 0) {
+            $(this).val(watermark).addClass('watermark');
+        }
+    });
+    $("#search").on('click keydown', function() {
+        if ($(this).val() == watermark) {
+            $(this).val('').removeClass('watermark');
+        }
+    });
+    $("#reset").click(function() {
+        $("#search").val('');
+        $("#search").focus();
+    });
+    $("#search").focus();
+    $("#search")[0].setSelectionRange(0, 0);
+});
+$.widget("custom.catcomplete", $.ui.autocomplete, {
+    _create: function() {
+        this._super();
+        this.widget().menu("option", "items", "> :not(.ui-autocomplete-category)");
+    },
+    _renderMenu: function(ul, items) {
+        var rMenu = this,
+                currentCategory = "";
+        rMenu.menu.bindings = $();
+        $.each(items, function(index, item) {
+            var li;
+            if (item.l !== noResult.l && item.category !== currentCategory) {
+                ul.append("<li class=\"ui-autocomplete-category\">" + item.category + "</li>");
+                currentCategory = item.category;
+            }
+            li = rMenu._renderItemData(ul, item);
+            if (item.category) {
+                li.attr("aria-label", item.category + " : " + item.l);
+                li.attr("class", "resultItem");
+            } else {
+                li.attr("aria-label", item.l);
+                li.attr("class", "resultItem");
+            }
+        });
+    },
+    _renderItem: function(ul, item) {
+        var label = "";
+        if (item.category === catModules) {
+            label = getHighlightedText(item.l);
+        } else if (item.category === catPackages) {
+            label = (item.m)
+                    ? getHighlightedText(item.m + "/" + item.l)
+                    : getHighlightedText(item.l);
+        } else if (item.category === catTypes) {
+            label = (item.p)
+                    ? getHighlightedText(item.p + "." + item.l)
+                    : getHighlightedText(item.l);
+        } else if (item.category === catMembers) {
+            label = getHighlightedText(item.p + "." + (item.c + "." + item.l));
+        } else if (item.category === catSearchTags) {
+            label = getHighlightedText(item.l);
+        } else {
+            label = item.l;
+        }
+        var li = $("<li/>").appendTo(ul);
+        var div = $("<div/>").appendTo(li);
+        if (item.category === catSearchTags) {
+            if (item.d) {
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span><br><span class=\"searchTagDescResult\">"
+                                + item.d + "</span><br>");
+            } else {
+                div.html(label + "<span class=\"searchTagHolderResult\"> (" + item.h + ")</span>");
+            }
+        } else {
+            div.html(label);
+        }
+        return li;
+    }
+});
+$(function() {
+    $("#search").catcomplete({
+        minLength: 1,
+        delay: 100,
+        source: function(request, response) {
+            var result = new Array();
+            var presult = new Array();
+            var tresult = new Array();
+            var mresult = new Array();
+            var tgresult = new Array();
+            var secondaryresult = new Array();
+            var displayCount = 0;
+            var exactMatcher = new RegExp("^" + $.ui.autocomplete.escapeRegex(request.term) + "$", "i");
+            camelCaseRegexp = ($.ui.autocomplete.escapeRegex(request.term)).split(/(?=[A-Z])/).join("([a-z0-9_$]*?)");
+            var camelCaseMatcher = new RegExp("^" + camelCaseRegexp);
+            secondaryMatcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
+
+            // Return the nested innermost name from the specified object
+            function nestedName(e) {
+                return e.l.substring(e.l.lastIndexOf(".") + 1);
+            }
+
+            function concatResults(a1, a2) {
+                a1 = a1.concat(a2);
+                a2.length = 0;
+                return a1;
+            }
+
+            if (moduleSearchIndex) {
+                var mdleCount = 0;
+                $.each(moduleSearchIndex, function(index, item) {
+                    item.category = catModules;
+                    if (exactMatcher.test(item.l)) {
+                        result.push(item);
+                        mdleCount++;
+                    } else if (camelCaseMatcher.test(item.l)) {
+                        result.push(item);
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                displayCount = mdleCount;
+                result = concatResults(result, secondaryresult);
+            }
+            if (packageSearchIndex) {
+                var pCount = 0;
+                var pkg = "";
+                $.each(packageSearchIndex, function(index, item) {
+                    item.category = catPackages;
+                    pkg = (item.m)
+                            ? (item.m + "/" + item.l)
+                            : item.l;
+                    if (exactMatcher.test(item.l)) {
+                        presult.push(item);
+                        pCount++;
+                    } else if (camelCaseMatcher.test(pkg)) {
+                        presult.push(item);
+                    } else if (secondaryMatcher.test(pkg)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(presult, secondaryresult));
+                displayCount = (pCount > displayCount) ? pCount : displayCount;
+            }
+            if (typeSearchIndex) {
+                var tCount = 0;
+                $.each(typeSearchIndex, function(index, item) {
+                    item.category = catTypes;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        tresult.push(item);
+                        tCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        tresult.push(item);
+                    } else if (secondaryMatcher.test(item.p + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tresult, secondaryresult));
+                displayCount = (tCount > displayCount) ? tCount : displayCount;
+            }
+            if (memberSearchIndex) {
+                var mCount = 0;
+                $.each(memberSearchIndex, function(index, item) {
+                    item.category = catMembers;
+                    var s = nestedName(item);
+                    if (exactMatcher.test(s)) {
+                        mresult.push(item);
+                        mCount++;
+                    } else if (camelCaseMatcher.test(s)) {
+                        mresult.push(item);
+                    } else if (secondaryMatcher.test(item.c + "." + item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(mresult, secondaryresult));
+                displayCount = (mCount > displayCount) ? mCount : displayCount;
+            }
+            if (tagSearchIndex) {
+                var tgCount = 0;
+                $.each(tagSearchIndex, function(index, item) {
+                    item.category = catSearchTags;
+                    if (exactMatcher.test(item.l)) {
+                        tgresult.push(item);
+                        tgCount++;
+                    } else if (secondaryMatcher.test(item.l)) {
+                        secondaryresult.push(item);
+                    }
+                });
+                result = result.concat(concatResults(tgresult, secondaryresult));
+                displayCount = (tgCount > displayCount) ? tgCount : displayCount;
+            }
+            displayCount = (displayCount > 500) ? displayCount : 500;
+            var counter = function() {
+                var count = {Modules: 0, Packages: 0, Types: 0, Members: 0, SearchTags: 0};
+                var f = function(item) {
+                    count[item.category] += 1;
+                    return (count[item.category] <= displayCount);
+                };
+                return f;
+            }();
+            response(result.filter(counter));
+        },
+        response: function(event, ui) {
+            if (!ui.content.length) {
+                ui.content.push(noResult);
+            } else {
+                $("#search").empty();
+            }
+        },
+        autoFocus: true,
+        position: {
+            collision: "flip"
+        },
+        select: function(event, ui) {
+            if (ui.item.l !== noResult.l) {
+                var url = getURLPrefix(ui);
+                if (ui.item.category === catModules) {
+                    if (useModuleDirectories) {
+                        url += "module-summary.html";
+                    } else {
+                        url = ui.item.l + "-summary.html";
+                    }
+                } else if (ui.item.category === catPackages) {
+                    if (ui.item.url) {
+                        url = ui.item.url;
+                    } else {
+                    url += ui.item.l.replace(/\./g, '/') + "/package-summary.html";
+                    }
+                } else if (ui.item.category === catTypes) {
+                    if (ui.item.url) {
+                        url = ui.item.url;
+                    } else if (ui.item.p === "<Unnamed>") {
+                        url += ui.item.l + ".html";
+                    } else {
+                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.l + ".html";
+                    }
+                } else if (ui.item.category === catMembers) {
+                    if (ui.item.p === "<Unnamed>") {
+                        url += ui.item.c + ".html" + "#";
+                    } else {
+                        url += ui.item.p.replace(/\./g, '/') + "/" + ui.item.c + ".html" + "#";
+                    }
+                    if (ui.item.url) {
+                        url += ui.item.url;
+                    } else {
+                        url += ui.item.l;
+                    }
+                } else if (ui.item.category === catSearchTags) {
+                    url += ui.item.u;
+                }
+                if (top !== window) {
+                    parent.classFrame.location = pathtoroot + url;
+                } else {
+                    window.location.href = pathtoroot + url;
+                }
+                $("#search").focus();
+            }
+        }
+    });
+});
diff --git a/api/serialized-form.html b/api/serialized-form.html
new file mode 100644
index 0000000000..59891e5905
--- /dev/null
+++ b/api/serialized-form.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML>
+<!-- NewPage -->
+<html lang="en">
+<head>
+<!-- Generated by javadoc (11.0.24) on Sun Oct 27 09:55:24 UTC 2024 -->
+<title>Serialized Form (JavaSMT Solver Library)</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta name="dc.created" content="2024-10-27">
+<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery/jquery-ui.min.css" title="Style">
+<link rel="stylesheet" type="text/css" href="jquery-ui.overrides.css" title="Style">
+<script type="text/javascript" src="script.js"></script>
+<script type="text/javascript" src="jquery/jszip/dist/jszip.min.js"></script>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils.min.js"></script>
+<!--[if IE]>
+<script type="text/javascript" src="jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
+<![endif]-->
+<script type="text/javascript" src="jquery/jquery-3.6.1.min.js"></script>
+<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
+</head>
+<body>
+<script type="text/javascript"><!--
+    try {
+        if (location.href.indexOf('is-external=true') == -1) {
+            parent.document.title="Serialized Form (JavaSMT Solver Library)";
+        }
+    }
+    catch(err) {
+    }
+//-->
+var pathtoroot = "./";
+var useModuleDirectories = true;
+loadScripts(document, 'script');</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+<header role="banner">
+<nav role="navigation">
+<div class="fixedNav">
+<!-- ========= START OF TOP NAVBAR ======= -->
+<div class="topNav"><a id="navbar.top">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.top.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_top">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<ul class="navListSearch">
+<li><label for="search">SEARCH:</label>
+<input type="text" id="search" value="search" disabled="disabled">
+<input type="reset" id="reset" value="reset" disabled="disabled">
+</li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_top");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.top">
+<!--   -->
+</a></div>
+<!-- ========= END OF TOP NAVBAR ========= -->
+</div>
+<div class="navPadding">&nbsp;</div>
+<script type="text/javascript"><!--
+$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
+//-->
+</script>
+</nav>
+</header>
+<main role="main">
+<div class="header">
+<h1 title="Serialized Form" class="title">Serialized Form</h1>
+</div>
+<div class="serializedFormContainer">
+<ul class="blockList">
+<li class="blockList">
+<section>
+<h2 title="Package">Package&nbsp;org.sosy_lab.java_smt.api</h2>
+<ul class="blockList">
+<li class="blockList"><a id="org.sosy_lab.java_smt.api.SolverException">
+<!--   -->
+</a>
+<h3>Class <a href="org/sosy_lab/java_smt/api/SolverException.html" title="class in org.sosy_lab.java_smt.api">org.sosy_lab.java_smt.api.SolverException</a> extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Exception.html?is-external=true" title="class or interface in java.lang" class="externalLink">Exception</a> implements Serializable</h3>
+<dl class="nameValue">
+<dt>serialVersionUID:</dt>
+<dd>-1557936144555925180L</dd>
+</dl>
+</li>
+</ul>
+</section>
+</li>
+</ul>
+</div>
+</main>
+<footer role="contentinfo">
+<nav role="navigation">
+<!-- ======= START OF BOTTOM NAVBAR ====== -->
+<div class="bottomNav"><a id="navbar.bottom">
+<!--   -->
+</a>
+<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
+<a id="navbar.bottom.firstrow">
+<!--   -->
+</a>
+<ul class="navList" title="Navigation">
+<li><a href="index.html">Overview</a></li>
+<li>Package</li>
+<li>Class</li>
+<li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+<li><a href="help-doc.html">Help</a></li>
+</ul>
+</div>
+<div class="subNav">
+<ul class="navList" id="allclasses_navbar_bottom">
+<li><a href="allclasses.html">All&nbsp;Classes</a></li>
+</ul>
+<div>
+<script type="text/javascript"><!--
+  allClassesLink = document.getElementById("allclasses_navbar_bottom");
+  if(window==top) {
+    allClassesLink.style.display = "block";
+  }
+  else {
+    allClassesLink.style.display = "none";
+  }
+  //-->
+</script>
+<noscript>
+<div>JavaScript is disabled on your browser.</div>
+</noscript>
+</div>
+<a id="skip.navbar.bottom">
+<!--   -->
+</a></div>
+<!-- ======== END OF BOTTOM NAVBAR ======= -->
+</nav>
+</footer>
+</body>
+</html>
diff --git a/api/stylesheet.css b/api/stylesheet.css
new file mode 100644
index 0000000000..de945eda26
--- /dev/null
+++ b/api/stylesheet.css
@@ -0,0 +1,910 @@
+/* 
+ * Javadoc style sheet
+ */
+
+@import url('resources/fonts/dejavu.css');
+
+/*
+ * Styles for individual HTML elements.
+ *
+ * These are styles that are specific to individual HTML elements. Changing them affects the style of a particular
+ * HTML element throughout the page.
+ */
+
+body {
+    background-color:#ffffff;
+    color:#353833;
+    font-family:'DejaVu Sans', Arial, Helvetica, sans-serif;
+    font-size:14px;
+    margin:0;
+    padding:0;
+    height:100%;
+    width:100%;
+}
+iframe {
+    margin:0;
+    padding:0;
+    height:100%;
+    width:100%;
+    overflow-y:scroll;
+    border:none;
+}
+a:link, a:visited {
+    text-decoration:none;
+    color:#4A6782;
+}
+a[href]:hover, a[href]:focus {
+    text-decoration:none;
+    color:#bb7a2a;
+}
+a[name] {
+    color:#353833;
+}
+a[name]:before, a[name]:target, a[id]:before, a[id]:target {
+    content:"";
+    display:inline-block;
+    position:relative;
+    padding-top:129px;
+    margin-top:-129px;
+}
+pre {
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+}
+h1 {
+    font-size:20px;
+}
+h2 {
+    font-size:18px;
+}
+h3 {
+    font-size:16px;
+    font-style:italic;
+}
+h4 {
+    font-size:13px;
+}
+h5 {
+    font-size:12px;
+}
+h6 {
+    font-size:11px;
+}
+ul {
+    list-style-type:disc;
+}
+code, tt {
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+    padding-top:4px;
+    margin-top:8px;
+    line-height:1.4em;
+}
+dt code {
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+    padding-top:4px;
+}
+table tr td dt code {
+    font-family:'DejaVu Sans Mono', monospace;
+    font-size:14px;
+    vertical-align:top;
+    padding-top:4px;
+}
+sup {
+    font-size:8px;
+}
+
+/*
+ * Styles for HTML generated by javadoc.
+ *
+ * These are style classes that are used by the standard doclet to generate HTML documentation.
+ */
+
+/*
+ * Styles for document title and copyright.
+ */
+.clear {
+    clear:both;
+    height:0px;
+    overflow:hidden;
+}
+.aboutLanguage {
+    float:right;
+    padding:0px 21px;
+    font-size:11px;
+    z-index:200;
+    margin-top:-9px;
+}
+.legalCopy {
+    margin-left:.5em;
+}
+.bar a, .bar a:link, .bar a:visited, .bar a:active {
+    color:#FFFFFF;
+    text-decoration:none;
+}
+.bar a:hover, .bar a:focus {
+    color:#bb7a2a;
+}
+.tab {
+    background-color:#0066FF;
+    color:#ffffff;
+    padding:8px;
+    width:5em;
+    font-weight:bold;
+}
+/*
+ * Styles for navigation bar.
+ */
+.bar {
+    background-color:#4D7A97;
+    color:#FFFFFF;
+    padding:.8em .5em .4em .8em;
+    height:auto;/*height:1.8em;*/
+    font-size:11px;
+    margin:0;
+}
+.navPadding {
+    padding-top: 107px;
+}
+.fixedNav {
+    position:fixed;
+    width:100%;
+    z-index:999;
+    background-color:#ffffff;
+}
+.topNav {
+    background-color:#4D7A97;
+    color:#FFFFFF;
+    float:left;
+    padding:0;
+    width:100%;
+    clear:right;
+    height:2.8em;
+    padding-top:10px;
+    overflow:hidden;
+    font-size:12px; 
+}
+.bottomNav {
+    margin-top:10px;
+    background-color:#4D7A97;
+    color:#FFFFFF;
+    float:left;
+    padding:0;
+    width:100%;
+    clear:right;
+    height:2.8em;
+    padding-top:10px;
+    overflow:hidden;
+    font-size:12px;
+}
+.subNav {
+    background-color:#dee3e9;
+    float:left;
+    width:100%;
+    overflow:hidden;
+    font-size:12px;
+}
+.subNav div {
+    clear:left;
+    float:left;
+    padding:0 0 5px 6px;
+    text-transform:uppercase;
+}
+ul.navList, ul.subNavList {
+    float:left;
+    margin:0 25px 0 0;
+    padding:0;
+}
+ul.navList li{
+    list-style:none;
+    float:left;
+    padding: 5px 6px;
+    text-transform:uppercase;
+}
+ul.navListSearch {
+    float:right;
+    margin:0 0 0 0;
+    padding:0;
+}
+ul.navListSearch li {
+    list-style:none;
+    float:right;
+    padding: 5px 6px;
+    text-transform:uppercase;
+}
+ul.navListSearch li label {
+    position:relative;
+    right:-16px;
+}
+ul.subNavList li {
+    list-style:none;
+    float:left;
+}
+.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {
+    color:#FFFFFF;
+    text-decoration:none;
+    text-transform:uppercase;
+}
+.topNav a:hover, .bottomNav a:hover {
+    text-decoration:none;
+    color:#bb7a2a;
+    text-transform:uppercase;
+}
+.navBarCell1Rev {
+    background-color:#F8981D;
+    color:#253441;
+    margin: auto 5px;
+}
+.skipNav {
+    position:absolute;
+    top:auto;
+    left:-9999px;
+    overflow:hidden;
+}
+/*
+ * Styles for page header and footer.
+ */
+.header, .footer {
+    clear:both;
+    margin:0 20px;
+    padding:5px 0 0 0;
+}
+.indexNav {
+    position:relative;
+    font-size:12px;
+    background-color:#dee3e9;
+}
+.indexNav ul {
+    margin-top:0;
+    padding:5px;
+}
+.indexNav ul li {
+    display:inline;
+    list-style-type:none;
+    padding-right:10px;
+    text-transform:uppercase;
+}
+.indexNav h1 {
+    font-size:13px;
+}
+.title {
+    color:#2c4557;
+    margin:10px 0;
+}
+.subTitle {
+    margin:5px 0 0 0;
+}
+.header ul {
+    margin:0 0 15px 0;
+    padding:0;
+}
+.footer ul {
+    margin:20px 0 5px 0;
+}
+.header ul li, .footer ul li {
+    list-style:none;
+    font-size:13px;
+}
+/*
+ * Styles for headings.
+ */
+div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
+    background-color:#dee3e9;
+    border:1px solid #d0d9e0;
+    margin:0 0 6px -8px;
+    padding:7px 5px;
+}
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
+    background-color:#dee3e9;
+    border:1px solid #d0d9e0;
+    margin:0 0 6px -8px;
+    padding:7px 5px;
+}
+ul.blockList ul.blockList li.blockList h3 {
+    padding:0;
+    margin:15px 0;
+}
+ul.blockList li.blockList h2 {
+    padding:0px 0 20px 0;
+}
+/*
+ * Styles for page layout containers.
+ */
+.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer,
+.allClassesContainer, .allPackagesContainer {
+    clear:both;
+    padding:10px 20px;
+    position:relative;
+}
+.indexContainer {
+    margin:10px;
+    position:relative;
+    font-size:12px;
+}
+.indexContainer h2 {
+    font-size:13px;
+    padding:0 0 3px 0;
+}
+.indexContainer ul {
+    margin:0;
+    padding:0;
+}
+.indexContainer ul li {
+    list-style:none;
+    padding-top:2px;
+}
+.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
+    font-size:12px;
+    font-weight:bold;
+    margin:10px 0 0 0;
+    color:#4E4E4E;
+}
+.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
+    margin:5px 0 10px 0px;
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+}
+.serializedFormContainer dl.nameValue dt {
+    margin-left:1px;
+    font-size:1.1em;
+    display:inline;
+    font-weight:bold;
+}
+.serializedFormContainer dl.nameValue dd {
+    margin:0 0 0 1px;
+    font-size:1.1em;
+    display:inline;
+}
+/*
+ * Styles for lists.
+ */
+li.circle {
+    list-style:circle;
+}
+ul.horizontal li {
+    display:inline;
+    font-size:0.9em;
+}
+ul.inheritance {
+    margin:0;
+    padding:0;
+}
+ul.inheritance li {
+    display:inline;
+    list-style:none;
+}
+ul.inheritance li ul.inheritance {
+    margin-left:15px;
+    padding-left:15px;
+    padding-top:1px;
+}
+ul.blockList, ul.blockListLast {
+    margin:10px 0 10px 0;
+    padding:0;
+}
+ul.blockList li.blockList, ul.blockListLast li.blockList {
+    list-style:none;
+    margin-bottom:15px;
+    line-height:1.4;
+}
+ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
+    padding:0px 20px 5px 10px;
+    border:1px solid #ededed; 
+    background-color:#f8f8f8;
+}
+ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
+    padding:0 0 5px 8px;
+    background-color:#ffffff;
+    border:none;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
+    margin-left:0;
+    padding-left:0;
+    padding-bottom:15px;
+    border:none;
+}
+ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
+    list-style:none;
+    border-bottom:none;
+    padding-bottom:0;
+}
+table tr td dl, table tr td dl dt, table tr td dl dd {
+    margin-top:0;
+    margin-bottom:1px;
+}
+/*
+ * Styles for tables.
+ */
+.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary,
+.requiresSummary, .packagesSummary, .providesSummary, .usesSummary {
+    width:100%;
+    border-spacing:0;
+    border-left:1px solid #EEE; 
+    border-right:1px solid #EEE; 
+    border-bottom:1px solid #EEE; 
+}
+.overviewSummary, .memberSummary, .requiresSummary, .packagesSummary, .providesSummary, .usesSummary  {
+    padding:0px;
+}
+.overviewSummary caption, .memberSummary caption, .typeSummary caption,
+.useSummary caption, .constantsSummary caption, .deprecatedSummary caption,
+.requiresSummary caption, .packagesSummary caption, .providesSummary caption, .usesSummary caption {
+    position:relative;
+    text-align:left;
+    background-repeat:no-repeat;
+    color:#253441;
+    font-weight:bold;
+    clear:none;
+    overflow:hidden;
+    padding:0px;
+    padding-top:10px;
+    padding-left:1px;
+    margin:0px;
+    white-space:pre;
+}
+.constantsSummary caption a:link, .constantsSummary caption a:visited,
+.useSummary caption a:link, .useSummary caption a:visited {
+    color:#1f389c;
+}
+.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link,
+.deprecatedSummary caption a:link,
+.requiresSummary caption a:link, .packagesSummary caption a:link, .providesSummary caption a:link,
+.usesSummary caption a:link,
+.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover,
+.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover,
+.requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover,
+.usesSummary caption a:hover,
+.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
+.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active,
+.requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active,
+.usesSummary caption a:active,
+.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited,
+.deprecatedSummary caption a:visited,
+.requiresSummary caption a:visited, .packagesSummary caption a:visited, .providesSummary caption a:visited,
+.usesSummary caption a:visited {
+    color:#FFFFFF;
+}
+.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span,
+.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span,
+.requiresSummary caption span, .packagesSummary caption span, .providesSummary caption span,
+.usesSummary caption span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    padding-bottom:7px;
+    display:inline-block;
+    float:left;
+    background-color:#F8981D;
+    border: none;
+    height:16px;
+}
+.memberSummary caption span.activeTableTab span, .packagesSummary caption span.activeTableTab span,
+.overviewSummary caption span.activeTableTab span, .typeSummary caption span.activeTableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
+    float:left;
+    background-color:#F8981D;
+    height:16px;
+}
+.memberSummary caption span.tableTab span, .packagesSummary caption span.tableTab span,
+.overviewSummary caption span.tableTab span, .typeSummary caption span.tableTab span {
+    white-space:nowrap;
+    padding-top:5px;
+    padding-left:12px;
+    padding-right:12px;
+    margin-right:3px;
+    display:inline-block;
+    float:left;
+    background-color:#4D7A97;
+    height:16px;
+}
+.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab,
+.packagesSummary caption span.tableTab, .packagesSummary caption span.activeTableTab,
+.overviewSummary caption span.tableTab, .overviewSummary caption span.activeTableTab,
+.typeSummary caption span.tableTab, .typeSummary caption span.activeTableTab {
+    padding-top:0px;
+    padding-left:0px;
+    padding-right:0px;
+    background-image:none;
+    float:none;
+    display:inline;
+}
+.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd,
+.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd,
+.requiresSummary .tabEnd, .packagesSummary .tabEnd, .providesSummary .tabEnd, .usesSummary .tabEnd {
+    display:none;
+    width:5px;
+    position:relative;
+    float:left;
+    background-color:#F8981D;
+}
+.memberSummary .activeTableTab .tabEnd, .packagesSummary .activeTableTab .tabEnd,
+.overviewSummary .activeTableTab .tabEnd, .typeSummary .activeTableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative; 
+    float:left;
+    background-color:#F8981D;
+}
+.memberSummary .tableTab .tabEnd, .packagesSummary .tableTab .tabEnd,
+.overviewSummary .tableTab .tabEnd, .typeSummary .tableTab .tabEnd {
+    display:none;
+    width:5px;
+    margin-right:3px;
+    position:relative;
+    background-color:#4D7A97;
+    float:left;
+}
+.rowColor th, .altColor th {
+    font-weight:normal;
+}
+.overviewSummary td, .memberSummary td, .typeSummary td,
+.useSummary td, .constantsSummary td, .deprecatedSummary td,
+.requiresSummary td, .packagesSummary td, .providesSummary td, .usesSummary td {
+    text-align:left;
+    padding:0px 0px 12px 10px;
+}
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .useSummary th,
+.constantsSummary th, .packagesSummary th, td.colFirst, td.colSecond, td.colLast, .useSummary td,
+.constantsSummary td {
+    vertical-align:top;
+    padding-right:0px;
+    padding-top:8px;
+    padding-bottom:3px;
+}
+th.colFirst, th.colSecond, th.colLast, th.colConstructorName, th.colDeprecatedItemName, .constantsSummary th,
+.packagesSummary th {
+    background:#dee3e9;
+    text-align:left;
+    padding:8px 3px 3px 7px;
+}
+td.colFirst, th.colFirst {
+    font-size:13px;
+}
+td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
+    font-size:13px;
+}
+.constantsSummary th, .packagesSummary th {
+    font-size:13px;
+}
+.providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
+.providesSummary td.colLast {
+    white-space:normal;
+    font-size:13px;
+}
+.overviewSummary td.colFirst, .overviewSummary th.colFirst,
+.requiresSummary td.colFirst, .requiresSummary th.colFirst,
+.packagesSummary td.colFirst, .packagesSummary td.colSecond, .packagesSummary th.colFirst, .packagesSummary th,
+.usesSummary td.colFirst, .usesSummary th.colFirst,
+.providesSummary td.colFirst, .providesSummary th.colFirst,
+.memberSummary td.colFirst, .memberSummary th.colFirst,
+.memberSummary td.colSecond, .memberSummary th.colSecond, .memberSummary th.colConstructorName,
+.typeSummary td.colFirst, .typeSummary th.colFirst {
+    vertical-align:top;
+}
+.packagesSummary th.colLast, .packagesSummary td.colLast {
+    white-space:normal;
+}
+td.colFirst a:link, td.colFirst a:visited,
+td.colSecond a:link, td.colSecond a:visited,
+th.colFirst a:link, th.colFirst a:visited,
+th.colSecond a:link, th.colSecond a:visited,
+th.colConstructorName a:link, th.colConstructorName a:visited,
+th.colDeprecatedItemName a:link, th.colDeprecatedItemName a:visited, 
+.constantValuesContainer td a:link, .constantValuesContainer td a:visited, 
+.allClassesContainer td a:link, .allClassesContainer td a:visited, 
+.allPackagesContainer td a:link, .allPackagesContainer td a:visited {
+    font-weight:bold;
+}
+.tableSubHeadingColor {
+    background-color:#EEEEFF;
+}
+.altColor, .altColor th {
+    background-color:#FFFFFF;
+}
+.rowColor, .rowColor th {
+    background-color:#EEEEEF;
+}
+/*
+ * Styles for contents.
+ */
+.description pre {
+    margin-top:0;
+}
+.deprecatedContent {
+    margin:0;
+    padding:10px 0;
+}
+.docSummary {
+    padding:0;
+}
+ul.blockList ul.blockList ul.blockList li.blockList h3 {
+    font-style:normal;
+}
+div.block {
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+}
+td.colLast div {
+    padding-top:0px;
+}
+td.colLast a {
+    padding-bottom:3px;
+}
+/*
+ * Styles for formatting effect.
+ */
+.sourceLineNo {
+    color:green;
+    padding:0 30px 0 0;
+}
+h1.hidden {
+    visibility:hidden;
+    overflow:hidden;
+    font-size:10px;
+}
+.block {
+    display:block;
+    margin:3px 10px 2px 0px;
+    color:#474747;
+}
+.deprecatedLabel, .descfrmTypeLabel, .implementationLabel, .memberNameLabel, .memberNameLink,
+.moduleLabelInPackage, .moduleLabelInType, .overrideSpecifyLabel, .packageLabelInType,
+.packageHierarchyLabel, .paramLabel, .returnLabel, .seeLabel, .simpleTagLabel,
+.throwsLabel, .typeNameLabel, .typeNameLink, .searchTagLink {
+    font-weight:bold;
+}
+.deprecationComment, .emphasizedPhrase, .interfaceName {
+    font-style:italic;
+}
+.deprecationBlock {
+    font-size:14px;
+    font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif;
+    border-style:solid;
+    border-width:thin;
+    border-radius:10px;
+    padding:10px;
+    margin-bottom:10px;
+    margin-right:10px;
+    display:inline-block;
+}
+div.block div.deprecationComment, div.block div.block span.emphasizedPhrase,
+div.block div.block span.interfaceName {
+    font-style:normal;
+}
+div.contentContainer ul.blockList li.blockList h2 {
+    padding-bottom:0px;
+}
+/*
+ * Styles for IFRAME.
+ */
+.mainContainer {
+    margin:0 auto; 
+    padding:0; 
+    height:100%; 
+    width:100%; 
+    position:fixed; 
+    top:0; 
+    left:0;
+}
+.leftContainer {
+    height:100%;
+    position:fixed;
+    width:320px;
+}
+.leftTop {
+    position:relative;
+    float:left;
+    width:315px;
+    top:0;
+    left:0;
+    height:30%;
+    border-right:6px solid #ccc;
+    border-bottom:6px solid #ccc;
+}
+.leftBottom {
+    position:relative;
+    float:left;
+    width:315px;
+    bottom:0;
+    left:0;
+    height:70%;
+    border-right:6px solid #ccc;
+    border-top:1px solid #000;
+}
+.rightContainer {
+    position:absolute;
+    left:320px;
+    top:0;
+    bottom:0;
+    height:100%;
+    right:0;
+    border-left:1px solid #000;
+}
+.rightIframe {
+    margin:0;
+    padding:0;
+    height:100%;
+    right:30px;
+    width:100%;
+    overflow:visible;
+    margin-bottom:30px;
+}
+/*
+ * Styles specific to HTML5 elements.
+ */
+main, nav, header, footer, section {
+    display:block;
+}
+/*
+ * Styles for javadoc search.
+ */
+.ui-autocomplete-category {
+    font-weight:bold;
+    font-size:15px;
+    padding:7px 0 7px 3px;
+    background-color:#4D7A97;
+    color:#FFFFFF;
+}
+.resultItem {
+    font-size:13px;
+}
+.ui-autocomplete {
+    max-height:85%;
+    max-width:65%;
+    overflow-y:scroll;
+    overflow-x:scroll;
+    white-space:nowrap;
+    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
+}
+ul.ui-autocomplete {
+    position:fixed;
+    z-index:999999;
+    background-color: #FFFFFF;
+}
+ul.ui-autocomplete  li {
+    float:left;
+    clear:both;
+    width:100%;
+}
+.resultHighlight {
+    font-weight:bold;
+}
+.ui-autocomplete .result-item {
+    font-size: inherit;
+}
+#search {
+    background-image:url('resources/glass.png');
+    background-size:13px;
+    background-repeat:no-repeat;
+    background-position:2px 3px;
+    padding-left:20px;
+    position:relative;
+    right:-18px;
+}
+#reset {
+    background-color: rgb(255,255,255);
+    background-image:url('resources/x.png');
+    background-position:center;
+    background-repeat:no-repeat;
+    background-size:12px;
+    border:0 none;
+    width:16px;
+    height:17px;
+    position:relative;
+    left:-4px;
+    top:-4px;
+    font-size:0px;
+}
+.watermark {
+    color:#545454;
+}
+.searchTagDescResult {
+    font-style:italic;
+    font-size:11px;
+}
+.searchTagHolderResult {
+    font-style:italic;
+    font-size:12px;
+}
+.searchTagResult:before, .searchTagResult:target {
+    color:red;
+}
+.moduleGraph span {
+    display:none;
+    position:absolute;
+}
+.moduleGraph:hover span {
+    display:block;
+    margin: -100px 0 0 100px;
+    z-index: 1;
+}
+.methodSignature {
+    white-space:normal;
+}
+
+/*
+ * Styles for user-provided tables.
+ *
+ * borderless:
+ *      No borders, vertical margins, styled caption.
+ *      This style is provided for use with existing doc comments.
+ *      In general, borderless tables should not be used for layout purposes.
+ *
+ * plain:
+ *      Plain borders around table and cells, vertical margins, styled caption.
+ *      Best for small tables or for complex tables for tables with cells that span
+ *      rows and columns, when the "striped" style does not work well.
+ *
+ * striped:
+ *      Borders around the table and vertical borders between cells, striped rows,
+ *      vertical margins, styled caption.
+ *      Best for tables that have a header row, and a body containing a series of simple rows.
+ */
+
+table.borderless,
+table.plain,
+table.striped {
+    margin-top: 10px;
+    margin-bottom: 10px;
+}
+table.borderless > caption,
+table.plain > caption,
+table.striped > caption {
+    font-weight: bold;
+    font-size: smaller;
+}
+table.borderless th, table.borderless td,
+table.plain th, table.plain td,
+table.striped th, table.striped td {
+    padding: 2px 5px;
+}
+table.borderless,
+table.borderless > thead > tr > th, table.borderless > tbody > tr > th, table.borderless > tr > th,
+table.borderless > thead > tr > td, table.borderless > tbody > tr > td, table.borderless > tr > td {
+    border: none;
+}
+table.borderless > thead > tr, table.borderless > tbody > tr, table.borderless > tr {
+    background-color: transparent;
+}
+table.plain {
+    border-collapse: collapse;
+    border: 1px solid black;
+}
+table.plain > thead > tr, table.plain > tbody tr, table.plain > tr {
+    background-color: transparent;
+}
+table.plain > thead > tr > th, table.plain > tbody > tr > th, table.plain > tr > th,
+table.plain > thead > tr > td, table.plain > tbody > tr > td, table.plain > tr > td {
+    border: 1px solid black;
+}
+table.striped {
+    border-collapse: collapse;
+    border: 1px solid black;
+}
+table.striped > thead {
+    background-color: #E3E3E3;
+}
+table.striped > thead > tr > th, table.striped > thead > tr > td {
+    border: 1px solid black;
+}
+table.striped > tbody > tr:nth-child(even) {
+    background-color: #EEE
+}
+table.striped > tbody > tr:nth-child(odd) {
+    background-color: #FFF
+}
+table.striped > tbody > tr > th, table.striped > tbody > tr > td {
+    border-left: 1px solid black;
+    border-right: 1px solid black;
+}
+table.striped > tbody > tr > th {
+    font-weight: normal;
+}
diff --git a/api/type-search-index.js b/api/type-search-index.js
new file mode 100644
index 0000000000..192d3e7def
--- /dev/null
+++ b/api/type-search-index.js
@@ -0,0 +1 @@
+typeSearchIndex = [{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractArrayFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractBitvectorFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractBooleanFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractEnumerationFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractEvaluator"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractFloatingPointFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractModel"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractNumeralFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractProver"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractProverWithAllSat"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractQuantifiedFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractSLFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractSolverContext"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractStringFormulaManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractUFManager"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractUserPropagator"},{"l":"All Classes","url":"allclasses-index.html"},{"p":"org.sosy_lab.java_smt.api","l":"BasicProverEnvironment.AllSatCallback"},{"p":"org.sosy_lab.java_smt.example","l":"AllSatExample"},{"p":"org.sosy_lab.java_smt.api","l":"ArrayFormula"},{"p":"org.sosy_lab.java_smt.api","l":"ArrayFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType.ArrayFormulaType"},{"p":"org.sosy_lab.java_smt.api","l":"BasicProverEnvironment"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","l":"BasicProverWithAssumptionsWrapper"},{"p":"org.sosy_lab.java_smt.example","l":"Binoxxo"},{"p":"org.sosy_lab.java_smt.example","l":"Binoxxo.BinoxxoSolver"},{"p":"org.sosy_lab.java_smt.api","l":"BitvectorFormula"},{"p":"org.sosy_lab.java_smt.api","l":"BitvectorFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType.BitvectorType"},{"p":"org.sosy_lab.java_smt.example","l":"Binoxxo.BooleanBasedBinoxxoSolver"},{"p":"org.sosy_lab.java_smt.example","l":"Sudoku.BooleanBasedSudokuSolver"},{"p":"org.sosy_lab.java_smt.api","l":"BooleanFormula"},{"p":"org.sosy_lab.java_smt.api","l":"BooleanFormulaManager"},{"p":"org.sosy_lab.java_smt.test","l":"BooleanFormulaSubject"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"BooleanFormulaTransformationVisitor"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"BooleanFormulaVisitor"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"CachingModel"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingArrayFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingBitvectorFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingBooleanFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingEnumerationFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingFloatingPointFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingIntegerFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingInterpolatingProverEnvironment"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingModel"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingNumeralFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingOptimizationProverEnvironment"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingProverEnvironment"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingQuantifiedFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingRationalFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingSLFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingSolverContext"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingSolverInformation"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingStringFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.debugging","l":"DebuggingUFManager"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"DefaultBooleanFormulaVisitor"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"DefaultFormulaVisitor"},{"p":"org.sosy_lab.java_smt.example","l":"Sudoku.EnumerationBasedSudokuSolver"},{"p":"org.sosy_lab.java_smt.api","l":"EnumerationFormula"},{"p":"org.sosy_lab.java_smt.api","l":"EnumerationFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType.EnumerationFormulaType"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractEnumerationFormulaManager.EnumType"},{"p":"org.sosy_lab.java_smt.api","l":"Evaluator"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"ExpectedFormulaVisitor"},{"p":"org.sosy_lab.java_smt.api","l":"FloatingPointFormula"},{"p":"org.sosy_lab.java_smt.api","l":"FloatingPointFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"FloatingPointNumber"},{"p":"org.sosy_lab.java_smt.api","l":"FloatingPointRoundingMode"},{"p":"org.sosy_lab.java_smt.api","l":"FloatingPointRoundingModeFormula"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType.FloatingPointType"},{"p":"org.sosy_lab.java_smt.api","l":"Formula"},{"p":"org.sosy_lab.java_smt.example","l":"FormulaClassifier"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"FormulaCreator"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaManager"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"FormulaTransformationVisitor"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"FormulaVisitor"},{"p":"org.sosy_lab.java_smt.api","l":"FunctionDeclaration"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"FunctionDeclarationImpl"},{"p":"org.sosy_lab.java_smt.api","l":"FunctionDeclarationKind"},{"p":"org.sosy_lab.java_smt.example","l":"HoudiniApp"},{"p":"org.sosy_lab.java_smt.example","l":"Binoxxo.IntegerBasedBinoxxoSolver"},{"p":"org.sosy_lab.java_smt.example","l":"Sudoku.IntegerBasedSudokuSolver"},{"p":"org.sosy_lab.java_smt.api","l":"NumeralFormula.IntegerFormula"},{"p":"org.sosy_lab.java_smt.api","l":"IntegerFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"InterpolatingProverEnvironment"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","l":"InterpolatingProverWithAssumptionsWrapper"},{"p":"org.sosy_lab.java_smt.example","l":"Interpolation"},{"p":"org.sosy_lab.java_smt.delegate.logging","l":"LoggingSolverContext"},{"p":"org.sosy_lab.java_smt.api","l":"Model"},{"p":"org.sosy_lab.java_smt.basicimpl.tactics","l":"NNFVisitor"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"AbstractNumeralFormulaManager.NonLinearArithmetic"},{"p":"org.sosy_lab.java_smt.example","l":"NQueens"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","l":"NQueens"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","l":"NQueensConstraintPropagator"},{"p":"org.sosy_lab.java_smt.example.nqueens_user_propagator","l":"NQueensEnumeratingPropagator"},{"p":"org.sosy_lab.java_smt.api","l":"NumeralFormula"},{"p":"org.sosy_lab.java_smt.api","l":"NumeralFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"FormulaType.NumeralType"},{"p":"org.sosy_lab.java_smt.example","l":"OptimizationFormulaWeights"},{"p":"org.sosy_lab.java_smt.example","l":"OptimizationIntReal"},{"p":"org.sosy_lab.java_smt.api","l":"OptimizationProverEnvironment"},{"p":"org.sosy_lab.java_smt.api","l":"OptimizationProverEnvironment.OptStatus"},{"p":"org.sosy_lab.java_smt.test","l":"SolverBasedTest0.ParameterizedSolverBasedTest0"},{"p":"org.sosy_lab.java_smt.example","l":"PrettyPrinter"},{"p":"org.sosy_lab.java_smt.utils","l":"PrettyPrinter"},{"p":"org.sosy_lab.java_smt.utils","l":"PrettyPrinter.PrinterOption"},{"p":"org.sosy_lab.java_smt.api","l":"PropagatorBackend"},{"p":"org.sosy_lab.java_smt.api","l":"ProverEnvironment"},{"p":"org.sosy_lab.java_smt.test","l":"ProverEnvironmentSubject"},{"p":"org.sosy_lab.java_smt.api","l":"SolverContext.ProverOptions"},{"p":"org.sosy_lab.java_smt.basicimpl.withAssumptionsWrapper","l":"ProverWithAssumptionsWrapper"},{"p":"org.sosy_lab.java_smt.api","l":"QuantifiedFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"QuantifiedFormulaManager.Quantifier"},{"p":"org.sosy_lab.java_smt.api","l":"NumeralFormula.RationalFormula"},{"p":"org.sosy_lab.java_smt.api","l":"RationalFormulaManager"},{"p":"org.sosy_lab.java_smt.api","l":"RegexFormula"},{"p":"org.sosy_lab.java_smt.utils","l":"UfElimination.Result"},{"p":"org.sosy_lab.java_smt.example","l":"SolverOverviewTable.RowBuilder"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"ShutdownHook"},{"p":"org.sosy_lab.java_smt.example","l":"SimpleUserPropagator"},{"p":"org.sosy_lab.java_smt.api","l":"SLFormulaManager"},{"p":"org.sosy_lab.java_smt.test","l":"SolverBasedTest0"},{"p":"org.sosy_lab.java_smt.api","l":"SolverContext"},{"p":"org.sosy_lab.java_smt","l":"SolverContextFactory"},{"p":"org.sosy_lab.java_smt.api","l":"SolverException"},{"p":"org.sosy_lab.java_smt.example","l":"SolverOverviewTable.SolverInfo"},{"p":"org.sosy_lab.java_smt.example","l":"SolverOverviewTable"},{"p":"org.sosy_lab.java_smt","l":"SolverContextFactory.Solvers"},{"p":"org.sosy_lab.java_smt.test","l":"SolverStackTest0"},{"p":"org.sosy_lab.java_smt.delegate.statistics","l":"SolverStatistics"},{"p":"org.sosy_lab.java_smt.utils","l":"SolverUtils"},{"p":"org.sosy_lab.java_smt.delegate.statistics","l":"StatisticsEnumerationFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.statistics","l":"StatisticsSolverContext"},{"p":"org.sosy_lab.java_smt.api","l":"StringFormula"},{"p":"org.sosy_lab.java_smt.api","l":"StringFormulaManager"},{"p":"org.sosy_lab.java_smt.example","l":"Sudoku"},{"p":"org.sosy_lab.java_smt.example","l":"Sudoku.SudokuSolver"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","l":"SynchronizedEnumerationFormulaManager"},{"p":"org.sosy_lab.java_smt.delegate.synchronize","l":"SynchronizedSolverContext"},{"p":"org.sosy_lab.java_smt.api","l":"Tactic"},{"p":"org.sosy_lab.java_smt.delegate.statistics","l":"TimerPool"},{"p":"org.sosy_lab.java_smt.delegate.statistics","l":"TimerPool.TimerWrapper"},{"p":"org.sosy_lab.java_smt.basicimpl","l":"Tokenizer"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"TraversalProcess"},{"p":"org.sosy_lab.java_smt.api.visitors","l":"TraversalProcess.TraversalType"},{"p":"org.sosy_lab.java_smt.utils","l":"UfElimination"},{"p":"org.sosy_lab.java_smt.api","l":"UFManager"},{"p":"org.sosy_lab.java_smt.api","l":"UserPropagator"},{"p":"org.sosy_lab.java_smt.api","l":"Model.ValueAssignment"}]
\ No newline at end of file
diff --git a/api/type-search-index.zip b/api/type-search-index.zip
new file mode 100644
index 0000000000..28f6cbf153
Binary files /dev/null and b/api/type-search-index.zip differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000000..70db18ba30
--- /dev/null
+++ b/index.html
@@ -0,0 +1,21 @@
+<!--
+This file is part of JavaSMT,
+an API wrapper for a collection of SMT solvers:
+https://github.com/sosy-lab/java-smt
+
+SPDX-FileCopyrightText: 2020 Dirk Beyer <https://www.sosy-lab.org>
+
+SPDX-License-Identifier: Apache-2.0
+-->
+
+<!DOCTYPE html>
+<html>
+<head>
+<!-- This will be pushed to https://sosy-lab.github.io/java-smt by Travis. -->
+
+<title>JavaSMT</title>
+<meta http-equiv="refresh" content="0; url=api/index.html" />
+</head>
+<body>
+<a href="/api/">Javadoc API documentation</a>
+</body>