Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/02/10 04:30:06 (14 years ago)
Author:
swagner
Message:

Worked on allele frequency analysis (#1234)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalyzer.cs

    r4648 r4704  
    5151      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
    5252    }
    53     public ValueParameter<BoolValue> StoreAlleleFrequenciesHistoryParameter {
    54       get { return (ValueParameter<BoolValue>)Parameters["StoreAlleleFrequenciesHistory"]; }
     53    public ValueParameter<BoolValue> StoreHistoryParameter {
     54      get { return (ValueParameter<BoolValue>)Parameters["StoreHistory"]; }
    5555    }
    5656    public ValueParameter<IntValue> UpdateIntervalParameter {
     
    6161    }
    6262
     63    [StorableConstructor]
     64    protected AlleleFrequencyAnalyzer(bool deserializing) : base(deserializing) { }
    6365    public AlleleFrequencyAnalyzer()
    6466      : base() {
     
    6870      Parameters.Add(new LookupParameter<T>("BestKnownSolution", "The best known solution."));
    6971      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the allele frequency analysis results should be stored."));
    70       Parameters.Add(new ValueParameter<BoolValue>("StoreAlleleFrequenciesHistory", "True if the history of all allele frequencies should be stored.", new BoolValue(false)));
     72      Parameters.Add(new ValueParameter<BoolValue>("StoreHistory", "True if the history of the allele frequency analysis should be stored.", new BoolValue(false)));
    7173      Parameters.Add(new ValueParameter<IntValue>("UpdateInterval", "The interval in which the allele frequency analysis should be applied.", new IntValue(1)));
    7274      Parameters.Add(new LookupParameter<IntValue>("UpdateCounter", "The value which counts how many times the operator was called since the last update.", "AlleleFrequencyAnalyzerUpdateCounter"));
     
    99101        ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
    100102        T bestKnownSolution = BestKnownSolutionParameter.ActualValue;
    101         bool storeHistory = StoreAlleleFrequenciesHistoryParameter.Value.Value;
     103        bool storeHistory = StoreHistoryParameter.Value.Value;
    102104
    103105        // calculate index of current best solution
Note: See TracChangeset for help on using the changeset viewer.