Changeset 15615
- Timestamp:
- 01/15/18 09:37:50 (7 years ago)
- Location:
- branches/GeneralizedQAP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionRLDView.cs
r15605 r15615 1016 1016 let target = r.Parameters.ContainsKey("BestKnownQuality") 1017 1017 && r.Parameters["BestKnownQuality"] is DoubleValue 1018 && !double.IsNaN(((DoubleValue)r.Parameters["BestKnownQuality"]).Value) 1018 1019 ? ((DoubleValue)r.Parameters["BestKnownQuality"]).Value 1019 1020 : (r.Results.ContainsKey(table) && r.Results[table] is IndexedDataTable<double> -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary/ESGQAPSolution.cs
r15563 r15615 21 21 22 22 using HeuristicLab.Common; 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Data; 24 25 using HeuristicLab.Encodings.IntegerVectorEncoding; … … 26 27 27 28 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms.Evolutionary { 29 [StorableClass] 30 [Item("ES-specific GQAP Solution", "GQAP Solution that holds a strategy parameter")] 28 31 public class ESGQAPSolution : GQAPSolution { 29 32
Note: See TracChangeset
for help on using the changeset viewer.