diff --git a/models/Application_examples/Tic_Tac_Toe.mp b/models/Application_examples/Tic_Tac_Toe.mp index 3c069d13b34270089999156e20f88d4d24a25335..237d85eff737ff39386f51330f3a57145fb0861d 100644 --- a/models/Application_examples/Tic_Tac_Toe.mp +++ b/models/Application_examples/Tic_Tac_Toe.mp @@ -46,7 +46,7 @@ │*│ └────────────────────────────────────────────────────┘ │ │*│ │ │*│ ┌─[ Search Terms ]───────────────────────────────────┠│ -│*│ │ tic-tac-toe, behavior; strategy; assertion checking│ │ +│*│ │ tic-tac-toe; behavior, strategy; assertion checking│ │ │*│ └────────────────────────────────────────────────────┘ │ │*│ │ │*│ ┌─[ Instructions ]───────────────────────────────────┠│ @@ -122,7 +122,7 @@ choosing_center_on_2nd_Move_and_any_corner_on_4th_move : /* fourth move - mistake */ O_chooses_any_corner /* fifth move */ X_blocks /* sixth move */ O_blocks - /* seventh move */ X_wins; + /* seventh move */ X_wins; /* No mistakes made by either player */ @@ -176,8 +176,8 @@ OD; COORDINATE $second_move: ( O_chooses_remnant_next_to_X_on_first_turn | - O_chooses_remnant_NOT_beside_an_X_on_first_turn | - O_chooses_corner | + O_chooses_remnant_NOT_beside_an_X_on_first_turn | + O_chooses_corner | O_chooses_center ) DO @@ -186,7 +186,7 @@ OD; COORDINATE $third_move: ( X_chooses_center | - X_chooses_any_corner | + X_chooses_any_corner | X_chooses_corner_opposite_previous_X ) DO