Search:
Roadmap
Tickets
Timeline
Browse Source
Login
API
Preferences
Home
News
Download
Features
Documentation
Support
Search
Context Navigation
←
Previous Change
Next Change
→
Changeset
14513
for
branches
Timestamp:
12/20/16 22:57:11 (
8 years
ago)
Author:
pkimmesw
Message:
#2665
Added Problem.ProgramSynthesis Project, Fixed Expression Issues, Fixed Code Generation
Location:
branches/PushGP/HeuristicLab.Algorithms.PushGP
Files:
29 added
6 deleted
66 edited
.vs/HeuristicLab.Algorithms.PushGP
(added)
.vs/HeuristicLab.Algorithms.PushGP/v14
(added)
.vs/PushGp/v14/.suo
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP.Cli/Program.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Data/ExpressionNode.cs
(deleted)
HeuristicLab.Algorithms.PushGP/Data/ExpressionTree.cs
(deleted)
HeuristicLab.Algorithms.PushGP/Data/Pool
(added)
HeuristicLab.Algorithms.PushGP/Data/Pool/IRecyclable.cs
(added)
HeuristicLab.Algorithms.PushGP/Data/Pool/ObjectPool.cs
(added)
HeuristicLab.Algorithms.PushGP/Data/Random
(added)
HeuristicLab.Algorithms.PushGP/Data/Random/RandomFactory.cs
(added)
HeuristicLab.Algorithms.PushGP/Data/Tree
(added)
HeuristicLab.Algorithms.PushGP/Data/Tree/ExpressionNode.cs
(added)
HeuristicLab.Algorithms.PushGP/Data/Tree/ExpressionTree.cs
(added)
HeuristicLab.Algorithms.PushGP/Exporter/Exporter.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/ExpressionTable.cs
(deleted)
HeuristicLab.Algorithms.PushGP/Expressions/BooleanExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/CodeExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/DefineExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/DoCountExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/DoRangeExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/DoTimesExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/DuplicateExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/ERCExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/EqualsExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/ExecExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/Expression.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/ExpressionTable.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/FloatExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/FlushExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/IntegerExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/LoopExpression.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/NameExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/PopExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/PushExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/PushResultExpression.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/RandExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/RotateExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/ShoveExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/StackdepthExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/StatefullExpression.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/StatelessExpression.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/SwapExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/YankDuplicateExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Expressions/YankExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Generators/BooleanGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Generators/CodeGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Generators/FloatGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Generators/IntegerGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Generators/NameGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP.csproj
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP.csproj.user
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Interpreter/Configuration.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Interpreter/IInterpreter.cs
(deleted)
HeuristicLab.Algorithms.PushGP/Interpreter/IPushGpInterpreter.cs
(added)
HeuristicLab.Algorithms.PushGP/Interpreter/PooledPushGpInterpreter.cs
(added)
HeuristicLab.Algorithms.PushGP/Interpreter/PushGPInterpreter.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Interpreter/PushGpInterpreterPool.cs
(added)
HeuristicLab.Algorithms.PushGP/Parser/Parser.cs
(deleted)
HeuristicLab.Algorithms.PushGP/Parser/PushGPParser.cs
(added)
HeuristicLab.Algorithms.PushGP/Properties/AssemblyInfo.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Simplifier/ISimplifier.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Simplifier/RandomSimplifier.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Stack/IStack.cs
(modified)
(
view diffs
)
HeuristicLab.Algorithms.PushGP/Stack/PushGPStack.cs
(modified)
(
view diffs
)
HeuristicLab.BenchmarkSuite/ArtificialDataDescriptor.cs
(modified)
(
view diffs
)
HeuristicLab.BenchmarkSuite/BenchmarkSuiteDataDescriptor.cs
(modified)
(
view diffs
)
HeuristicLab.BenchmarkSuite/Example.cs
(modified)
(
view diffs
)
HeuristicLab.BenchmarkSuite/HeuristicLab.BenchmarkSuite.csproj.user
(added)
HeuristicLab.BenchmarkSuite/Problems/CountOdds.cs
(modified)
(
view diffs
)
HeuristicLab.BenchmarkSuite/Properties/AssemblyInfo.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis
(added)
HeuristicLab.Problems.ProgramSynthesis/HeuristicLab.Problems.PushGP.csproj
(added)
HeuristicLab.Problems.ProgramSynthesis/HeuristicLab.Problems.PushGP.csproj.user
(added)
HeuristicLab.Problems.ProgramSynthesis/Plugin.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/ProgramSynthesis
(added)
HeuristicLab.Problems.ProgramSynthesis/ProgramSynthesis/PushEvalutator.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/ProgramSynthesis/PushProblem.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/ProgramSynthesis/PushProgram.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Properties
(added)
HeuristicLab.Problems.ProgramSynthesis/Properties/AssemblyInfo.cs
(added)
HeuristicLab.Tests/Benchmark/Example.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Benchmark/ExampleConverter.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Benchmark/Problem/CountOdds.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Benchmark/Problem/Problem.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/HeuristicLab.Tests.csproj
(modified)
(
view diffs
)
HeuristicLab.Tests/HeuristicLab.Tests.csproj.user
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/ExpressionTest.cs
(added)
HeuristicLab.Tests/Interpreter/Expressions/BooleanExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/CodeExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/CommonTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/ExampleTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/ExecExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/FloatExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/IntegerExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/NameExpressionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/StandardTests.cs
(added)
HeuristicLab.Tests/Interpreter/Generator
(added)
HeuristicLab.Tests/Interpreter/InterpreterTest.cs
(deleted)
HeuristicLab.Tests/Properties/AssemblyInfo.cs
(modified)
(
view diffs
)
PushGp.sln
(modified)
(
view diffs
)
Note:
See
TracChangeset
for help on using the changeset viewer.
Download in other formats:
Unified Diff
Zip Archive