Free cookie consent management tool by TermsFeed Policy Generator

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

Renamed classes of HeuristicLab.Data (#909)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.Permutation/3.3/Creators/RandomPermutationCreator.cs

    r3034 r3048  
    4242      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
    4343    }
    44     public IValueLookupParameter<IntData> LengthParameter {
    45       get { return (IValueLookupParameter<IntData>)Parameters["Length"]; }
     44    public IValueLookupParameter<IntValue> LengthParameter {
     45      get { return (IValueLookupParameter<IntValue>)Parameters["Length"]; }
    4646    }
    4747    public ILookupParameter<Permutation> PermutationParameter {
     
    5252      : base() {
    5353      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used to initialize the new random permutation."));
    54       Parameters.Add(new ValueLookupParameter<IntData>("Length", "The length of the new random permutation."));
     54      Parameters.Add(new ValueLookupParameter<IntValue>("Length", "The length of the new random permutation."));
    5555      Parameters.Add(new LookupParameter<Permutation>("Permutation", "The new random permutation."));
    5656    }
Note: See TracChangeset for help on using the changeset viewer.