3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-21 01:19:34 +00:00

Using only one solver

This commit is contained in:
CEisenhofer 2026-05-07 15:49:16 +02:00
parent 712cd68e8c
commit f7f2ee8f74
8 changed files with 154 additions and 108 deletions

View file

@ -137,6 +137,9 @@ namespace smt {
// extract integer value for an expression.
rational int_value(expr *e);
// Get arithmetic value via EUF equivalence class, including numeral check.
bool get_arith_value(expr* e, rational& val) const;
};
}