3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

fixed vars are treated as scalars optionally

Signed-off-by: Lev Nachmanson <levnach@nachmanson.com>
This commit is contained in:
Lev Nachmanson 2019-10-19 15:54:40 -07:00 committed by Lev Nachmanson
parent d77e9c444e
commit 538ad77019
5 changed files with 15 additions and 14 deletions

View file

@ -30,9 +30,10 @@ class core;
class horner : common {
intervals m_intervals;
nex_sum m_row_sum;
intervals m_intervals;
nex_sum m_row_sum;
unsigned m_row_index;
bool m_fixed_as_scalars;
public:
typedef intervals::interval interv;
horner(core *core);