3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-11 09:44:43 +00:00
z3/src/math/polysat/variable_elimination.h
Nikolaj Bjorner e6c4ae19c6 stab at forbidden intervals
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2021-09-07 15:49:29 +02:00

32 lines
610 B
C++

/*++
Copyright (c) 2021 Microsoft Corporation
Module Name:
Polysat variable elimination
Author:
Nikolaj Bjorner (nbjorner) 2021-03-19
Jakob Rath 2021-04-6
--*/
#pragma once
#include "math/polysat/conflict_core.h"
namespace polysat {
class solver;
class variable_elimination_engine {
public:
virtual ~variable_elimination_engine() {}
virtual bool perform(solver& s, pvar v, conflict_core& core) = 0;
};
class ve_reduction : public variable_elimination_engine {
public:
bool perform(solver& s, pvar v, conflict_core& core) override;
};
}