Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GrammaticalOptimization/ISolver.cs @ 12781

Last change on this file since 12781 was 12781, checked in by aballeit, 9 years ago

#2283 stable GUI; ThreadPool for runs; improved TreeAnalysis

File size: 263 bytes
Line 
1using System;
2
3namespace 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.