#region License Information /* HeuristicLab * Copyright (C) 2002-2008 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; using System.Collections.Generic; using System.Text; using HeuristicLab.Core; using HeuristicLab.Data; namespace HeuristicLab.Operators { public class DataCollector : OperatorBase { public override string Description { get { return @"TODO\r\nOperator description still missing ..."; } } public DataCollector() { IVariableInfo variableNamesVariableInfo = new VariableInfo("VariableNames", "Names of variables whose values should be collected", typeof(ItemList), VariableKind.In); variableNamesVariableInfo.Local = true; AddVariableInfo(variableNamesVariableInfo); ItemList variableNames = new ItemList(); AddVariable(new Variable("VariableNames", variableNames)); AddVariableInfo(new VariableInfo("Values", "Collected values", typeof(ItemList), VariableKind.New | VariableKind.In | VariableKind.Out)); } public override IOperation Apply(IScope scope) { ItemList names = GetVariableValue>("VariableNames", scope, false); ItemList values = GetVariableValue("Values", scope, false, false); if (values == null) { values = new ItemList(); IVariableInfo info = GetVariableInfo("Values"); if (info.Local) AddVariable(new Variable(info.ActualName, values)); else scope.AddVariable(new Variable(scope.TranslateName(info.FormalName), values)); } ItemList currentValues = new ItemList(); for (int i = 0; i < names.Count; i++) currentValues.Add((IItem)scope.GetVariableValue(names[i].Data, true).Clone()); values.Add(currentValues); return null; } } }