mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5964969f29
commit
9451dd9a74
4 changed files with 52 additions and 59 deletions
|
@ -23,14 +23,16 @@ Revision History:
|
|||
|
||||
namespace lp {
|
||||
class int_solver;
|
||||
class lar_solver;
|
||||
class gomory {
|
||||
class int_solver& s;
|
||||
class int_solver& lia;
|
||||
class lar_solver& lra;
|
||||
int find_basic_var();
|
||||
bool is_gomory_cut_target(const row_strip<mpq>& row);
|
||||
lia_move cut(lar_term & t, mpq & k, explanation* ex, unsigned basic_inf_int_j, const row_strip<mpq>& row);
|
||||
public:
|
||||
gomory(int_solver& s): s(s) {}
|
||||
~gomory();
|
||||
lia_move operator()(lar_term & t, mpq & k, explanation* ex, bool& upper);
|
||||
gomory(int_solver& lia);
|
||||
~gomory() {}
|
||||
lia_move operator()();
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue