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.IntVector/3.3/IntVectorManipulator.cs

    r3032 r3048  
    3737      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
    3838    }
    39     public ILookupParameter<IntArrayData> IntVectorParameter {
    40       get { return (ILookupParameter<IntArrayData>)Parameters["IntVector"]; }
     39    public ILookupParameter<IntArray> IntVectorParameter {
     40      get { return (ILookupParameter<IntArray>)Parameters["IntVector"]; }
    4141    }
    4242
     
    4444      : base() {
    4545      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic manipulation operators."));
    46       Parameters.Add(new LookupParameter<IntArrayData>("IntVector", "The vector which should be manipulated."));
     46      Parameters.Add(new LookupParameter<IntArray>("IntVector", "The vector which should be manipulated."));
    4747    }
    4848
     
    5252    }
    5353
    54     protected abstract void Manipulate(IRandom random, IntArrayData intVector);
     54    protected abstract void Manipulate(IRandom random, IntArray intVector);
    5555  }
    5656}
Note: See TracChangeset for help on using the changeset viewer.