Skip to content

Commit

Permalink
fix: Add missing annotate_column trait fn for Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
CPerezz committed Jan 10, 2023
1 parent 22e3504 commit 3cfbc09
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions halo2_proofs/src/dev/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,14 @@ impl<F: Field> Assignment<F> for Graph {
Ok(())
}

fn annotate_column<A, AR>(&mut self, _annotation: A, _column: Column<Any>)
where
A: FnOnce() -> AR,
AR: Into<String>,
{
// Do nothing
}

fn query_instance(&self, _: Column<Instance>, _: usize) -> Result<Value<F>, Error> {
Ok(Value::unknown())
}
Expand Down

0 comments on commit 3cfbc09

Please sign in to comment.