mirror of
https://github.com/Z3Prover/z3
synced 2026-05-02 00:23:44 +00:00
fix build of test
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
23a0a529fb
commit
dcd8ea4af2
2 changed files with 3 additions and 3 deletions
|
|
@ -791,7 +791,7 @@ namespace nlsat {
|
||||||
// Helper: Connect non-tree (single-side) polynomials to their respective boundaries
|
// Helper: Connect non-tree (single-side) polynomials to their respective boundaries
|
||||||
void connect_non_tree_to_bounds() {
|
void connect_non_tree_to_bounds() {
|
||||||
auto const& rfs = m_rel.m_rfunc;
|
auto const& rfs = m_rel.m_rfunc;
|
||||||
unsigned n = rfs.size();
|
auto n = rfs.size();
|
||||||
|
|
||||||
// Lower side: connect single-side polys to lower boundary
|
// Lower side: connect single-side polys to lower boundary
|
||||||
for (unsigned j = 0; j < m_l_rf; ++j)
|
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)
|
// Helper: Connect spanning tree extremes to boundaries (when boundaries are different polys)
|
||||||
void connect_tree_extremes_to_bounds() {
|
void connect_tree_extremes_to_bounds() {
|
||||||
auto const& rfs = m_rel.m_rfunc;
|
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)
|
// Find max lower both-side poly (closest to lower boundary from below)
|
||||||
unsigned max_lower_both = UINT_MAX;
|
unsigned max_lower_both = UINT_MAX;
|
||||||
|
|
|
||||||
|
|
@ -37,7 +37,7 @@ namespace bv {
|
||||||
void force_restart() override {}
|
void force_restart() override {}
|
||||||
std::ostream& display(std::ostream& out) override { return out; }
|
std::ostream& display(std::ostream& out) override { return out; }
|
||||||
reslimit& rlimit() override { return m_limit; }
|
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 {
|
class sls_test {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue