[46] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using System;
|
---|
[44] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Operators {
|
---|
[46] | 29 | public class StochasticMultiBranch : OperatorBase {
|
---|
| 30 | public override string Description {
|
---|
| 31 | get { return @"TODO\r\nOperator description still missing ..."; }
|
---|
| 32 | }
|
---|
| 33 |
|
---|
| 34 | public StochasticMultiBranch()
|
---|
[44] | 35 | : base() {
|
---|
| 36 | AddVariableInfo(new VariableInfo("Probabilities", "The probabilities, that define how likely each suboperator/graph is executed. This array must sum to 1", typeof(DoubleArrayData), VariableKind.In));
|
---|
| 37 | AddVariableInfo(new VariableInfo("Random", "The pseudo random-generator, used for any random-decision.", typeof(IRandom), VariableKind.In));
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | public override IOperation Apply(IScope scope) {
|
---|
| 41 | IRandom random = GetVariableValue<IRandom>("Random", scope, true);
|
---|
| 42 | DoubleArrayData probabilities = GetVariableValue<DoubleArrayData>("Probabilities", scope, true);
|
---|
| 43 | if(probabilities.Data.Length != SubOperators.Count) {
|
---|
[46] | 44 | throw new InvalidOperationException("StochasticMultiBranch: The list of probabilities has to match the number of operators");
|
---|
[44] | 45 | }
|
---|
| 46 | double sum = 0;
|
---|
| 47 | foreach(double prob in probabilities.Data) {
|
---|
| 48 | sum+=prob;
|
---|
| 49 | }
|
---|
| 50 | double r = random.NextDouble()*sum;
|
---|
| 51 | sum = 0;
|
---|
| 52 | IOperator successor = null;
|
---|
| 53 | for(int i = 0; i < SubOperators.Count; i++) {
|
---|
| 54 | sum += probabilities.Data[i];
|
---|
| 55 | if(sum > r) {
|
---|
| 56 | successor = SubOperators[i];
|
---|
| 57 | break;
|
---|
| 58 | }
|
---|
| 59 | }
|
---|
| 60 | if(successor == null) {
|
---|
[46] | 61 | throw new InvalidOperationException("StochasticMultiBranch: There was a problem with the list of probabilities");
|
---|
[44] | 62 | }
|
---|
| 63 | return new AtomicOperation(successor, scope);
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|