We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d40ae4 commit 1c78e16Copy full SHA for 1c78e16
halo2_proofs/src/plonk/circuit.rs
@@ -568,10 +568,14 @@ pub trait Assignment<F: Field>: Sized + Send {
568
AR: Into<String>;
569
570
/// Fork
571
- fn fork(&mut self, ranges: &[Range<usize>]) -> Result<Vec<Self>, Error>;
+ fn fork(&mut self, ranges: &[Range<usize>]) -> Result<Vec<Self>, Error> {
572
+ unimplemented!("fork is not implemented by default")
573
+ }
574
575
/// Merge
- fn merge(&mut self, sub_cs: Vec<Self>) -> Result<(), Error>;
576
+ fn merge(&mut self, sub_cs: Vec<Self>) -> Result<(), Error> {
577
+ unimplemented!("merge is not implemented by default")
578
579
580
/// Queries the cell of an instance column at a particular absolute row.
581
///
0 commit comments