3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-30 16:03:16 +00:00

other components

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-02 11:48:48 -07:00
parent e9eab22e5c
commit 68269c43a6
250 changed files with 70871 additions and 0 deletions

58
test/par_dll.cpp Normal file
View file

@ -0,0 +1,58 @@
#include "z3.h"
#include "windows.h"
class thread_check {
CRITICAL_SECTION m_cs;
static DWORD __stdcall do_check(LPVOID _this) {
thread_check* th = static_cast<thread_check*>(_this);
Z3_config cfg = Z3_mk_config();
Z3_set_param_value(cfg,"MODEL","true");
Z3_context ctx = Z3_mk_context(cfg);
Z3_parse_smtlib_string(ctx, "(benchmark b :logic QF_UF :extrafuns ((f U U) (x U)) :formula (= (f x) x))", 0, 0, 0, 0, 0, 0);
Z3_ast f = Z3_get_smtlib_formula(ctx, 0);
Z3_assert_cnstr(ctx, f);
Z3_model m = 0;
Z3_lbool r = Z3_check_and_get_model(ctx,&m);
EnterCriticalSection(&th->m_cs);
printf("%d\n", r);
LeaveCriticalSection(&th->m_cs);
if (m) {
Z3_del_model(ctx, m);
}
return 0;
}
public:
thread_check() {
InitializeCriticalSection(&m_cs);
}
~thread_check() {
DeleteCriticalSection(&m_cs);
}
void do_checks(unsigned num_threads) {
HANDLE* handles = new HANDLE[num_threads];
for (unsigned i = 0; i < num_threads; ++i) {
HANDLE hThread = CreateThread(NULL, 0, &thread_check::do_check, this, 0, 0);
handles[i] = hThread;
}
WaitForMultipleObjects(num_threads, handles, TRUE, INFINITE);
for (unsigned i = 0; i < num_threads; ++i) {
CloseHandle(handles[i]);
}
delete[] handles;
}
};
extern "C"
__declspec(dllexport) int ChessTestRun() {
thread_check tc;
tc.do_checks(2);
return 0;
}