Fix ranges in AllRecursiveCircuits initialization for log_opcode aggregation test (#1345)

This commit is contained in:
Robin Salen 2023-11-09 17:21:21 -05:00 committed by GitHub
parent 01bbf1a058
commit ec41b754a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -459,7 +459,7 @@ fn test_log_with_aggreg() -> anyhow::Result<()> {
// Preprocess all circuits.
let all_circuits = AllRecursiveCircuits::<F, C, D>::new(
&all_stark,
&[16..17, 11..13, 17..19, 14..15, 9..11, 12..13, 19..21],
&[16..17, 12..14, 17..18, 14..15, 9..11, 12..13, 19..20],
&config,
);