We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ff352b commit 8f5ee7bCopy full SHA for 8f5ee7b
crates/components/deap/src/lib.rs
@@ -36,10 +36,12 @@ pub struct Deap<Mpc, Zk> {
36
zk: Arc<Mutex<Zk>>,
37
/// Mapping between the memories of the MPC and ZK VMs.
38
memory_map: map::MemoryMap,
39
- /// Ranges of the follower's private inputs.
+ /// Ranges of the follower's private inputs in the MPC VM.
40
follower_input_ranges: RangeSet<usize>,
41
- /// Private inputs of the follower.
+ /// Private inputs of the follower in the MPC VM.
42
follower_inputs: Vec<Slice>,
43
+ /// Outputs of the follower from the ZK VM. The references
44
+ /// correspond to the MPC VM.
45
outputs: Vec<(Slice, DecodeFuture<BitVec>)>,
46
}
47
0 commit comments