mirror of
https://github.com/Z3Prover/z3
synced 2025-05-05 23:05:46 +00:00
Polysat: use constraint_literal and begin move to core-based conflict representation (#5489)
* Rename solver_scope for fixplex tests (otherwise the wrong constructor is called for polysat's solver_scope) * Update conflict_core * simplify * Be clearer about constraint_literal lifetime * remove old comment * Remove status (positive/negative) from constraint * Use constraint_literal in the solver * Fix build (constraint -> get_constraint)
This commit is contained in:
parent
30e9f24fa3
commit
ebaea2159e
19 changed files with 933 additions and 1004 deletions
|
@ -40,21 +40,6 @@ show_deref_t<T> show_deref(T* ptr) {
|
|||
return show_deref_t<T>{ptr};
|
||||
}
|
||||
|
||||
// template <typename T>
|
||||
// show_deref_t<T> show_deref(ref<T> const& ptr) {
|
||||
// return show_deref_t<T>{ptr.get()};
|
||||
// }
|
||||
|
||||
// template <typename T>
|
||||
// show_deref_t<T> show_deref(scoped_ptr<T> const& ptr) {
|
||||
// return show_deref_t<T>{ptr.get()};
|
||||
// }
|
||||
|
||||
// template <typename Ptr, typename T = decltype(&*std::declval<Ptr>())>
|
||||
// show_deref_t<T> show_deref(Ptr const& ptr) {
|
||||
// return show_deref_t<T>{&*ptr};
|
||||
// }
|
||||
|
||||
template <typename Ptr, typename T = typename std::remove_pointer<decltype(std::declval<Ptr>().get())>::type>
|
||||
show_deref_t<T> show_deref(Ptr const& ptr) {
|
||||
return show_deref_t<T>{ptr.get()};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue