summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3c8449c..ddcc7c8 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,7 +1,8 @@
mod solvers;
fn main() {
- let mut solver = solvers::Solver::<u8>::new(4);
+ let mut solver = solvers::Solver::<u8>::new(2);
+
let wall = solver.solve();
wall.output(solver.n, solver.h);
}