[2] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Text;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Operators;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Logging {
|
---|
| 30 | public class QualityLogger : OperatorBase {
|
---|
| 31 | public override string Description {
|
---|
| 32 | get { return @"TODO\r\nOperator description still missing ..."; }
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | public QualityLogger()
|
---|
| 36 | : base() {
|
---|
| 37 | AddVariableInfo(new VariableInfo("Quality", "Quality value of a solution", typeof(DoubleData), VariableKind.In));
|
---|
| 38 | AddVariableInfo(new VariableInfo("QualityLog", "Log of best, average and worst quality values", typeof(Log), VariableKind.In | VariableKind.Out | VariableKind.New));
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | public override IOperation Apply(IScope scope) {
|
---|
| 42 | double[] qualities = new double[scope.SubScopes.Count];
|
---|
| 43 |
|
---|
| 44 | for (int i = 0; i < scope.SubScopes.Count; i++)
|
---|
[77] | 45 | qualities[i] = scope.SubScopes[i].GetVariableValue<DoubleData>("Quality", false).Data;
|
---|
[2] | 46 |
|
---|
| 47 | double min = qualities[0];
|
---|
| 48 | double max = qualities[0];
|
---|
| 49 | double average = qualities[0];
|
---|
| 50 | for (int i = 1; i < qualities.Length; i++) {
|
---|
| 51 | if (qualities[i] < min) min = qualities[i];
|
---|
| 52 | if (qualities[i] > max) max = qualities[i];
|
---|
| 53 | average += qualities[i];
|
---|
| 54 | }
|
---|
| 55 | average = average / qualities.Length;
|
---|
| 56 |
|
---|
| 57 | Log log = GetVariableValue<Log>("QualityLog", scope, false, false);
|
---|
| 58 | if (log == null) {
|
---|
| 59 | log = new Log(new ItemList());
|
---|
| 60 | IVariableInfo info = GetVariableInfo("QualityLog");
|
---|
| 61 | if (info.Local)
|
---|
| 62 | AddVariable(new Variable(info.ActualName, log));
|
---|
| 63 | else
|
---|
[77] | 64 | scope.AddVariable(new Variable(scope.TranslateName(info.FormalName), log));
|
---|
[2] | 65 | }
|
---|
| 66 | log.Items.Add(new DoubleArrayData(new double[] { min, average, max } ));
|
---|
| 67 |
|
---|
| 68 | return null;
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 | }
|
---|