Skip to content

Commit

Permalink
Merge pull request #10 from ninehusky/ninehusky-actually-fix-ci
Browse files Browse the repository at this point in the history
Actually fix CI
  • Loading branch information
ninehusky authored Oct 15, 2024
2 parents 19c5a0e + 6f19d64 commit 3b94c94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
7 changes: 0 additions & 7 deletions tests/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,10 +270,6 @@ fn add_predicates_to_egraph(
.as_str();
}
egraph.parse_and_run_program(None, &add_preds_prog).unwrap();
let serialized = egraph.serialize(egglog::SerializeConfig::default());
serialized
.to_svg_file("new_math_pred_eclasses.svg")
.unwrap();
}
}

Expand Down Expand Up @@ -479,7 +475,4 @@ fn math_eval() {
"(check (= (eclass (Num 1)) (eclass (MathOp2 (Div) (Num 1) (Num 1)))))",
)
.unwrap();

let serialized = egraph.serialize(egglog::SerializeConfig::default());
serialized.to_svg_file("new_math.svg").unwrap();
}

0 comments on commit 3b94c94

Please sign in to comment.