source:
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GrammaticalOptimization/ISolver.cs
@
12966
Last change on this file since 12966 was 12781, checked in by aballeit, 9 years ago | |
---|---|
File size: 263 bytes |
Rev | Line | |
---|---|---|
[11846] | 1 | using System; |
2 | ||
3 | namespace HeuristicLab.Algorithms.GrammaticalOptimization { | |
4 | public interface ISolver { | |
5 | event Action<string, double> FoundNewBestSolution; | |
6 | event Action<string, double> SolutionEvaluated; | |
7 | void Run(int maxEvaluations); | |
8 | } | |
9 | } |
Note: See TracBrowser
for help on using the repository browser.