Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Simplifier/ISimplifier.cs @ 14745

Last change on this file since 14745 was 14745, checked in by pkimmesw, 7 years ago

#2665 Merged ExecExpandExpression and PushProgram due to performance reasons, Tested managed object pooling

File size: 323 bytes
Line 
1namespace 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    PushProgram Simplify(PushProgram program, IRandom random, Predicate<PushProgram> isBetter);
9  }
10}
Note: See TracBrowser for help on using the repository browser.