コード例 #1
0
def loadPlantAndOrderList(args):
	plantName = args[0]
	orderListName = args[1]
	configName = args[2]

	plant = Plant.fromXmlFile(plantFileExists(plantName))
	orderList = OrderList.fromXmlFile(orderListExists(orderListName), plant)
	configFile = configFileExists(configName)

	return plant, orderList, configFile
コード例 #2
0
ファイル: benchrun.py プロジェクト: fredmorcos/attic
def loadNewPlantAndOrderList(testNum):
    plantFilename, orderListFilename = benchmarkFileExists(testNum)
    plant = Plant.fromXmlFile(plantFilename)
    orderList = OrderList.fromXmlFile(orderListFilename, plant)
    return plant, orderList
コード例 #3
0
ファイル: plantmaker.py プロジェクト: fredmorcos/attic
def schedulerPerf(args):
	testNum = args[0]
	plantFilename, orderListFilename = benchmarkFileExists(testNum)
	plant = Plant.fromXmlFile(plantFilename)
	orderList = OrderList.fromXmlFile(orderListFilename, plant)
	Controller(plant, orderList).schedulerPerf(testNum)