mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
increment version number to 4.8.4
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
7f5d66c3c2
commit
e83e9b02df
5 changed files with 12 additions and 23 deletions
|
@ -285,17 +285,6 @@ namespace sat {
|
|||
return copied;
|
||||
}
|
||||
|
||||
void parallel::set_phase(local_search& s) {
|
||||
#pragma omp critical (par_solver)
|
||||
{
|
||||
m_consumer_ready = true;
|
||||
m_phase.reserve(s.num_vars(), l_undef);
|
||||
for (unsigned i = 0; i < s.num_vars(); ++i) {
|
||||
m_phase[i] = s.get_phase(i) ? l_true : l_false;
|
||||
}
|
||||
m_num_clauses = s.num_non_binary_clauses();
|
||||
}
|
||||
}
|
||||
|
||||
bool parallel::copy_solver(solver& s) {
|
||||
bool copied = false;
|
||||
|
|
|
@ -104,8 +104,6 @@ namespace sat {
|
|||
|
||||
void get_phase(solver& s);
|
||||
|
||||
void set_phase(local_search& s);
|
||||
|
||||
bool get_phase(local_search& s);
|
||||
|
||||
bool copy_solver(solver& s);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue