pub trait ContractionPathResult {
// Required methods
fn ssa_path(&self) -> &ContractionPath;
fn replace_path(&self) -> ContractionPath;
fn flops(&self) -> f64;
fn size(&self) -> f64;
}Expand description
The result of running a contraction Pathfinder.
Required Methods§
Sourcefn ssa_path(&self) -> &ContractionPath
fn ssa_path(&self) -> &ContractionPath
Returns the best found contraction path in SSA format.
Sourcefn replace_path(&self) -> ContractionPath
fn replace_path(&self) -> ContractionPath
Returns the best found contraction path in ReplaceLeft format.