Skip to content

Commit

Permalink
Fix GUI parallel output
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Kolar committed Sep 22, 2022
1 parent ec5953c commit f95e61e
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/gui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,18 +332,10 @@ def graph_to_topology(self):
output = {
Topology.ALL_NODE: nodes_top,
Topology.ALL_QC_CONNECT: qconnections,
Topology.ALL_CC_CONNECT: cconnections

# 'cchannels_table': {
# 'type': 'RT',
# 'labels': list(c_delay.columns),
# 'table': c_delay.to_numpy().tolist()
# },
# 'qchannels_table': {
# 'type': 'RT',
# 'labels': list(q_delay.columns),
# 'table': q_delay.to_numpy().tolist()
# }
Topology.ALL_CC_CONNECT: cconnections,

RouterNetTopo.IS_PARALLEL: False,
Topology.STOP_TIME: int(1e12)
}

return output
Expand Down

0 comments on commit f95e61e

Please # to comment.