Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/15 15:52:05 (9 years ago)
Author:
mkommend
Message:

#2174: Worked on operators and programmable problem base classes and scripts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/RealEncoding.cs

    r11598 r11739  
    9393    }
    9494
    95     public RealEncoding(string name, int length, double min, double max)
     95    public RealEncoding() : this("RealVector", 10) { }
     96    public RealEncoding(int length) : this("RealVector", length) { }
     97    public RealEncoding(string name, int length, double min = double.MinValue, double max = double.MaxValue)
    9698      : base(name) {
    9799      if (min >= max) throw new ArgumentException("min must be less than max", "min");
Note: See TracChangeset for help on using the changeset viewer.