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

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 Debug for GoalPrec
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for GoalPrec
[src]

impl Clone for GoalPrec
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for GoalPrec
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for GoalPrec
[src]

impl Hash for GoalPrec
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for GoalPrec

impl Sync for GoalPrec