Files
concrete/src/graph/range_parametrized.rs
2022-03-03 16:32:10 +01:00

10 lines
344 B
Rust

use crate::global_parameters::{ParameterRanges, ParameterToOperation};
use crate::graph::parameter_indexed::OperatorParameterIndexed;
#[allow(dead_code)]
pub struct AtomicPatternDag {
pub(crate) operators: Vec<OperatorParameterIndexed>,
pub(crate) parameter_ranges: ParameterRanges,
pub(crate) reverse_map: ParameterToOperation,
}