summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorGereon Kremer <gereon.kremer@cs.rwth-aachen.de>2020-09-22 17:49:46 +0200
committerGitHub <noreply@github.com>2020-09-22 17:49:46 +0200
commite969318f12d4e8ee01b12933e9e60fafafd96963 (patch)
tree0157471f7eadbcad561088c6842c5e1408b57dec /src/options
parent71ab2d154b2f8b983562c495fe589cdd5a3a9862 (diff)
ICP-based solver for nonlinear arithmetic (#5017)
This PR adds a new icp-based solver to be integrated into the nonlinear extension. It is not meant to be used as a stand-alone ICP solver. It does not implement splits (only propagations) and implements a rather aggressive budget mechanism that aims to quickly stop propagation to allow other solvers to take over. Additionally, it enforces a maximum bit size to avoid divergence.
Diffstat (limited to 'src/options')
-rw-r--r--src/options/arith_options.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/options/arith_options.toml b/src/options/arith_options.toml
index ab33f123c..fde48d3f7 100644
--- a/src/options/arith_options.toml
+++ b/src/options/arith_options.toml
@@ -568,3 +568,11 @@ header = "options/arith_options.h"
default = "false"
help = "whether to use the cylindrical algebraic decomposition solver for non-linear arithmetic"
+[[option]]
+ name = "nlICP"
+ category = "regular"
+ long = "nl-icp"
+ type = "bool"
+ default = "false"
+ help = "whether to use ICP-style propagations for non-linear arithmetic"
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback