Last change
on this file since 18086 was
17695,
checked in by abeham, 4 years ago
|
#2521:
- Moving solution creator parameter from problems to algorithms (breaking wiring in some HeuristicOptimizationProblems)
- Disallowing evaluator or encoding changes in encoding-specific base problems (to avoid confusion in derived problems whether this needs to be handled or not)
- Added private set to ReferenceParameter property (serialization)
|
File size:
1.3 KB
|
Rev | Line | |
---|
[5578] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17226] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5578] | 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;
|
---|
[17513] | 23 | using HEAL.Attic;
|
---|
[5578] | 24 | using HeuristicLab.Core;
|
---|
| 25 |
|
---|
| 26 | namespace HeuristicLab.Optimization {
|
---|
[16723] | 27 | [StorableType("51d66e7a-e4bd-429a-b6e5-1cfe9ce4364f")]
|
---|
[5578] | 28 | /// <summary>
|
---|
| 29 | /// Interface to represent a heuristic optimization problem.
|
---|
| 30 | /// </summary>
|
---|
[17513] | 31 | public interface IHeuristicOptimizationProblem : IEncodedProblem {
|
---|
[5578] | 32 | IParameter EvaluatorParameter { get; }
|
---|
| 33 | IEvaluator Evaluator { get; }
|
---|
| 34 |
|
---|
| 35 | event EventHandler EvaluatorChanged;
|
---|
| 36 | }
|
---|
| 37 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.