Minor changes

This commit is contained in:
Loic Guegan 2022-09-11 07:57:31 +02:00
parent 4b3cc0aa4e
commit be1966b40f
2 changed files with 6 additions and 6 deletions

View file

@ -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)

View file

@ -18,4 +18,5 @@ interfaces:
- all 1Bps 10s
eth0:
type: "wired"
links: all 5Mbps 10s all
links:
- all 5Mbps 10s all