From b9461c127f796c047c786fec0e5e454b9c7d82d9 Mon Sep 17 00:00:00 2001 From: Georg Wiese Date: Fri, 22 Nov 2024 14:41:32 +0100 Subject: [PATCH] Make test more complicated --- test_data/asm/block_to_block_empty_submachine.asm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test_data/asm/block_to_block_empty_submachine.asm b/test_data/asm/block_to_block_empty_submachine.asm index 20ac07f2e..42f072c68 100644 --- a/test_data/asm/block_to_block_empty_submachine.asm +++ b/test_data/asm/block_to_block_empty_submachine.asm @@ -13,7 +13,9 @@ machine Arith with operation add<0> x, y -> z; col fixed operation_id = [0]*; - col fixed latch = [1]*; + // The machine only needs one row to compute a block, but we'll use two + // to make sure that this machine has fixed columns. + col fixed latch = [0, 1]*; col witness x; col witness y; col witness z;