From 127f12d5c3cbdaed3204f2d10edbeeb1656b36ee Mon Sep 17 00:00:00 2001 From: Alexander Camuto <45801863+alexander-camuto@users.noreply.github.com> Date: Tue, 31 Oct 2023 15:22:35 +0000 Subject: [PATCH] update description --- halo2_proofs/src/plonk/circuit.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/halo2_proofs/src/plonk/circuit.rs b/halo2_proofs/src/plonk/circuit.rs index c8a8f625e8..82cb0df08f 100644 --- a/halo2_proofs/src/plonk/circuit.rs +++ b/halo2_proofs/src/plonk/circuit.rs @@ -2153,7 +2153,8 @@ impl ConstraintSystem { 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(&mut self, phase: P) -> Column { let phase = phase.to_sealed(); if let Some(previous_phase) = phase.prev() {