source:
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Simplifier/ISimplifier.cs
@
14744
Last change on this file since 14744 was 14727, checked in by pkimmesw, 8 years ago | |
---|---|
File size: 350 bytes |
Line | |
---|---|
1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Simplifier { |
2 | using System; |
3 | |
4 | using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions; |
5 | using HeuristicLab.Core; |
6 | |
7 | public interface ISimplifier { |
8 | ExecExpandExpression Simplify(ExecExpandExpression program, IRandom random, Predicate<ExecExpandExpression> isBetter); |
9 | } |
10 | } |
Note: See TracBrowser
for help on using the repository browser.