pub struct FixpointConfig {
pub max_iterations: usize,
}Expand description
Configuration for evaluate_fixpoint.
Fields§
§max_iterations: usizeHard cap on iteration count. Returns
FixpointError::MaxIterationsExceeded if convergence
is not reached within this many iterations. Must be ≥ 1.
Trait Implementations§
Source§impl Clone for FixpointConfig
impl Clone for FixpointConfig
Source§fn clone(&self) -> FixpointConfig
fn clone(&self) -> FixpointConfig
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 Debug for FixpointConfig
impl Debug for FixpointConfig
Source§impl Default for FixpointConfig
impl Default for FixpointConfig
Source§impl PartialEq for FixpointConfig
impl PartialEq for FixpointConfig
impl Eq for FixpointConfig
impl StructuralPartialEq for FixpointConfig
Auto Trait Implementations§
impl Freeze for FixpointConfig
impl RefUnwindSafe for FixpointConfig
impl Send for FixpointConfig
impl Sync for FixpointConfig
impl Unpin for FixpointConfig
impl UnsafeUnpin for FixpointConfig
impl UnwindSafe for FixpointConfig
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more