pub trait ExecutionStrategy<E, FL, L, K, FK, Aind>where
E: ExecuteOp<FL, L, K, FK, Aind>,{
// Required method
fn execute_all<C: ContractionStrategy<E, L, K, FK, Aind>>(
executor: &mut E,
graph: &mut NetworkGraph<K, FK, Aind>,
lib: &L,
fnlib: &FL,
) -> Result<(), TensorNetworkError<K, FK>>
where K: Display,
FK: Display;
}Required Methods§
Sourcefn execute_all<C: ContractionStrategy<E, L, K, FK, Aind>>(
executor: &mut E,
graph: &mut NetworkGraph<K, FK, Aind>,
lib: &L,
fnlib: &FL,
) -> Result<(), TensorNetworkError<K, FK>>
fn execute_all<C: ContractionStrategy<E, L, K, FK, Aind>>( executor: &mut E, graph: &mut NetworkGraph<K, FK, Aind>, lib: &L, fnlib: &FL, ) -> Result<(), TensorNetworkError<K, FK>>
Run the entire contraction to one leaf.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.