Originally posted by: SystemAdmin
Hello,
Is there a way to store parameter files that can be loaded quickly for an optimization instance? Currently, each time I run my code it takes quite some time to load the parameters. This is what my .dat file looks like:
SheetConnection sheet("Data.xlsx");
N from SheetRead(sheet,"n_names"); // "n_names" is a dynamically named range within the Excel file
// About 20 other sets and parameters are loaded similarly.
Is there a smarter way to store parameters? Perhaps another file type such as .csv is faster read from than .xls or .xlsx.
Any help would be greatly appreciated.
#DecisionOptimization#OPLusingCPLEXOptimizer