mirror of
https://github.com/Z3Prover/z3
synced 2026-04-12 23:40:34 +00:00
fix truncation error
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
04bf2623fa
commit
e0401a6544
2 changed files with 2 additions and 1 deletions
|
|
@ -17,6 +17,7 @@ z3_add_component(simplifiers
|
|||
euf_completion.cpp
|
||||
extract_eqs.cpp
|
||||
factor_simplifier.cpp
|
||||
fold_unfold.cpp
|
||||
linear_equation.cpp
|
||||
max_bv_sharing.cpp
|
||||
model_reconstruction_trail.cpp
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@ namespace search_tree {
|
|||
|
||||
struct candidate {
|
||||
node<Config>* n = nullptr;
|
||||
unsigned effort_band = UINT64_MAX;
|
||||
unsigned effort_band = UINT_MAX;
|
||||
unsigned depth = 0;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue