Enum z3_sys::GoalPrec
[−]
[src]
#[repr(u32)]pub enum GoalPrec { Precise, Under, Over, UnderOver, }
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
PreciseApproximations/Relaxations were not applied on the goal (sat and unsat answers were preserved).
This corresponds to Z3_GOAL_PRECISE in the C API.
UnderGoal is the product of a under-approximation (sat answers are preserved).
This corresponds to Z3_GOAL_UNDER in the C API.
OverGoal is the product of an over-approximation (unsat answers are preserved).
This corresponds to Z3_GOAL_OVER in the C API.
UnderOverGoal 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 Debug for GoalPrec[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for GoalPrec[src]
impl Clone for GoalPrec[src]
fn clone(&self) -> GoalPrec[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for GoalPrec[src]
fn eq(&self, __arg_0: &GoalPrec) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.