mirror of
https://github.com/Z3Prover/z3
synced 2025-09-29 20:59:01 +00:00
cap cube size
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a5c9e370de
commit
53f32bf08f
3 changed files with 9 additions and 1 deletions
|
@ -45,11 +45,15 @@ namespace smt {
|
|||
is_exception_msg,
|
||||
is_exception_code
|
||||
};
|
||||
struct config {
|
||||
unsigned m_max_cube_size = 20;
|
||||
};
|
||||
|
||||
ast_manager& m;
|
||||
parallel& p;
|
||||
std::mutex mux;
|
||||
state m_state = state::is_running;
|
||||
config m_config;
|
||||
expr_ref_vector m_split_atoms; // atoms to split on
|
||||
vector<expr_ref_vector> m_cubes;
|
||||
unsigned m_max_batch_size = 10;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue