mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-09 12:15:09 -05:00
10 lines
344 B
Rust
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,
|
|
}
|