mirror of
https://github.com/Z3Prover/z3
synced 2026-05-01 16:13:44 +00:00
adding t-smt
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5f2720562b
commit
5f89ead54b
4 changed files with 193 additions and 3 deletions
|
|
@ -200,9 +200,9 @@ class mpz_manager {
|
|||
mpz_t * cell = reinterpret_cast<mpz_t*>(m_allocator.allocate(sizeof(mpz_t)));
|
||||
#else
|
||||
#if SYNC
|
||||
mpz_t * cell = reinterpret_cast<mpz_t*>(memory::allocate(sizeof(mpz_t)));
|
||||
#else
|
||||
mpz_t * cell = reinterpret_cast<mpz_t*>(m_allocator.allocate(sizeof(mpz_t)));
|
||||
#else
|
||||
mpz_t * cell = reinterpret_cast<mpz_t*>(memory::allocate(sizeof(mpz_t)));
|
||||
#endif
|
||||
#endif
|
||||
mpz_init(*cell);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue