Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/10 10:46:59 (14 years ago)
Author:
svonolfe
Message:

Updated the RealVector project to use the new solution encodings (#909)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/RealVectorManipulator.cs

    r3053 r3060  
    4141      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
    4242    }
    43     public ILookupParameter<DoubleArray> RealVectorParameter {
    44       get { return (ILookupParameter<DoubleArray>)Parameters["RealVector"]; }
     43    public ILookupParameter<RealVector> RealVectorParameter {
     44      get { return (ILookupParameter<RealVector>)Parameters["RealVector"]; }
    4545    }
    4646
     
    4848      : base() {
    4949      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators."));
    50       Parameters.Add(new LookupParameter<DoubleArray>("RealVector", "The vector which should be manipulated."));
     50      Parameters.Add(new LookupParameter<RealVector>("RealVector", "The vector which should be manipulated."));
    5151    }
    5252
     
    5656    }
    5757
    58     protected abstract void Manipulate(IRandom random, DoubleArray realVector);
     58    protected abstract void Manipulate(IRandom random, RealVector realVector);
    5959  }
    6060}
Note: See TracChangeset for help on using the changeset viewer.