Skip to content
Snippets Groups Projects
Commit c58b57d1 authored by crides's avatar crides
Browse files

simple parallel sim (async node)

parent 40320b93
No related branches found
No related tags found
2 merge requests!16Parallel,!21Arch2023 merged
......@@ -110,8 +110,6 @@ class AnalysisTree:
node_id = 0
while queue:
node = queue.pop(0)
print("NODE: ", node)
node.id = node_id
res.append(node)
node_id += 1
queue += node.child
......
This diff is collapsed.
......@@ -155,6 +155,7 @@ class ScenarioConfig:
unsafe_continue: bool = False
init_seg_length: int = 1000
reachability_method: str = 'DRYVR'
parallel_sim_ahead: int = 8
class Scenario:
def __init__(self, config=ScenarioConfig()):
......
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