summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bin/perf-test.rs2
-rw-r--r--src/main.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/perf-test.rs b/src/bin/perf-test.rs
index 81dc5a5..f5a78a0 100644
--- a/src/bin/perf-test.rs
+++ b/src/bin/perf-test.rs
@@ -9,7 +9,7 @@ const STATE_PATH: &str = "tests/state0.json";
use std::process;
fn main() {
-// expressive();
+ expressive();
bitwise();
}
diff --git a/src/main.rs b/src/main.rs
index fa9216e..752e8b9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -40,7 +40,7 @@ fn write_command(filename: &str, command: Command) -> Result<(), Box<Error> > {
fn main() {
let start_time = PreciseTime::now();
- let (settings, state) = match input::json::read_expressive_state_from_file(STATE_PATH) {
+ let (settings, state) = match input::json::read_bitwise_state_from_file(STATE_PATH) {
Ok(ok) => ok,
Err(error) => {
println!("Error while parsing JSON file: {}", error);