3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-19 20:33:38 +00:00
This commit is contained in:
Nikolaj Bjorner 2016-10-24 08:25:19 -07:00
commit 99002aeffb
2 changed files with 18 additions and 18 deletions

View file

@ -24,7 +24,7 @@ Revision History:
#include"datatype_decl_plugin.h"
#include"ast_pp.h"
#include"for_each_expr.h"
#include<strstream>
#include<sstream>
struct check_logic::imp {
ast_manager & m;

View file

@ -416,7 +416,7 @@ static void test_at_most1() {
for (unsigned i = 0; i < 5; ++i) {
in.push_back(m.mk_fresh_const("a",m.mk_bool_sort()));
}
in[4] = in[3];
in[4] = in[3].get();
ast_ext2 ext(m);
psort_nw<ast_ext2> sn(ext);