mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Minor changes
This commit is contained in:
parent
4b3cc0aa4e
commit
be1966b40f
2 changed files with 6 additions and 6 deletions
|
@ -98,11 +98,10 @@ class YAMLPlatformFile:
|
|||
self.parsing_error("Invalid interface type \""+interfaces[i]["type"]+"\"")
|
||||
is_wired=interfaces[i]["type"] == "wired"
|
||||
links=list()
|
||||
if type(interfaces[i]["links"]) == list:
|
||||
for link in interfaces[i]["links"]:
|
||||
links.append(self.parse_link(link))
|
||||
else:
|
||||
links.append(self.parse_link(interfaces[i]["links"]))
|
||||
if type(interfaces[i]["links"]) != list:
|
||||
self.parsing_error("Invalide type of links in interface "+i)
|
||||
for link in interfaces[i]["links"]:
|
||||
links.append(self.parse_link(link))
|
||||
##### Create network matrix
|
||||
BW=np.full((node_count,node_count),0)
|
||||
LAT=np.full((node_count,node_count),0)
|
||||
|
|
|
@ -18,4 +18,5 @@ interfaces:
|
|||
- all 1Bps 10s
|
||||
eth0:
|
||||
type: "wired"
|
||||
links: all 5Mbps 10s all
|
||||
links:
|
||||
- all 5Mbps 10s all
|
Loading…
Add table
Reference in a new issue