[−][src]Enum z3_sys::GoalPrec
A Goal is essentially a set of formulas. Z3 provide APIs for building strategies/tactics for solving and transforming Goals. Some of these transformations apply under/over approximations.
This corresponds to Z3_goal_prec in the C API.
Variants
Approximations/Relaxations were not applied on the goal (sat and unsat answers were preserved).
This corresponds to Z3_GOAL_PRECISE in the C API.
Goal is the product of a under-approximation (sat answers are preserved).
This corresponds to Z3_GOAL_UNDER in the C API.
Goal is the product of an over-approximation (unsat answers are preserved).
This corresponds to Z3_GOAL_OVER in the C API.
Goal is garbage (it is the product of over- and under-approximations, sat and unsat answers are not preserved).
This corresponds to Z3_GOAL_UNDER_OVER in the C API.
Trait Implementations
impl Clone for GoalPrec[src]
impl Copy for GoalPrec[src]
impl Debug for GoalPrec[src]
impl Eq for GoalPrec[src]
impl Hash for GoalPrec[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<GoalPrec> for GoalPrec[src]
impl StructuralEq for GoalPrec[src]
impl StructuralPartialEq for GoalPrec[src]
Auto Trait Implementations
impl RefUnwindSafe for GoalPrec
impl Send for GoalPrec
impl Sync for GoalPrec
impl Unpin for GoalPrec
impl UnwindSafe for GoalPrec
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,