3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-12-08 12:53:25 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-09-22 11:26:48 +03:00
parent fae67b79b7
commit 0a0e925f27
4 changed files with 49 additions and 2 deletions

View file

@ -7,9 +7,14 @@
namespace nla {
class core;
class lar_solver;
class mul_saturate : common {
lp::lar_solver& lra;
lp::lar_base_constraint* multiply_constraint(lp::lar_base_constraint const& c, monic const& m, lpvar x);
public:
mul_saturate(core* core);
lbool saturate();
};
}