Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.NK/3.3/WeightInitializers/ExponentialDistributionWeightsInitializer.cs @ 18047

Last change on this file since 18047 was 17180, checked in by swagner, 5 years ago

#2875: Removed years in copyrights

File size: 2.5 KB
RevLine 
[12566]1#region License Information
2/* HeuristicLab
[17180]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[12566]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;
[7128]23using System.Collections.Generic;
[12566]24using HeuristicLab.Common;
[7128]25using HeuristicLab.Core;
[12566]26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
[16565]28using HEAL.Attic;
[7128]29
[12582]30namespace HeuristicLab.Problems.NK {
[12569]31  [Item("ExponentialDistributionWeightsInitializer", "Assigns exponentially decreasing weights using the rate parameter lambda.")]
[16565]32  [StorableType("F67982B7-A94B-4876-977A-34DB44B40739")]
[12582]33  public sealed class ExponentialDistributionWeightsInitializer : ParameterizedNamedItem, IWeightsInitializer {
[12569]34    public IValueParameter<DoubleValue> LambdaParameter {
35      get { return (IValueParameter<DoubleValue>)Parameters["Lambda"]; }
[12566]36    }
[7128]37
38    [StorableConstructor]
[16565]39    private ExponentialDistributionWeightsInitializer(StorableConstructorFlag _) : base(_) { }
[12582]40    private ExponentialDistributionWeightsInitializer(ExponentialDistributionWeightsInitializer original, Cloner cloner)
[7128]41      : base(original, cloner) {
42    }
[12566]43    public ExponentialDistributionWeightsInitializer() {
[12569]44      Parameters.Add(new ValueParameter<DoubleValue>("Lambda", "The rate parameter of the exponential distribution.", new DoubleValue(1.0)));
[7128]45    }
46    public override IDeepCloneable Clone(Cloner cloner) {
47      return new ExponentialDistributionWeightsInitializer(this, cloner);
48    }
49
[12582]50    private static double f(double x, double lambda) {
[12569]51      if (x < 0.0)
52        return 0.0;
[7128]53      return lambda * Math.Exp(-lambda * x);
54    }
55
56    public IEnumerable<double> GetWeights(int nComponents) {
57      double lambda = LambdaParameter.Value.Value;
[12566]58      for (int i = 0; i < nComponents; i++)
59        yield return f(i, lambda);
[7128]60    }
61  }
62}
Note: See TracBrowser for help on using the repository browser.