def __init__(self, config):
super(self.__class__, self).__init__()
self.dirs = config.dirs
self.files = config.files
self.parsing_dirs = config.dirs is not None
self.config = config
log_level = logging.getLevelName(config.debug.upper())
log.setLevel(log_level)
# mininet version stores a SeismicStatistics object to hold stats extracted from results
self.stats = None
# This will be set when parsing files to determine the type of experimental
# results file we're working with. Can be either 'mininet' or 'networkx'
self.experiment_type = None
评论列表
文章目录