summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-07-07 11:26:56 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-07-07 11:26:56 +0200
commit772d173dc2864e8fdaf98b9a549e2ed0f4be2099 (patch)
tree91d833f1d6700a86724d026b63e62fde8f85fab3
parentf7eef79cb2685d12f361e3903b79bce3583b36fc (diff)
Changed default implementation used by main to be bitwise
-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);