3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-04 08:39:57 +00:00

fix tptp5 build

This commit is contained in:
Nikolaj Bjorner 2022-11-30 21:41:44 -08:00
parent 30c9cda61e
commit 147fb0d9c1

View file

@ -2313,7 +2313,8 @@ static void display_smt2(std::ostream& out) {
for (size_t i = 0; i < asms.size(); ++i) {
z3::expr fml = asms[i];
if (fml.is_and()) {
asms.set(i, fml.arg(0));
z3::expr arg0 = fml.arg(0);
asms.set(i, arg0);
for (unsigned j = 1; j < fml.num_args(); ++j)
asms.push_back(fml.arg(j));
--i;