Skip to content

Commit

Permalink
JigSAT -> CreuSAT in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sarsko committed Mar 25, 2023
1 parent 8f9641d commit 432f916
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
9 changes: 1 addition & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
[workspace]
members = [
# "CreuSAT",
"Robinson",
"Friday",
"JigSAT",
"tests",
]
members = ["CreuSAT", "Robinson", "Friday", "JigSAT", "tests"]

[profile.release]
debug = false
Expand All @@ -28,4 +22,3 @@ opt-level = 3
debug = false
lto = true
opt-level = 3

8 changes: 4 additions & 4 deletions tests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
use std::{fs::read_dir, io::Write, time::Instant};
use termcolor::*;

extern crate JigSAT;
use JigSAT::parser::{parse_cnf, preproc_and_solve};
//extern crate CreuSAT;
//use CreuSAT::parser::{parse_cnf, preproc_and_solve};
//extern crate JigSAT;
//use JigSAT::parser::{parse_cnf, preproc_and_solve};
extern crate CreuSAT;
use CreuSAT::parser::{parse_cnf, preproc_and_solve};

#[test]
fn test_all_sat() {
Expand Down

0 comments on commit 432f916

Please sign in to comment.