Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/01/15 15:32:22 (9 years ago)
Author:
ascheibe
Message:

#2306

  • removed unused usings
  • renamed plugin.cs file
  • fixed prebuild event
  • fixed plugin dependencies
  • added license headers
  • updated assemblyinfo
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FitnessLandscapeAnalysis/HeuristicLab.Problems.NK/WeightInitializers/ExponentialDistributionWeightsInitializer.cs

    r7128 r12566  
    1 using System;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
     22using System;
    223using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
     24using HeuristicLab.Common;
    525using HeuristicLab.Core;
     26using HeuristicLab.Data;
     27using HeuristicLab.Parameters;
    628using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    7 using HeuristicLab.Common;
    8 using HeuristicLab.Parameters;
    9 using HeuristicLab.Data;
    1029
    1130namespace HeuristicLab.Problems.NK.WeightInitializers {
     
    1837    public ValueParameter<DoubleValue> LambdaParameter {
    1938      get { return (ValueParameter<DoubleValue>)Parameters["Lambda"]; }
    20     }   
     39    }
    2140
    2241    [StorableConstructor]
     
    2544      : base(original, cloner) {
    2645    }
    27     public ExponentialDistributionWeightsInitializer() {     
     46    public ExponentialDistributionWeightsInitializer() {
    2847      Parameters.Add(new ValueParameter<DoubleValue>("Lambda", "The rate paramter of the exponential distribution.", new DoubleValue(1.0)));
    2948    }
     
    4160    public IEnumerable<double> GetWeights(int nComponents) {
    4261      double lambda = LambdaParameter.Value.Value;
    43       for (int i = 0; i<nComponents; i++)
    44         yield return f(i, lambda);       
     62      for (int i = 0; i < nComponents; i++)
     63        yield return f(i, lambda);
    4564    }
    4665    #endregion
Note: See TracChangeset for help on using the changeset viewer.