remove old config files
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
84e5482a6d
commit
0a5afd97de
|
@ -1,4 +1,3 @@
|
|||
from DAS.simulator import *
|
||||
from DAS.configuration import *
|
||||
from DAS.shape import *
|
||||
from DAS.visualizer import *
|
||||
|
|
|
@ -1,85 +0,0 @@
|
|||
#!/bin/python3
|
||||
|
||||
import configparser, logging, sys
|
||||
|
||||
class Configuration:
|
||||
"""This class stores all the configuration parameters for the given run."""
|
||||
|
||||
def __init__(self, fileName):
|
||||
"""It initializes the configuration based on the given configuration."""
|
||||
|
||||
config = configparser.RawConfigParser()
|
||||
config.read(fileName)
|
||||
|
||||
try:
|
||||
self.nvStart = int(config.get("Simulation Space", "numberValidatorStart"))
|
||||
self.nvStop = int(config.get("Simulation Space", "numberValidatorStop"))
|
||||
self.nvStep = int(config.get("Simulation Space", "numberValidatorStep"))
|
||||
|
||||
self.blockSizeStart = int(config.get("Simulation Space", "blockSizeStart"))
|
||||
self.blockSizeStop = int(config.get("Simulation Space", "blockSizeStop"))
|
||||
self.blockSizeStep = int(config.get("Simulation Space", "blockSizeStep"))
|
||||
|
||||
self.netDegreeStart = int(config.get("Simulation Space", "netDegreeStart"))
|
||||
self.netDegreeStop = int(config.get("Simulation Space", "netDegreeStop"))
|
||||
self.netDegreeStep = int(config.get("Simulation Space", "netDegreeStep"))
|
||||
|
||||
self.failureRateStart = int(config.get("Simulation Space", "failureRateStart"))
|
||||
self.failureRateStop = int(config.get("Simulation Space", "failureRateStop"))
|
||||
self.failureRateStep = int(config.get("Simulation Space", "failureRateStep"))
|
||||
|
||||
self.chiStart = int(config.get("Simulation Space", "chiStart"))
|
||||
self.chiStop = int(config.get("Simulation Space", "chiStop"))
|
||||
self.chiStep = int(config.get("Simulation Space", "chiStep"))
|
||||
except:
|
||||
sys.exit("Configuration Error: It seems some of the [Simulation Space] parameters are missing. Cannot continue :( ")
|
||||
|
||||
|
||||
|
||||
try:
|
||||
self.numberRuns = int(config.get("Advanced", "numberRuns"))
|
||||
self.deterministic = config.get("Advanced", "deterministic")
|
||||
self.dumpXML = config.get("Advanced", "dumpXML")
|
||||
self.logLevel = config.get("Advanced", "logLevel")
|
||||
self.visualization = config.get("Advanced", "visualization")
|
||||
except:
|
||||
sys.exit("Configuration Error: It seems some of the [Advanced] parameters are missing. Cannot continue :( ")
|
||||
self.test()
|
||||
|
||||
def test(self):
|
||||
|
||||
print("Testing configuration...")
|
||||
if self.logLevel == "INFO":
|
||||
self.logLevel = logging.INFO
|
||||
elif self.logLevel == "DEBUG":
|
||||
self.logLevel = logging.DEBUG
|
||||
else:
|
||||
self.logLevel = logging.INFO
|
||||
|
||||
if self.nvStart >= self.nvStop:
|
||||
sys.exit("Configuration Error: numberValidatorStart has to be smaller than numberValidatorStop")
|
||||
|
||||
if self.failureRateStart >= self.failureRateStop:
|
||||
sys.exit("Configuration Error: failureRateStart has to be smaller than failureRateStop")
|
||||
|
||||
if self.blockSizeStart >= self.blockSizeStop:
|
||||
sys.exit("Configuration Error: blockSizeStart has to be smaller than blockSizeStop")
|
||||
|
||||
if self.netDegreeStart >= self.netDegreeStop:
|
||||
sys.exit("Configuration Error: netDegreeStart has to be smaller than netDegreeStop")
|
||||
|
||||
if self.chiStart >= self.chiStop:
|
||||
sys.exit("Configuration Error: chiStart has to be smaller than chiStop")
|
||||
|
||||
|
||||
if self.nvStart < self.blockSizeStop:
|
||||
sys.exit("Configuration Error: numberValidatorStart hast to be larger than blockSizeStop.")
|
||||
|
||||
if self.chiStart < 2:
|
||||
sys.exit("Configuration Error: Chi has to be greater than 1.")
|
||||
|
||||
if self.chiStop > self.blockSizeStart:
|
||||
sys.exit("Configuration Error: Chi (%d) has to be smaller or equal to block the size (%d)" % (self.chiStop, self.blockSizeStart))
|
||||
|
||||
|
||||
|
30
config.ini
30
config.ini
|
@ -1,30 +0,0 @@
|
|||
[Simulation Space]
|
||||
|
||||
numberValidatorStart = 256
|
||||
numberValidatorStop = 512
|
||||
numberValidatorStep = 128
|
||||
|
||||
failureRateStart = 10
|
||||
failureRateStop = 90
|
||||
failureRateStep = 40
|
||||
|
||||
blockSizeStart = 32
|
||||
blockSizeStop = 64
|
||||
blockSizeStep = 16
|
||||
|
||||
netDegreeStart = 6
|
||||
netDegreeStop = 8
|
||||
netDegreeStep = 2
|
||||
|
||||
chiStart = 4
|
||||
chiStop = 8
|
||||
chiStep = 2
|
||||
|
||||
|
||||
[Advanced]
|
||||
|
||||
deterministic = 0
|
||||
numberRuns = 2
|
||||
dumpXML = 1
|
||||
visualization = 1
|
||||
logLevel = INFO
|
Loading…
Reference in New Issue