3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-05 08:30:50 +00:00

fix truncation error

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-04-10 18:03:10 -07:00
parent 04bf2623fa
commit e0401a6544
2 changed files with 2 additions and 1 deletions

View file

@ -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;
};