Skip to content

Commit

Permalink
Made punctuation consistent between descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
fpiedrah committed Oct 12, 2024
1 parent da1f8fb commit f73a48e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dataset_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,7 +1401,7 @@ def mutate(string: str) -> str:
)

return (
f"You have {n_waypoints} waypoints arranged in a line."
f"You have {n_waypoints} waypoints arranged in a line. "
+ f"The {rover_string} "
+ f"The {lander_string} "
+ "All waypoints are visible from adjacent waypoints, and from itself. "
Expand Down Expand Up @@ -1439,8 +1439,8 @@ def mutate(string: str) -> str:
f"You have {n_waypoints} waypoints arranged in a star shape, with a single central waypoint and the remaining waypoints forming an outer circle around the central waypoint. "
+ f"The {rover_string} "
+ f"The {lander_string} "
+ "All waypoints are visible from the central waypoint and vice versa, and all waypoints are visible from themselves."
+ "The rover can move freely between the central waypoint and any of the outer waypoints, but movement from the outer waypoints is only possible to the central waypoint."
+ "All waypoints are visible from the central waypoint and vice versa, and all waypoints are visible from themselves. "
+ "The rover can move freely between the central waypoint and any of the outer waypoints, but movement from the outer waypoints is only possible to the central waypoint. "
)

case ("partitioned_navigate", True):
Expand Down Expand Up @@ -1508,8 +1508,8 @@ def mutate(string: str) -> str:
+ f"The {lander_string} "
+ "All waypoints are visible from adjacent waypoints, and from itself. "
+ "The rover can traverse between adjacent waypoints. "
+ "The rover is available and the channel is free."
+ f"{objective_string}"
+ "The rover is available and the channel is free. "
+ f"{objective_string} "
+ f"{rock_string} "
+ f"{soil_string}"
)
Expand Down Expand Up @@ -1557,7 +1557,7 @@ def mutate(string: str) -> str:
+ "All waypoints are visible from adjacent waypoints, and from itself. "
+ "The rover can move between adjacent waypoints to its left or right. "
+ "The rover is available and the channel is free. "
+ f"{objective_string}"
+ f"{objective_string} "
+ f"{rock_string} "
+ f"{soil_string}"
)
Expand Down Expand Up @@ -1650,8 +1650,8 @@ def mutate(string: str) -> str:
+ f"The {rover_string} "
+ f"{rover_equipment} "
+ f"The {lander_string} "
+ "All waypoints are visible from the central waypoint and vice versa, and all waypoints are visible from themselves."
+ "The rover can move freely between the central waypoint and any of the outer waypoints, but movement from the outer waypoints is only possible to the central waypoint."
+ "All waypoints are visible from the central waypoint and vice versa, and all waypoints are visible from themselves. "
+ "The rover can move freely between the central waypoint and any of the outer waypoints, but movement from the outer waypoints is only possible to the central waypoint. "
+ f"{objective_string} "
+ f"{rock_string} "
+ f"{soil_string}"
Expand Down

0 comments on commit f73a48e

Please sign in to comment.