Skip to content
Snippets Groups Projects
Commit 4bef7d4f authored by Erik Nygren's avatar Erik Nygren
Browse files

removed debugging print

parent 0ff8a4b8
No related branches found
No related tags found
No related merge requests found
...@@ -551,7 +551,6 @@ class TreeObsForRailEnv(ObservationBuilder): ...@@ -551,7 +551,6 @@ class TreeObsForRailEnv(ObservationBuilder):
tree_data = tree[:4].tolist() tree_data = tree[:4].tolist()
distance_data = [tree[4]] distance_data = [tree[4]]
agent_data = tree[5:num_features_per_node].tolist() agent_data = tree[5:num_features_per_node].tolist()
print(agent_data)
for children in range(4): for children in range(4):
child_tree = tree[(num_features_per_node + children * child_size): child_tree = tree[(num_features_per_node + children * child_size):
(num_features_per_node + (children + 1) * child_size)] (num_features_per_node + (children + 1) * child_size)]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment