Skip to content

Commit

Permalink
LigeroPCRandomness left temporarily unimplemented
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Oct 4, 2023
1 parent 46a28c8 commit 8d15d4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ligero/data_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,14 +365,17 @@ impl<Unprepared: PCCommitment, C: Config> PCPreparedCommitment<Unprepared>
pub(crate) type LigeroPCRandomness = ();

impl PCRandomness for LigeroPCRandomness {
fn empty() -> Self {}
fn empty() -> Self {
unimplemented!()
}

fn rand<R: RngCore>(
_num_queries: usize,
_has_degree_bound: bool,
_num_vars: Option<usize>,
_rng: &mut R,
) -> Self {
unimplemented!()
}
}

Expand Down

0 comments on commit 8d15d4e

Please sign in to comment.