Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11846 was 11846, checked in by gkronber, 9 years ago

#2283 implemented bridge to HL (solve grammatical optimization problem instances with StandardGP and OffspringSelectionGP)

File size: 369 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Algorithms.GrammaticalOptimization {
8  public interface ISolver {
9    event Action<string, double> FoundNewBestSolution;
10    event Action<string, double> SolutionEvaluated;
11    void Run(int maxEvaluations);
12  }
13}
Note: See TracBrowser for help on using the repository browser.