Changeset 15904
- Timestamp:
- 04/14/18 00:22:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/GQAPSolver/Program.cs
r15890 r15904 143 143 var prob = alg.Problem as GQAP; 144 144 if (prob == null) alg.Problem = prob = new GQAP(); 145 prob.Load(provider.LoadData(descriptors [opts.InstanceId-1]));145 prob.Load(provider.LoadData(descriptors.Single(x => x.Name == opts.ProblemInstance))); 146 146 alg.Start(); 147 147 avgBest += ((DoubleValue)alg.Results["BestQuality"].Value).Value;
Note: See TracChangeset
for help on using the changeset viewer.