3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-16 05:48:44 +00:00
z3/src/math/lp/int_cube.h

41 lines
803 B
C++

/*++
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);
lia_move operator()();
};
}