source:
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GrammaticalOptimization/ISolver.cs
@
13918
Last change on this file since 13918 was 12781, checked in by aballeit, 9 years ago | |
---|---|
File size: 263 bytes |
Line | |
---|---|
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.