Skip to content

Commit

Permalink
equal_constrained_transitive
Browse files Browse the repository at this point in the history
  • Loading branch information
gzanitti committed Dec 10, 2024
1 parent 7dd3a12 commit c01dca9
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.
6 changes: 1 addition & 5 deletions pilopt/tests/optimizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,7 @@ fn intermediate() {
col intermediate = x;
intermediate = intermediate;
"#;
let expectation = r#"namespace N(65536);
col witness x;
col intermediate = N::x;
N::intermediate = N::intermediate;
"#;
let expectation = r#""#;
let optimized = optimize(analyze_string::<GoldilocksField>(input).unwrap()).to_string();
assert_eq!(optimized, expectation);
}
Expand Down
6 changes: 0 additions & 6 deletions pipeline/tests/asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -366,12 +366,6 @@ fn full_pil_constant() {
regular_test_all_fields(f, Default::default());
}

#[test]
fn intermediate() {
let f = "asm/intermediate.asm";
regular_test_all_fields(f, Default::default());
}

#[test]
fn intermediate_nested() {
let f = "asm/intermediate_nested.asm";
Expand Down
11 changes: 0 additions & 11 deletions test_data/asm/intermediate.asm

This file was deleted.

0 comments on commit c01dca9

Please sign in to comment.