3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

separate int-cube functionalty

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-02-08 15:27:11 -08:00
parent c12c9a75e6
commit 8d293171d5
5 changed files with 191 additions and 124 deletions

41
src/math/lp/int_cube.h Normal file
View file

@ -0,0 +1,41 @@
/*++
Copyright (c) 2020 Microsoft Corporation
Module Name:
int_cube.h
Abstract:
Cube finder
This routine attempts to find a feasible integer solution
by tightnening bounds and running an LRA solver on the
tighter system.
Author:
Nikolaj Bjorner (nbjorner)
Lev Nachmanson (levnach)
Revision History:
--*/
#pragma once
#include "math/lp/lia_move.h"
namespace lp {
class int_solver;
class lar_solver;
class int_cube {
class int_solver& lia;
class lar_solver& lra;
bool tighten_term_for_cube(unsigned i);
bool tighten_terms_for_cube();
void find_feasible_solution();
impq get_cube_delta_for_term(const lar_term& t) const;
public:
int_cube(int_solver& lia);
~int_cube() {}
lia_move operator()();
};
}