Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/10 23:49:54 (14 years ago)
Author:
swagner
Message:

Renamed classes of HeuristicLab.Data (#909)

File:
1 edited

Legend:

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

    r3034 r3048  
    4141      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
    4242    }
    43     public ILookupParameter<DoubleArrayData> RealVectorParameter {
    44       get { return (ILookupParameter<DoubleArrayData>)Parameters["RealVector"]; }
     43    public ILookupParameter<DoubleArray> RealVectorParameter {
     44      get { return (ILookupParameter<DoubleArray>)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<DoubleArrayData>("RealVector", "The vector which should be manipulated."));
     50      Parameters.Add(new LookupParameter<DoubleArray>("RealVector", "The vector which should be manipulated."));
    5151    }
    5252
     
    5656    }
    5757
    58     protected abstract void Manipulate(IRandom random, DoubleArrayData realVector);
     58    protected abstract void Manipulate(IRandom random, DoubleArray realVector);
    5959  }
    6060}
Note: See TracChangeset for help on using the changeset viewer.