3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 18:15:32 +00:00
z3/src/math/lp/int_branch.h
Lev Nachmanson 4e74c4cdd4
perf in branching (#4719)
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2020-09-29 22:05:16 -07:00

38 lines
661 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();
public:
int_branch(int_solver& lia);
~int_branch() {}
lia_move operator()();
};
}