Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/10 21:10:46 (14 years ago)
Author:
gkronber
Message:

Implemented reviewer comments. #893 (HeuristicLab 3.3.0 application review)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/DataAnalysisSolution.cs

    r3549 r3710  
    7878    public abstract IEnumerable<double> EstimatedTestValues { get; }
    7979
    80     protected DataAnalysisSolution() : base() { }
     80    protected DataAnalysisSolution() : base() {
     81      Name = ItemName;
     82      Description = ItemDescription;
     83    }
    8184    protected DataAnalysisSolution(DataAnalysisProblemData problemData) : this(problemData, double.NegativeInfinity, double.PositiveInfinity) { }
    8285    protected DataAnalysisSolution(DataAnalysisProblemData problemData, double lowerEstimationLimit, double upperEstimationLimit)
Note: See TracChangeset for help on using the changeset viewer.