Skip to content

Commit

Permalink
update description
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-camuto committed Oct 31, 2023
1 parent 6678d05 commit 127f12d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion halo2_proofs/src/plonk/circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2153,7 +2153,8 @@ impl<F: Field> ConstraintSystem<F> {
self.advice_column_in(FirstPhase)
}

/// Allocate a new unblinded advice column in given phase
/// Allocate a new unblinded advice column in given phase. The allows for the generation of deterministic commitments to advice columns
/// which can be used to split large circuits into smaller ones, whose proofs can then be "joined" together by their common witness commitments.
pub fn unblinded_advice_column_in<P: Phase>(&mut self, phase: P) -> Column<Advice> {
let phase = phase.to_sealed();
if let Some(previous_phase) = phase.prev() {
Expand Down

0 comments on commit 127f12d

Please sign in to comment.