173 |
""" |
""" |
174 |
self.__problems.append(problem) |
self.__problems.append(problem) |
175 |
|
|
176 |
def addOptions(self,Options): |
def addOptions(self,options): |
177 |
""" |
""" |
178 |
adds a options to the benchmark |
adds a options to the benchmark |
179 |
|
|
180 |
@param options: adds a new option to the bechmark |
@param options: adds a new option to the bechmark. If options==None they are are ignored |
181 |
@type problem: L{Options} |
@type problem: L{Options} |
182 |
""" |
""" |
183 |
self.__options.append(Options) |
if options!=None: self.__options.append(options) |
184 |
|
|
185 |
def run(self,scale=1): |
def run(self,scale=1): |
186 |
""" |
""" |