3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-11 11:43:36 +00:00
z3/src/math/lp/int_branch.h
Lev Nachmanson 0499b6b64a some fixes in branching
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2020-04-26 20:35:22 -07:00

41 lines
760 B
C++

/*++
Copyright (c) 2020 Microsoft Corporation
Module Name:
int_branch.h
Abstract:
Branch heuristic
Author:
Nikolaj Bjorner (nbjorner)
Lev Nachmanson (levnach)
Revision History:
--*/
#pragma once
#include "math/lp/lar_solver.h"
#include "math/lp/int_solver.h"
#include "math/lp/lia_move.h"
namespace lp {
class int_solver;
class lar_solver;
class int_branch {
class int_solver& lia;
class lar_solver& lra;
lia_move create_branch_on_column(int j);
int find_inf_int_base_column();
int find_inf_int_nbasis_column() const;
int find_any_inf_int_column_basis_first();
public:
int_branch(int_solver& lia);
~int_branch() {}
lia_move operator()();
};
}