mirror of
https://github.com/Z3Prover/z3
synced 2026-04-26 22:03:34 +00:00
Fix ambiguous svector constructor calls in theory_finite_set_lattice_refutation.cpp
Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
ca8f379823
commit
866f352ea9
1 changed files with 3 additions and 3 deletions
|
|
@ -19,10 +19,10 @@ const int MAX_DECISION_LITERALS = 10;
|
||||||
|
|
||||||
namespace smt {
|
namespace smt {
|
||||||
reachability_matrix::reachability_matrix(context &ctx, theory_finite_set_lattice_refutation &t_lattice)
|
reachability_matrix::reachability_matrix(context &ctx, theory_finite_set_lattice_refutation &t_lattice)
|
||||||
: reachable(NUM_WORDS * NUM_WORDS * 64, 0ull),
|
: reachable(NUM_WORDS * NUM_WORDS * 64, (uint64_t)0),
|
||||||
links(NUM_WORDS * NUM_WORDS * 64 * 64, {nullptr, nullptr}),
|
links(NUM_WORDS * NUM_WORDS * 64 * 64, {nullptr, nullptr}),
|
||||||
link_dls(NUM_WORDS * NUM_WORDS * 64 * 64, 0ull),
|
link_dls(NUM_WORDS * NUM_WORDS * 64 * 64, (uint64_t)0),
|
||||||
non_links(NUM_WORDS * NUM_WORDS * 64, 0ull),
|
non_links(NUM_WORDS * NUM_WORDS * 64, (uint64_t)0),
|
||||||
non_link_justifications(NUM_WORDS * NUM_WORDS * 64 * 64, {nullptr, nullptr}),
|
non_link_justifications(NUM_WORDS * NUM_WORDS * 64 * 64, {nullptr, nullptr}),
|
||||||
largest_var(0),
|
largest_var(0),
|
||||||
max_size(NUM_WORDS * 64),
|
max_size(NUM_WORDS * 64),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue