diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2024-08-26 15:35:09 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2024-08-26 15:35:09 +0200 |
| commit | f2907e471b3caddc5844bc6994e1cbd249019747 (patch) | |
| tree | 36669614893b38a7b10535720841cac74094838e /shell.c | |
| parent | 25c16cc4350a659ede2a2503c4c5be36264e853d (diff) | |
| download | nissy-core-f2907e471b3caddc5844bc6994e1cbd249019747.tar.gz nissy-core-f2907e471b3caddc5844bc6994e1cbd249019747.zip | |
Fixed bug in run solve
Diffstat (limited to '')
| -rw-r--r-- | shell.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -183,21 +183,21 @@ struct { | |||
| 183 | ), | 183 | ), |
| 184 | COMMAND( | 184 | COMMAND( |
| 185 | "datasize", | 185 | "datasize", |
| 186 | "datasize" _flag_solver " SOLVER " _flag_options " OPTIONS", | 186 | "datasize " _flag_solver " SOLVER " _flag_options " OPTIONS", |
| 187 | "Return the size in bytes of the data table used by " | 187 | "Return the size in bytes of the data table used by " |
| 188 | "SOLVER when called with the given OPTIONS.", | 188 | "SOLVER when called with the given OPTIONS.", |
| 189 | datasize_exec | 189 | datasize_exec |
| 190 | ), | 190 | ), |
| 191 | COMMAND( | 191 | COMMAND( |
| 192 | "gendata", | 192 | "gendata", |
| 193 | "gendata" _flag_solver " SOLVER " _flag_options " OPTIONS", | 193 | "gendata " _flag_solver " SOLVER " _flag_options " OPTIONS", |
| 194 | "Generate the data table used by " | 194 | "Generate the data table used by " |
| 195 | "SOLVER when called with the given OPTIONS.", | 195 | "SOLVER when called with the given OPTIONS.", |
| 196 | gendata_exec | 196 | gendata_exec |
| 197 | ), | 197 | ), |
| 198 | COMMAND( | 198 | COMMAND( |
| 199 | "solve", | 199 | "solve", |
| 200 | "solve" _flag_solver " SOLVER " _flag_options " OPTIONS " | 200 | "solve " _flag_solver " SOLVER " _flag_options " OPTIONS " |
| 201 | "[" _flag_minmoves " n] [" _flag_maxmoves " N] " | 201 | "[" _flag_minmoves " n] [" _flag_maxmoves " N] " |
| 202 | _flag_cube " CUBE", | 202 | _flag_cube " CUBE", |
| 203 | "Solve the given CUBE using SOLVER with the given OPTIONS, " | 203 | "Solve the given CUBE using SOLVER with the given OPTIONS, " |
