Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/16/15 21:27:10 (9 years ago)
Author:
abeham
Message:

#2451: merged r12837 to stable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stable/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorEncoding.cs

    r12009 r13190  
    124124        bounds[i, 1] = max[i];
    125125      }
    126       LengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length));
    127       BoundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds);
     126      lengthParameter = new FixedValueParameter<IntValue>(Name + ".Length", new IntValue(length));
     127      boundsParameter = new ValueParameter<DoubleMatrix>(Name + ".Bounds", bounds);
     128      Parameters.Add(lengthParameter);
     129      Parameters.Add(boundsParameter);
    128130
    129131      SolutionCreator = new UniformRandomRealVectorCreator();
Note: See TracChangeset for help on using the changeset viewer.