3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 06:30:54 +00:00

merge with master

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-03-25 14:57:01 -07:00
commit c513f3ca09
883 changed files with 13979 additions and 16480 deletions

View file

@ -28,11 +28,11 @@ void test_print(Z3_context ctx, Z3_ast_vector av) {
Z3_parse_smtlib2_string(ctx,
spec1,
0,
nullptr,
nullptr,
0,
0,
0,
0,
0);
nullptr,
nullptr);
std::cout << "parse successful, converting ast->string\n";
Z3_ast_vector_inc_ref(ctx, b);
char const* spec2 = Z3_ast_vector_to_string(ctx, b);
@ -41,18 +41,18 @@ void test_print(Z3_context ctx, Z3_ast_vector av) {
}
void test_parseprint(char const* spec) {
Z3_context ctx = Z3_mk_context(0);
Z3_context ctx = Z3_mk_context(nullptr);
std::cout << "spec:\n" << spec << "\n";
Z3_ast_vector a =
Z3_parse_smtlib2_string(ctx,
spec,
0,
nullptr,
nullptr,
0,
0,
0,
0,
0);
nullptr,
nullptr);
std::cout << "done parsing\n";
Z3_ast_vector_inc_ref(ctx, a);