Last change
on this file since 12394 was
7128,
checked in by epitzer, 13 years ago
|
#1696 Integrate fitness landscape analysis plugins from Heureka! repository.
|
File size:
1.3 KB
|
Rev | Line | |
---|
[7128] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 | using HeuristicLab.Core;
|
---|
| 6 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 7 | using HeuristicLab.Common;
|
---|
| 8 |
|
---|
| 9 | namespace HeuristicLab.Problems.NK.WeightInitializers {
|
---|
| 10 |
|
---|
| 11 | [Item("ReverseExponentialWeightsInitializer", "Assigned exponentially decreasing weights.")]
|
---|
| 12 | public class ReverseExponentialWeightsInitializer : NamedItem, IWeightsInitializer {
|
---|
| 13 |
|
---|
| 14 | public override bool CanChangeName { get { return false; } }
|
---|
| 15 | public override bool CanChangeDescription { get { return false; } }
|
---|
| 16 |
|
---|
| 17 | [StorableConstructor]
|
---|
| 18 | protected ReverseExponentialWeightsInitializer(bool deserializing) : base(deserializing) { }
|
---|
| 19 | protected ReverseExponentialWeightsInitializer(ReverseExponentialWeightsInitializer original, Cloner cloner)
|
---|
| 20 | : base(original, cloner) {
|
---|
| 21 | }
|
---|
| 22 | public ReverseExponentialWeightsInitializer() {
|
---|
| 23 | name = ItemName;
|
---|
| 24 | description = ItemDescription;
|
---|
| 25 | }
|
---|
| 26 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 27 | return new ReverseExponentialWeightsInitializer(this, cloner);
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | #region IWeightsInitializer Members
|
---|
| 31 |
|
---|
| 32 | public IEnumerable<double> GetWeights(int nComponents) {
|
---|
| 33 | for (int i = nComponents-1; i>=0; i--)
|
---|
| 34 | yield return Math.Pow(2, i);
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | #endregion
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.