Skip to content

Commit

Permalink
Reimplement symbol().
Browse files Browse the repository at this point in the history
  • Loading branch information
porcuquine committed Jan 12, 2024
1 parent 1d40c7b commit c17bcc9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/coprocessor/memoset/demo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,9 @@ impl<F: LurkField> CircuitQuery<F> for DemoCircuitQuery<F> {
}

fn symbol(&self) -> Symbol {
todo!()
match self {
Self::Factorial(_) => Symbol::sym(&["lurk", "user", "factorial"]),
}
}
}

Expand Down

0 comments on commit c17bcc9

Please sign in to comment.