3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 03:45:51 +00:00

removed calls to settings.random_next() from assert statements

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-04-27 17:21:53 -07:00
parent aeef6fd2d4
commit 82bf62f5fa
8 changed files with 28 additions and 23 deletions

View file

@ -21,6 +21,7 @@
#include "util/lp/emonomials.h"
#include "util/lp/nla_defs.h"
#include "util/lp/nla_core.h"
namespace nla {
@ -339,11 +340,11 @@ namespace nla {
}
}
std::ostream& emonomials::display(std::ostream& out) const {
std::ostream& emonomials::display(const core& cr, std::ostream& out) const {
out << "monomials\n";
unsigned idx = 0;
for (auto const& m : m_monomials) {
out << (idx++) << ": " << m << "\n";
out << (idx++) << ": " << pp_mon(cr, m) << "\n";
}
out << "use lists\n";
idx = 0;