Changeset 15718 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms
- Timestamp:
- 02/04/18 21:06:14 (7 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/CPLEX/CplexSolver.cs
r15713 r15718 63 63 cplex.Use(new LogCallback(this, cancellationToken)); 64 64 cplex.SetParam(Cplex.DoubleParam.TiLim, MaximumRuntime.TotalSeconds); 65 cplex.SetParam(Cplex.IntParam.Threads, 1); 65 66 var dataSource = new GQAPDataSource(factory, Problem.ProblemInstance); 66 67 using (var settings = factory.CreateOplSettings(factory.CreateOplErrorHandler())) -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Infrastructure/Algorithms/ContextAlgorithm.cs
r15704 r15718 205 205 firstHitGraph.Values[firstHitGraph.Values.Count - 1] = Tuple.Create(elapsed.TotalSeconds, Context.BestQuality); 206 206 } 207 context = null; 207 208 // base call must be done last as the results will be cloned and a run is created 208 209 base.OnStopped();
Note: See TracChangeset
for help on using the changeset viewer.