Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/18 09:37:50 (7 years ago)
Author:
abeham
Message:

#1614:

  • fixed a bug in the run collection RLD view when BestKnownQuality is set to double.NaN
  • fixed a bug in evolution strategy's solution not being a storable class
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionRLDView.cs

    r15605 r15615  
    10161016              let target = r.Parameters.ContainsKey("BestKnownQuality")
    10171017                           && r.Parameters["BestKnownQuality"] is DoubleValue
     1018                           && !double.IsNaN(((DoubleValue)r.Parameters["BestKnownQuality"]).Value)
    10181019                ? ((DoubleValue)r.Parameters["BestKnownQuality"]).Value
    10191020                : (r.Results.ContainsKey(table) && r.Results[table] is IndexedDataTable<double>
Note: See TracChangeset for help on using the changeset viewer.