Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Operators/3.3/StochasticBranch.cs @ 2790

Last change on this file since 2790 was 2790, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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;
23using System.Collections.Generic;
24using System.Text;
25using System.Xml;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Operators {
32  /// <summary>
33  /// A branch of two operators which are executed with a specified probability.
34  /// </summary>
35  [Item("StochasticBranch", "A branch of two operators which are executed with a specified probability.")]
36  [Creatable("Test")]
37  [EmptyStorableClass]
38  public class StochasticBranch : SingleSuccessorOperator {
39    public LookupParameter<IRandom> RandomParameter {
40      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
41    }
42    public ValueLookupParameter<DoubleData> ProbabilityParameter {
43      get { return (ValueLookupParameter<DoubleData>)Parameters["Probability"]; }
44    }
45    protected OperatorParameter FirstBranchParameter {
46      get { return (OperatorParameter)Parameters["FirstBranch"]; }
47    }
48    protected OperatorParameter SecondBranchParameter {
49      get { return (OperatorParameter)Parameters["SecondBranch"]; }
50    }
51    public IOperator FirstBranch {
52      get { return FirstBranchParameter.Value; }
53      set { FirstBranchParameter.Value = value; }
54    }
55    public IOperator SecondBranch {
56      get { return SecondBranchParameter.Value; }
57      set { SecondBranchParameter.Value = value; }
58    }
59
60    public StochasticBranch()
61      : base() {
62      Parameters.Add(new LookupParameter<IRandom>("Random", "A pseudo random number generator."));
63      Parameters.Add(new ValueLookupParameter<DoubleData>("Probability", "The probability to execute the first branch."));
64      Parameters.Add(new OperatorParameter("FirstBranch", "The operator which is executed with the given probability."));
65      Parameters.Add(new OperatorParameter("SecondBranch", "The operator which is executed if the first branch is not executed."));
66    }
67
68    public override IExecutionSequence Apply() {
69      ExecutionContextCollection next = new ExecutionContextCollection(base.Apply());
70      if (RandomParameter.ActualValue.NextDouble() < ProbabilityParameter.ActualValue.Value) {
71        if (FirstBranch != null) next.Insert(0, new ExecutionContext(ExecutionContext.Parent, FirstBranch, ExecutionContext.Scope));
72      } else {
73        if (SecondBranch != null) next.Insert(0, new ExecutionContext(ExecutionContext.Parent, SecondBranch, ExecutionContext.Scope));
74      }
75      return next;
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.