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/IntVectorCrossover.cs

    r3032 r3048  
    3737      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
    3838    }
    39     public ILookupParameter<ItemArray<IntArrayData>> ParentsParameter {
    40       get { return (SubScopesLookupParameter<IntArrayData>)Parameters["Parents"]; }
     39    public ILookupParameter<ItemArray<IntArray>> ParentsParameter {
     40      get { return (SubScopesLookupParameter<IntArray>)Parameters["Parents"]; }
    4141    }
    42     public ILookupParameter<IntArrayData> ChildParameter {
    43       get { return (ILookupParameter<IntArrayData>)Parameters["Child"]; }
     42    public ILookupParameter<IntArray> ChildParameter {
     43      get { return (ILookupParameter<IntArray>)Parameters["Child"]; }
    4444    }
    4545
     
    4747      : base() {
    4848      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
    49       Parameters.Add(new SubScopesLookupParameter<IntArrayData>("Parents", "The parent vectors which should be crossed."));
    50       Parameters.Add(new LookupParameter<IntArrayData>("Child", "The child vector resulting from the crossover."));
     49      Parameters.Add(new SubScopesLookupParameter<IntArray>("Parents", "The parent vectors which should be crossed."));
     50      Parameters.Add(new LookupParameter<IntArray>("Child", "The child vector resulting from the crossover."));
    5151    }
    5252
     
    5656    }
    5757
    58     protected abstract IntArrayData Cross(IRandom random, ItemArray<IntArrayData> parents);
     58    protected abstract IntArray Cross(IRandom random, ItemArray<IntArray> parents);
    5959  }
    6060}
Note: See TracChangeset for help on using the changeset viewer.