mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
remove cooperate
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
42ac3a5363
commit
e0d8cefde4
52 changed files with 0 additions and 204 deletions
|
@ -23,7 +23,6 @@ Revision History:
|
|||
#include "util/debug.h"
|
||||
#include "util/trace.h"
|
||||
#include "util/scoped_numeral.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
#define DEFAULT_PI_PRECISION 2
|
||||
|
@ -65,7 +64,6 @@ template<typename C>
|
|||
void interval_manager<C>::checkpoint() {
|
||||
if (!m_limit.inc())
|
||||
throw default_exception(Z3_CANCELED_MSG);
|
||||
cooperate("interval");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -20,7 +20,6 @@ Notes:
|
|||
#include "math/polynomial/upolynomial.h"
|
||||
#include "util/mpbq.h"
|
||||
#include "util/basic_interval.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "math/polynomial/sexpr2upolynomial.h"
|
||||
#include "util/scoped_ptr_vector.h"
|
||||
#include "util/mpbqi.h"
|
||||
|
@ -128,7 +127,6 @@ namespace algebraic_numbers {
|
|||
void checkpoint() {
|
||||
if (!m_limit.inc())
|
||||
throw algebraic_exception(Z3_CANCELED_MSG);
|
||||
cooperate("algebraic");
|
||||
}
|
||||
|
||||
void reset_statistics() {
|
||||
|
|
|
@ -23,7 +23,6 @@ Notes:
|
|||
#include "util/id_gen.h"
|
||||
#include "util/buffer.h"
|
||||
#include "util/scoped_ptr_vector.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "math/polynomial/upolynomial_factorization.h"
|
||||
#include "math/polynomial/polynomial_primes.h"
|
||||
#include "util/permutation.h"
|
||||
|
@ -2372,7 +2371,6 @@ namespace polynomial {
|
|||
if (!m_limit.inc()) {
|
||||
throw polynomial_exception(Z3_CANCELED_MSG);
|
||||
}
|
||||
cooperate("polynomial");
|
||||
}
|
||||
|
||||
mpzzp_manager & m() const { return const_cast<imp*>(this)->m_manager; }
|
||||
|
|
|
@ -25,7 +25,6 @@ Notes:
|
|||
#include "math/polynomial/upolynomial_factorization.h"
|
||||
#include "math/polynomial/polynomial_primes.h"
|
||||
#include "util/buffer.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
namespace upolynomial {
|
||||
|
@ -157,7 +156,6 @@ namespace upolynomial {
|
|||
void core_manager::checkpoint() {
|
||||
if (!m_limit.inc())
|
||||
throw upolynomial_exception(Z3_CANCELED_MSG);
|
||||
cooperate("upolynomial");
|
||||
}
|
||||
|
||||
// Eliminate leading zeros from buffer.
|
||||
|
|
|
@ -28,7 +28,6 @@ Notes:
|
|||
#include "util/obj_ref.h"
|
||||
#include "util/ref_vector.h"
|
||||
#include "util/ref_buffer.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
#ifndef REALCLOSURE_INI_BUFFER_SIZE
|
||||
|
@ -550,7 +549,6 @@ namespace realclosure {
|
|||
void checkpoint() {
|
||||
if (!m_limit.inc())
|
||||
throw exception(Z3_CANCELED_MSG);
|
||||
cooperate("rcf");
|
||||
}
|
||||
|
||||
value * one() const {
|
||||
|
|
|
@ -19,7 +19,6 @@ Revision History:
|
|||
#include "math/subpaving/subpaving_t.h"
|
||||
#include "math/interval/interval_def.h"
|
||||
#include "util/buffer.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
||||
|
@ -463,7 +462,6 @@ void context_t<C>::checkpoint() {
|
|||
throw default_exception(Z3_CANCELED_MSG);
|
||||
if (memory::get_allocation_size() > m_max_memory)
|
||||
throw default_exception(Z3_MAX_MEMORY_MSG);
|
||||
cooperate("subpaving");
|
||||
}
|
||||
|
||||
template<typename C>
|
||||
|
|
|
@ -21,7 +21,6 @@ Notes:
|
|||
#include "ast/expr2var.h"
|
||||
#include "util/ref_util.h"
|
||||
#include "util/z3_exception.h"
|
||||
#include "util/cooperate.h"
|
||||
#include "ast/arith_decl_plugin.h"
|
||||
#include "util/scoped_numeral_buffer.h"
|
||||
#include "util/common_msgs.h"
|
||||
|
@ -96,7 +95,6 @@ struct expr2subpaving::imp {
|
|||
void checkpoint() {
|
||||
if (m().canceled())
|
||||
throw default_exception(Z3_CANCELED_MSG);
|
||||
cooperate("expr2subpaving");
|
||||
}
|
||||
|
||||
subpaving::var mk_var_for(expr * t) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue