pub struct RootCountConfig {
pub use_sturm: bool,
pub use_descartes: bool,
pub use_budan: bool,
}Expand description
Configuration for root counting.
Fields§
§use_sturm: boolUse Sturm sequences (exact but slower).
use_descartes: boolUse Descartes’ rule (fast but gives upper bound).
use_budan: boolUse Budan’s theorem.
Trait Implementations§
Source§impl Clone for RootCountConfig
impl Clone for RootCountConfig
Source§fn clone(&self) -> RootCountConfig
fn clone(&self) -> RootCountConfig
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 RootCountConfig
impl Debug for RootCountConfig
Auto Trait Implementations§
impl Freeze for RootCountConfig
impl RefUnwindSafe for RootCountConfig
impl Send for RootCountConfig
impl Sync for RootCountConfig
impl Unpin for RootCountConfig
impl UnsafeUnpin for RootCountConfig
impl UnwindSafe for RootCountConfig
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