File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ impl<E: ExtensionField> TableCircuit<E> for ProgramTableCircuit<E> {
158158 let pc_base = program. base_address ;
159159 assert ! ( num_instructions <= config. program_size) ;
160160
161- let mut fixed = RowMajorMatrix :: < E :: BaseField > :: new ( PROGRAM_SIZE , num_fixed) ;
161+ let mut fixed = RowMajorMatrix :: < E :: BaseField > :: new ( config . program_size , num_fixed) ;
162162
163163 fixed
164164 . par_iter_mut ( )
@@ -195,7 +195,7 @@ impl<E: ExtensionField> TableCircuit<E> for ProgramTableCircuit<E> {
195195 prog_mlt[ i] = * mlt;
196196 }
197197
198- let mut witness = RowMajorMatrix :: < E :: BaseField > :: new ( PROGRAM_SIZE , num_witin) ;
198+ let mut witness = RowMajorMatrix :: < E :: BaseField > :: new ( config . program_size , num_witin) ;
199199 witness
200200 . par_iter_mut ( )
201201 . with_min_len ( MIN_PAR_SIZE )
You can’t perform that action at this time.
0 commit comments