Struct metis::option::DbgLvl

source ·
pub struct DbgLvl {
    pub info: bool,
    pub time: bool,
    pub coarsen: bool,
    pub refine: bool,
    pub ipart: bool,
    pub move_info: bool,
    pub sep_info: bool,
    pub conn_info: bool,
    pub contig_info: bool,
}
Expand description

Specifies the amount of progress/debugging information will be printed during the execution of the algorithms.

The default value is false for every field (no debugging/progress information).

Fields§

§info: bool

Prints various diagnostic messages.

§time: bool

Performs timing analysis.

§coarsen: bool

Displays various statistics during coarsening.

§refine: bool

Displays various statistics during refinement.

§ipart: bool

Displays various statistics during initial partitioning.

§move_info: bool

Display detailed information about vertex moves during refinement.

§sep_info: bool

Display detailed information about vertex separators.

§conn_info: bool

Display information related to the minimization of subdomain connectivity.

§contig_info: bool

Display information related to the elimination of connected components.

Trait Implementations§

source§

impl Opt for DbgLvl

source§

const INDEX: usize = 5usize

Index of the option in the array from crate::Graph::set_options and crate::Mesh::set_options.
source§

fn value(self) -> Idx

Convert the value into metis’ format, for use with crate::Graph::set_options and crate::Mesh::set_options.

Auto Trait Implementations§

§

impl Freeze for DbgLvl

§

impl RefUnwindSafe for DbgLvl

§

impl Send for DbgLvl

§

impl Sync for DbgLvl

§

impl Unpin for DbgLvl

§

impl UnwindSafe for DbgLvl

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.