3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-12 11:54:07 +00:00

fix build of test

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-02-10 12:55:50 -08:00
parent de26d8f6f7
commit 4d635340d9
2 changed files with 3 additions and 3 deletions

View file

@ -791,7 +791,7 @@ namespace nlsat {
// Helper: Connect non-tree (single-side) polynomials to their respective boundaries
void connect_non_tree_to_bounds() {
auto const& rfs = m_rel.m_rfunc;
unsigned n = rfs.size();
auto n = rfs.size();
// Lower side: connect single-side polys to lower boundary
for (unsigned j = 0; j < m_l_rf; ++j)
@ -807,7 +807,7 @@ namespace nlsat {
// Helper: Connect spanning tree extremes to boundaries (when boundaries are different polys)
void connect_tree_extremes_to_bounds() {
auto const& rfs = m_rel.m_rfunc;
unsigned n = rfs.size();
auto n = rfs.size();
// Find max lower both-side poly (closest to lower boundary from below)
unsigned max_lower_both = UINT_MAX;

View file

@ -37,7 +37,7 @@ namespace bv {
void force_restart() override {}
std::ostream& display(std::ostream& out) override { return out; }
reslimit& rlimit() override { return m_limit; }
unsigned timestamp(sat::bool_var v) override { return 0; }
uint64_t timestamp(sat::bool_var v) override { return 0; }
};
class sls_test {