mirror of
https://github.com/Z3Prover/z3
synced 2025-04-30 04:15:51 +00:00
rename conflict_core to conflict:
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1e3ff3179e
commit
bb5ff8db24
13 changed files with 98 additions and 97 deletions
|
@ -12,7 +12,7 @@ Author:
|
|||
|
||||
--*/
|
||||
#pragma once
|
||||
#include "math/polysat/conflict_core.h"
|
||||
#include "math/polysat/conflict.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
|
@ -21,12 +21,12 @@ namespace polysat {
|
|||
class variable_elimination_engine {
|
||||
public:
|
||||
virtual ~variable_elimination_engine() {}
|
||||
virtual bool perform(solver& s, pvar v, conflict_core& core) = 0;
|
||||
virtual bool perform(solver& s, pvar v, conflict& core) = 0;
|
||||
};
|
||||
|
||||
class ve_reduction : public variable_elimination_engine {
|
||||
public:
|
||||
bool perform(solver& s, pvar v, conflict_core& core) override;
|
||||
bool perform(solver& s, pvar v, conflict& core) override;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue