diff options
Diffstat (limited to 'kpat/freecell-solver/main.c')
-rw-r--r-- | kpat/freecell-solver/main.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kpat/freecell-solver/main.c b/kpat/freecell-solver/main.c index 181039b6..4a47f300 100644 --- a/kpat/freecell-solver/main.c +++ b/kpat/freecell-solver/main.c @@ -169,8 +169,8 @@ help_screen_t help_screens[] = { "-snx --standard-notation-extended\n" " Display the moves in extended standard notation while specifying the\n" " number of cards moved if applicable\n" -"-pi --display-tqparent-iter \n" -" Display the index of the tqparent iteration of each state in the\n" +"-pi --display-parent-iter \n" +" Display the index of the parent iteration of each state in the\n" " run-time dump.\n" "\n" "--freecells-num [Freecells\' Number]\n" @@ -227,33 +227,33 @@ help_screen_t help_screens[] = { " '2' - put freecell cards on top of stacks.\n" " '3' - put non-top stack cards in the foundations.\n" " '4' - move stack cards to different stacks.\n" -" '5' - move stack cards to a tqparent card on the same stack.\n" +" '5' - move stack cards to a parent card on the same stack.\n" " '6' - move sequences of cards onto free stacks.\n" " '7' - put freecell cards on empty stacks.\n" -" '8' - move cards to a different tqparent.\n" +" '8' - move cards to a different parent.\n" " '9' - empty an entire stack into the freecells.\n" "\n" " Atomic Freecell Tests:\n" "\n" " 'A' - move a stack card to an empty stack.\n" -" 'B' - move a stack card to a tqparent on a different stack.\n" +" 'B' - move a stack card to a parent on a different stack.\n" " 'C' - move a stack card to a freecell.\n" -" 'D' - move a freecel card to a tqparent.\n" +" 'D' - move a freecel card to a parent.\n" " 'E' - move a freecel card to an empty stack.\n" "\n" " Simple Simon Tests:\n" "\n" " 'a' - move a full sequence to the foundations.\n" -" 'b' - move a sequence to a true tqparent of his.\n" -" 'c' - move a whole stack sequence to a false tqparent (in order to\n" +" 'b' - move a sequence to a true parent of his.\n" +" 'c' - move a whole stack sequence to a false parent (in order to\n" " clear the stack)\n" -" 'd' - move a sequence to a true tqparent that has some cards above it.\n" -" 'e' - move a sequence with some cards above it to a true tqparent.\n" -" 'f' - move a sequence with a junk sequence above it to a true tqparent\n" +" 'd' - move a sequence to a true parent that has some cards above it.\n" +" 'e' - move a sequence with some cards above it to a true parent.\n" +" 'f' - move a sequence with a junk sequence above it to a true parent\n" " that has some cards above it.\n" -" 'g' - move a whole stack sequence to a false tqparent which has some\n" +" 'g' - move a whole stack sequence to a false parent which has some\n" " cards above it.\n" -" 'h' - move a sequence to a tqparent on the same stack.\n" +" 'h' - move a sequence to a parent on the same stack.\n" "\n" " Tests are grouped with parenthesis or square brackets. Each group\n" " will be randomized as a whole by the random-dfs scan.\n" @@ -313,7 +313,7 @@ help_screen_t help_screens[] = { "\n" "\n" "--reparent-states\n" -" Retqparent states that have a larger depth than that of the state\n" +" Reparent states that have a larger depth than that of the state\n" " from which they were reached a posteriori.\n" "--calc-real-depth\n" " If --reparent-states is enabled, then explictly calculate the real\n" @@ -498,7 +498,7 @@ static int cmd_line_callback( dc->display_moves = 1; dc->display_states = 1; } - else if ((!strcmp(argv[arg], "-pi")) || (!strcmp(argv[arg], "--display-tqparent-iter"))) + else if ((!strcmp(argv[arg], "-pi")) || (!strcmp(argv[arg], "--display-parent-iter"))) { dc->display_parent_iter_num = 1; } @@ -588,7 +588,7 @@ static char * known_parameters[] = { "-sn", "--standard-notation", "-snx", "--standard-notation-extended", "-sam", "--display-states-and-moves", - "-pi", "--display-tqparent-iter", + "-pi", "--display-parent-iter", "--reset", NULL }; |