pub struct RunOptions {
pub format: GraphFormat,
pub undirected: bool,
pub store_solutions: bool,
pub first_only: bool,
pub verbose: bool,
pub repetition_time_limit: f32,
pub edge_induced: bool,
}Expand description
Configuration options for VF3 algorithm execution.
Fields§
§format: GraphFormatGraph file format.
undirected: boolTreat graphs as undirected.
store_solutions: boolStore all solution mappings in memory (may use significant memory for large result sets).
first_only: boolStop after finding the first solution (sequential algorithms only).
verbose: boolEnable verbose output.
repetition_time_limit: f32Minimum execution time in seconds for averaging multiple runs.
edge_induced: boolUse edge-induced isomorphism (monomorphism) instead of node-induced.
Trait Implementations§
Source§impl Clone for RunOptions
impl Clone for RunOptions
Source§fn clone(&self) -> RunOptions
fn clone(&self) -> RunOptions
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 RunOptions
impl Debug for RunOptions
Auto Trait Implementations§
impl Freeze for RunOptions
impl RefUnwindSafe for RunOptions
impl Send for RunOptions
impl Sync for RunOptions
impl Unpin for RunOptions
impl UnwindSafe for RunOptions
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