Skip to content

Commit

Permalink
fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
desmonddak committed Nov 20, 2024
1 parent 73aac77 commit 0658a17
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions test/arithmetic/multiplier_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -596,20 +596,14 @@ void main() {
expect(ppG0.getAbsolute(1, 10).value, equals(Const(0).value));

final cc = ColumnCompressor(ppG0);

const expectedRep = '''
pp3,15 pp3,14 pp3,13 pp3,12 pp3,11 pp3,10 pp3,9 pp3,8 pp3,7 pp3,6 pp3,5 pp2,4 pp2,3 pp1,2 pp1,1 pp0,0
pp2,13 pp2,12 pp1,11 pp2,10 pp2,9 pp2,8 pp2,7 pp2,6 pp2,5 pp0,4 pp0,3 pp0,2 pp0,1
pp2,11 pp1,10 pp1,9 pp1,8 pp1,7 pp1,6 pp1,5 pp1,4 pp1,3
pp0,10 pp0,9 pp0,8 pp0,7 pp0,6 pp0,5
''';
const expectedRep2 = '''
pp3,15 pp3,14 pp3,13 pp3,12 pp3,11 pp3,10 pp3,9 pp3,8 pp3,7 pp3,6 pp3,5 pp2,4 pp2,3 pp1,2 pp1,1 pp0,0
pp2,13 pp2,12 pp1,11 pp2,10 pp2,9 pp2,8 pp2,7 pp2,6 pp2,5 pp0,4 pp0,3 pp0,2 pp0,1
pp2,11 pp1,10 pp1,9 pp1,8 pp1,7 pp1,6 pp1,5 pp1,4 pp1,3
pp0,10 pp0,9 pp0,8 pp0,7 pp0,6 pp0,5
''';
// print(cc.representation());
expect(cc.representation(), equals(expectedRep2));
expect(cc.representation(), equals(expectedRep));

final (v, ts) = cc.evaluate(printOut: true);

Expand Down

0 comments on commit 0658a17

Please sign in to comment.