pub struct QuantifierAnalysis(/* private fields */);
Implementations§
Source§impl QuantifierAnalysis
impl QuantifierAnalysis
pub fn new(parser: &Z3Parser, inst_graph: &InstGraph) -> Self
pub fn total_costs(&self) -> f64
pub fn quant_sum_cost(&self, quant: QuantIdx) -> f64
pub fn quants_costs(&self) -> impl Iterator<Item = (QuantIdx, f64)> + '_
pub fn calculate_transitive( &self, steps: Option<u32>, ) -> TiVec<QuantIdx, FxHashSet<QuantIdx>>
Methods from Deref<Target = QuantPatVec<QuantPatInfo>>§
pub fn iter_enumerated(&self) -> impl Iterator<Item = (QuantPat, &T)>
Trait Implementations§
Source§impl Clone for QuantifierAnalysis
impl Clone for QuantifierAnalysis
Source§fn clone(&self) -> QuantifierAnalysis
fn clone(&self) -> QuantifierAnalysis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Deref for QuantifierAnalysis
impl Deref for QuantifierAnalysis
Source§type Target = QuantPatVec<QuantPatInfo>
type Target = QuantPatVec<QuantPatInfo>
The resulting type after dereferencing.
Auto Trait Implementations§
impl Freeze for QuantifierAnalysis
impl RefUnwindSafe for QuantifierAnalysis
impl Send for QuantifierAnalysis
impl Sync for QuantifierAnalysis
impl Unpin for QuantifierAnalysis
impl UnwindSafe for QuantifierAnalysis
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more