Skip to content

Commit

Permalink
change in doc string of world module.
Browse files Browse the repository at this point in the history
  • Loading branch information
srajan-kiyotaka committed Jun 19, 2024
1 parent 0702d46 commit 3af52d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/traverseCraft/world.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ class CreateTreeWorld:
- 'goals' (list): List of goal node IDs.
- 'adj' (dict): Adjacency list representing tree connections.
- 'position' (dict): Dictionary of node positions with node IDs as keys.
- 'edges' (dict, optional): Dictionary of edge information. Default is None.
- 'vals' (dict, optional): Dictionary of node values. Default is None.
- 'edges' (dict, optional): Dictionary of edge value. Default each edge is assigned a value of 1.
- 'vals' (dict, optional): Dictionary of node values. Default each node is assigned the value same as its ID.
- radius (int): The radius of the nodes in the world visualization. Default is 20.
- fontSize (int): The font size of the node labels. Default is 12.
- fontBold (bool): Whether to use bold font for the node labels. Default is True.
Expand Down Expand Up @@ -914,8 +914,8 @@ class CreateGraphWorld:
- 'goals' (list): List of goal node IDs.
- 'adj' (dict): Adjacency list representing graph connections.
- 'position' (dict): Dictionary of node positions with node IDs as keys.
- 'edges' (dict, optional): Dictionary of edge information. Default is None.
- 'vals' (dict, optional): Dictionary of node values. Default is None.
- 'edges' (dict, optional): Dictionary of edge value. Default each edge is assigned a value of 1.
- 'vals' (dict, optional): Dictionary of node values. Default each node is assigned the value same as its ID.
- radius (int): The radius of the nodes in the world visualization. Default is 20.
- fontSize (int): The font size of the node labels. Default is 12.
- fontBold (bool): Whether to use bold font for the node labels. Default is True.
Expand Down

0 comments on commit 3af52d6

Please sign in to comment.