about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2021-11-03 16:55:24 +0530
committerAndinus <andinus@nand.sh>2021-11-03 16:55:24 +0530
commit9da6a28ad940b1c5577b17dd008281c67a46ccbc (patch)
treec1a290dae9acf890b20b877cfb822620fdeb25b4
parent5b3ab457dbeb897802f9515fc09d65f1d013a40f (diff)
downloadfornax-9da6a28ad940b1c5577b17dd008281c67a46ccbc.tar.gz
Remove number of iterations from format
To know this the program must have solved the whole puzzle before it
is able to print a single line. I don't think it's required.
-rw-r--r--README2
-rw-r--r--README.org2
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
index 314a00f..6c5f325 100644
--- a/README
+++ b/README
@@ -46,7 +46,7 @@ This collection includes:
   the maze. Algorithms must output the solution in this format.
 
   ┌────
-  │ rows:<number of rows> cols:<number of columns> iterations:<number of iterations>
+  │ rows:<number of rows> cols:<number of columns>

   │ ...iterations
   └────
diff --git a/README.org b/README.org
index d641d65..aace430 100644
--- a/README.org
+++ b/README.org
@@ -26,7 +26,7 @@ Fornax format is an intermediate output file generated after solving the
 maze. Algorithms must output the solution in this format.
 
 #+begin_src
-rows:<number of rows> cols:<number of columns> iterations:<number of iterations>
+rows:<number of rows> cols:<number of columns>
 
 ...iterations
 #+end_src