2023-01-23 17:04:54 +00:00
|
|
|
#!/bin/python3
|
|
|
|
|
|
|
|
class Shape:
|
2023-02-15 14:06:42 +00:00
|
|
|
"""This class represents a set of parameters for a specific simulation."""
|
2023-01-23 17:04:54 +00:00
|
|
|
|
2023-04-09 21:49:11 +00:00
|
|
|
def __init__(self, blockSize, numberNodes, failureModel, failureRate, class1ratio, chi, vpn1, vpn2, netDegree, bwUplinkProd, bwUplink1, bwUplink2, run):
|
2023-02-15 14:06:42 +00:00
|
|
|
"""Initializes the shape with the parameters passed in argument."""
|
2023-01-25 20:51:59 +00:00
|
|
|
self.run = run
|
2023-03-13 14:03:55 +00:00
|
|
|
self.numberNodes = numberNodes
|
2023-01-23 17:04:54 +00:00
|
|
|
self.blockSize = blockSize
|
2023-04-09 21:49:11 +00:00
|
|
|
self.failureModel = failureModel
|
2023-01-25 20:51:59 +00:00
|
|
|
self.failureRate = failureRate
|
2023-01-23 17:04:54 +00:00
|
|
|
self.netDegree = netDegree
|
2023-03-07 12:24:11 +00:00
|
|
|
self.class1ratio = class1ratio
|
2023-03-13 14:00:43 +00:00
|
|
|
self.chi = chi
|
|
|
|
self.vpn1 = vpn1
|
|
|
|
self.vpn2 = vpn2
|
2023-03-07 12:24:11 +00:00
|
|
|
self.bwUplinkProd = bwUplinkProd
|
|
|
|
self.bwUplink1 = bwUplink1
|
|
|
|
self.bwUplink2 = bwUplink2
|
2023-03-15 12:18:02 +00:00
|
|
|
self.randomSeed = ""
|
2023-01-23 17:04:54 +00:00
|
|
|
|
2023-03-15 11:37:23 +00:00
|
|
|
def __repr__(self):
|
|
|
|
"""Returns a printable representation of the shape"""
|
|
|
|
shastr = ""
|
|
|
|
shastr += "bs-"+str(self.blockSize)
|
2023-03-13 14:03:55 +00:00
|
|
|
shastr += "-nn-"+str(self.numberNodes)
|
2023-04-09 21:49:11 +00:00
|
|
|
shastr += "-fm-"+str(self.failureModel)
|
2023-03-15 11:37:23 +00:00
|
|
|
shastr += "-fr-"+str(self.failureRate)
|
2023-03-07 12:24:11 +00:00
|
|
|
shastr += "-c1r-"+str(self.class1ratio)
|
2023-03-13 14:00:43 +00:00
|
|
|
shastr += "-chi-"+str(self.chi)
|
|
|
|
shastr += "-vpn1-"+str(self.vpn1)
|
|
|
|
shastr += "-vpn2-"+str(self.vpn2)
|
2023-03-07 12:24:11 +00:00
|
|
|
shastr += "-bwupprod-"+str(self.bwUplinkProd)
|
|
|
|
shastr += "-bwup1-"+str(self.bwUplink1)
|
|
|
|
shastr += "-bwup2-"+str(self.bwUplink2)
|
2023-03-15 11:37:23 +00:00
|
|
|
shastr += "-nd-"+str(self.netDegree)
|
|
|
|
shastr += "-r-"+str(self.run)
|
2023-03-15 12:18:02 +00:00
|
|
|
return shastr
|
2023-01-23 17:04:54 +00:00
|
|
|
|
2023-03-15 12:18:02 +00:00
|
|
|
def setSeed(self, seed):
|
|
|
|
"""Adds the random seed to the shape"""
|
|
|
|
self.randomSeed = seed
|
2023-01-23 17:04:54 +00:00
|
|
|
|