summaryrefslogtreecommitdiff
path: root/src/structs.rs
diff options
context:
space:
mode:
authornatrixaeria <upezu@student.kit.edu>2020-01-02 15:34:07 +0100
committernatrixaeria <upezu@student.kit.edu>2020-01-02 15:34:07 +0100
commitedaccaaf15a526714f3de4e9e044341abd037885 (patch)
treebc81df9b6db78d32602b47b25fe57e29c409d01f /src/structs.rs
parent08bd65b2c5c49aacf5e6db014ae6cf44e4b50082 (diff)
Start to implement incremental block solver
Diffstat (limited to 'src/structs.rs')
-rw-r--r--src/structs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/structs.rs b/src/structs.rs
index aa70680..1d33215 100644
--- a/src/structs.rs
+++ b/src/structs.rs
@@ -21,7 +21,7 @@ impl StoneWall {
pub fn output(&mut self) {
let colors = [[31, 32], [33, 35]];
- self.rows.sort_by_key(|x| x[0]);
+ //self.rows.sort_by_key(|x| x[0]);
for (i, row) in self.rows.iter().enumerate() {
for (j, &stone) in row.iter().enumerate() {