diff options
Diffstat (limited to 'docs/replace.txt')
| -rw-r--r-- | docs/replace.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/replace.txt b/docs/replace.txt new file mode 100644 index 0000000..f147584 --- /dev/null +++ b/docs/replace.txt | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | |||
| 2 | HELP PAGE FOR COMMAND replace | ||
| 3 | |||
| 4 | SYNTAX | ||
| 5 | eo [OPTIONS] [MOVES|$ID|@ID] | ||
| 6 | |||
| 7 | DESCRIPTION | ||
| 8 | Looks for non-optimal subsequences and replaces them to shorten the given | ||
| 9 | sequence. By default it tries to shorten every subsequence of up to 10 moves, | ||
| 10 | but this can be change with the "b" option. | ||
| 11 | It outputs at most 10 equivalent optimal sequences for each replaceable part. | ||
| 12 | |||
| 13 | OPTIONS | ||
| 14 | b=N Finds non-optimal subsequences of up to N moves. | ||
| 15 | |||
| 16 | EXAMPLES | ||
| 17 | replace D2 F' D2 U2 F' L2 R2 U' D B2 D B2 U B2 F L2 R' F' D U' | ||
| 18 | Produces the following output: | ||
| 19 | Replace [ R2 U' D B2 D B2 ] (moves 7-12) with: [ D R2 D U' ] (-6+4) | ||
| 20 | Replace [ R2 U' D B2 D B2 U ] (moves 7-13) with: [ D R2 D ] (-7+3) | ||
| 21 | Replace [ U' D B2 D B2 U ] (moves 8-13) with: [ R2 D R2 D ] (-6+4) | ||
| 22 | |||
