3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 12:07:52 +00:00

Merge branch 'master' into polysat

This commit is contained in:
Jakob Rath 2022-08-01 11:27:49 +02:00
commit 220a63e8bd
223 changed files with 508 additions and 505 deletions

View file

@ -4,7 +4,6 @@ Copyright (c) 2015 Microsoft Corporation
--*/
#ifdef _WINDOWS
#include "api/z3.h"
#include "api/z3_private.h"
#include <iostream>
@ -112,7 +111,3 @@ void tst_api() {
test_bvneg();
test_mk_distinct();
}
#else
void tst_api() {
}
#endif

View file

@ -4,7 +4,6 @@ Copyright (c) 2015 Microsoft Corporation
--*/
#ifdef _WINDOWS
#include "ast/reg_decl_plugins.h"
#include "muz/base/dl_context.h"
#include "muz/fp/dl_register_engine.h"
@ -23,7 +22,7 @@ namespace datalog {
public:
collector_of_reduced(idx_set & accumulator) : m_acc(accumulator) {}
virtual void operator()(table_element * func_columns, const table_element * merged_func_columns) {
void operator()(table_element * func_columns, const table_element * merged_func_columns) override {
m_acc.insert(static_cast<unsigned>(merged_func_columns[0]));
}
};
@ -352,6 +351,7 @@ namespace datalog {
using namespace datalog;
#ifdef _WINDOWS
void tst_dl_product_relation() {
smt_params fparams;
params_ref params;
@ -363,6 +363,6 @@ void tst_dl_product_relation() {
}
#else
void tst_dl_product_relation() {
}
void tst_dl_product_relation() {}
#endif

View file

@ -4,8 +4,6 @@ Copyright (c) 2015 Microsoft Corporation
--*/
#ifdef _WINDOWS
#include "ast/reg_decl_plugins.h"
#include "muz/base/dl_context.h"
#include "muz/fp/dl_register_engine.h"
@ -296,8 +294,3 @@ void tst_dl_relation() {
datalog::test_interval_relation();
datalog::test_bound_relation();
}
#else
void tst_dl_relation() {
}
#endif

View file

@ -17,6 +17,7 @@ Revision History:
--*/
#pragma once
#include <unordered_map>
#include <vector>

View file

@ -1,3 +1,5 @@
#pragma once
namespace lp {
#include "math/lp/lp_utils.h"
struct gomory_test {

View file

@ -16,7 +16,6 @@ Author:
Revision History:
--*/
#ifdef _WINDOWS
#include "ast/substitution/matcher.h"
#include "ast/ast_pp.h"
#include "ast/reg_decl_plugins.h"
@ -110,7 +109,3 @@ void tst1() {
void tst_matcher() {
tst1();
}
#else
void tst_matcher() {
}
#endif

View file

@ -4,7 +4,6 @@ Copyright (c) 2015 Microsoft Corporation
--*/
#ifdef _WINDOWS
#include "api/z3.h"
#include "api/z3_private.h"
#include <iostream>
@ -59,8 +58,3 @@ void tst_memory() {
Z3_reset_memory();
}
#else
void tst_memory() {
}
#endif

View file

@ -16,7 +16,6 @@ Author:
Revision History:
--*/
#ifdef _WINDOWS
#include "api/z3.h"
#include "util/trace.h"
@ -724,7 +723,3 @@ void tst_no_overflow() {
}
}
}
#else
void tst_no_overflow() {
}
#endif

View file

@ -4,7 +4,6 @@ Copyright (c) 2015 Microsoft Corporation
--*/
#ifdef _WINDOWS
#include "api/z3.h"
#include "api/z3_private.h"
#include <iostream>
@ -214,8 +213,3 @@ void tst_simplifier() {
test_bool();
test_skolemize_bug();
}
#else
void tst_simplifier() {
}
#endif