本文整理匯總了Python中pyutilib.misc.Options.data_files方法的典型用法代碼示例。如果您正苦於以下問題:Python Options.data_files方法的具體用法?Python Options.data_files怎麽用?Python Options.data_files使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pyutilib.misc.Options
的用法示例。
在下文中一共展示了Options.data_files方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Options
# 需要導入模塊: from pyutilib.misc import Options [as 別名]
# 或者: from pyutilib.misc.Options import data_files [as 別名]
# Mimic the pyomo script
from pyomo.environ import *
from pyutilib.misc import Options
# set high level options that mimic pyomo comand line
options = Options()
options.model_file = 'DiseaseEstimation.py'
options.data_files = ['DiseaseEstimation.dat']
options.solver = 'ipopt'
options.solver_io = 'nl'
#options.keepfiles = True
#options.tee = True
# mimic the set of function calls done by pyomo command line
scripting.util.setup_environment(options)
# the following imports the model found in options.model_file,
# sets this to options.usermodel, and executes preprocessors
scripting.util.apply_preprocessing(options, parser=None)
# create the wrapper for the model, the data, the instance, and the options
model_data = scripting.util.create_model(options)
instance = model_data.instance
# solve
results, opt = scripting.util.apply_optimizer(options, instance)
# the following simply outputs the final time elapsed
scripting.util.finalize(options)
# load results into instance and print