Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robinhundt committed Dec 12, 2023
1 parent f096884 commit 7b3f762
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crates/gmw/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub use circuit::Circuit;
pub use circuit::GateId;
pub use gmw_macros::sub_circuit;
pub use parse::bristol;
pub use protocols::boolean_gmw::BooleanGate;
pub use protocols::boolean_gmw::{BooleanGate, BooleanGmw};
pub use utils::BitMask;

pub mod circuit;
Expand Down
4 changes: 2 additions & 2 deletions crates/gmw/src/share_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,9 @@ pub(crate) fn sub_circuit_inputs<P: Protocol, Idx: GateIdx>(
///# use gmw::circuit::{BaseCircuit, DefaultIdx};
///# use gmw::share_wrapper::{inputs, low_depth_reduce};
///# use parking_lot::Mutex;
///# use gmw::{BooleanGate, Circuit, CircuitBuilder};
///# use gmw::{BooleanGate, Circuit, CircuitBuilder, BooleanGmw};
///#
/// let inputs = inputs::<DefaultIdx>(23);
/// let inputs = inputs::<BooleanGmw, DefaultIdx>(23);
/// low_depth_reduce(inputs, std::ops::BitAnd::bitand)
/// .unwrap()
/// .output();
Expand Down

0 comments on commit 7b3f762

Please sign in to comment.