#region License Information /* HeuristicLab * Copyright (C) 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 HEAL.Attic; using HeuristicLab.Core; namespace HeuristicLab.Optimization { [StorableType("f9bb063d-383f-4d29-936e-ae4fa9ebc10f")] /// /// An interface which represents an operator for creating new solutions. /// public interface ISolutionCreator : IOperator { } [StorableType("76F17DA0-A81C-4E16-B591-38541D73C370")] public interface ISolutionCreator : ISolutionCreator where TEncodedSolution : class, IEncodedSolution { //ILookupParameter SolutionParameter { get; } // TODO: unify encoding specific parameters by defining ISolutionOperator and ISolutionsOperator } }