Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/03/19 17:43:11 (5 years ago)
Author:
abeham
Message:

#2521: Refactored maximization property for multi-objective problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Data/3.3/StringConvertibleArray.cs

    r17253 r17309  
    2222#endregion
    2323
     24using System.Collections.Generic;
    2425using HEAL.Attic;
    2526using HeuristicLab.Common;
     
    3839    protected StringConvertibleArray(int length) : base(length) { }
    3940    protected StringConvertibleArray(T[] elements, bool @readonly = false) : base(elements, @readonly) { }
     41    protected StringConvertibleArray(IReadOnlyList<T> elements) : base(elements) { }
    4042
    4143    protected abstract bool Validate(string value, out string errorMessage);
Note: See TracChangeset for help on using the changeset viewer.