Last change
on this file since 14744 was
14733,
checked in by pkimmesw, 8 years ago
|
#2665 Storable problem data, Renamings due to typos, Removed GP from class names
|
File size:
546 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.Problems.ProgramSynthesis.Push.Creator {
|
---|
8 | using HeuristicLab.Core;
|
---|
9 | using HeuristicLab.Optimization;
|
---|
10 | using HeuristicLab.Problems.ProgramSynthesis.Push.Configuration;
|
---|
11 | using HeuristicLab.Problems.ProgramSynthesis.Push.Expressions;
|
---|
12 |
|
---|
13 | public interface IPushProgramCreator : ISolutionCreator
|
---|
14 | {
|
---|
15 | PushProgram CreateProgram(IRandom random, IReadonlyPushConfiguration config);
|
---|
16 | }
|
---|
17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.