pub struct IsolationConfig {
pub use_sturm: bool,
pub use_descartes: bool,
pub max_iterations: usize,
pub precision: BigRational,
}Expand description
Configuration for root isolation.
Fields§
§use_sturm: boolUse Sturm sequences for root counting.
use_descartes: boolUse Descartes’ rule for optimization.
max_iterations: usizeMaximum refinement iterations.
precision: BigRationalPrecision threshold.
Trait Implementations§
Source§impl Clone for IsolationConfig
impl Clone for IsolationConfig
Source§fn clone(&self) -> IsolationConfig
fn clone(&self) -> IsolationConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IsolationConfig
impl Debug for IsolationConfig
Auto Trait Implementations§
impl Freeze for IsolationConfig
impl RefUnwindSafe for IsolationConfig
impl Send for IsolationConfig
impl Sync for IsolationConfig
impl Unpin for IsolationConfig
impl UnsafeUnpin for IsolationConfig
impl UnwindSafe for IsolationConfig
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