Last change
on this file since 11977 was
11846,
checked in by gkronber, 10 years ago
|
#2283 implemented bridge to HL (solve grammatical optimization problem instances with StandardGP and OffspringSelectionGP)
|
File size:
369 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using System.Threading.Tasks;
|
---|
6 |
|
---|
7 | namespace 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.