Search:
Roadmap
Tickets
Timeline
Browse Source
Login
API
Preferences
Home
News
Download
Features
Documentation
Support
Search
Context Navigation
←
Previous Change
Next Change
→
Changeset
15189
for
branches
Timestamp:
07/10/17 21:36:03 (
7 years
ago)
Author:
pkimmesw
Message:
#2665
Fixed small issues, testet benchmark suite, added INX Expressions
Location:
branches/PushGP/HeuristicLab.PushGP
Files:
15 added
54 edited
.vs/PushGp/v14/.suo
(modified)
(
view diffs
)
FeatureTests/Program.cs
(modified)
(
view diffs
)
HL Files/Median.hl
(modified)
(
view diffs
)
HL Files/test.hl
(added)
HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/BenchmarkSuiteDataDescriptor.cs
(modified)
(
view diffs
)
HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/ProblemData.cs
(modified)
(
view diffs
)
HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/Checksum.cs
(modified)
(
view diffs
)
HeuristicLab.Problem.ProgramSynthesis.BenchmarkSuite/Problems/NumberIo.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/HeuristicLab.Problems.ProgramSynthesis.csproj
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Analyzer/PushExpressionFrequencyAnalyzer.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Configuration/PushConfigurationBase.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Constants/PushEnvironment.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Pool/IPooledObject.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Pool/ManagedPoolProvider.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Pool/ObjectPool.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Pool/PooledList.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Pool/PooledObject.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Data/Tree/TreeExtensions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/CharExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/Expression.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/ExpressionTable.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/InExpressions.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/PrintExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/PushProgram.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/StatefulExpression.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/StringExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorButLastExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorIterateExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorPushAllExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorRemoveExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorRestExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorReverseExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorSubExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/VectorTakeExpressions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Extensions/ProblemDataExtensions.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Extensions/StringBuilderExtensions.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Generators/CodeGenerator/CodeGeneratorUtils.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Generators/CodeGenerator/RecursiveCodeGenerator.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Individual
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Individual/IndividualExtensions.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Individual/InduvidualMapper.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/Extensions.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/IInternalPushInterpreter.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/IPushInterpreter.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PushInterpreter.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PushInterpreterPool.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools/StringBuilderPool.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Parser/PushParser.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/BenchmarkSuitePushSolutionView.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteEvaluator.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Problem/BenchmarkSuite/PushBenchmarkSuiteProblem.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Problem/PushProblem.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Selector/LexicaseSelector.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPrintStack.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPushStack.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/InterpreterStackStringifier.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/PrintStack.cs
(added)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/PushStack.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Stack/StackTypes.cs
(modified)
(
view diffs
)
HeuristicLab.Problems.ProgramSynthesis/Push/Views/ExpressionSelectionView.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Benchmark/SolutionTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Components
(added)
HeuristicLab.Tests/Components/PrintStackTests.cs
(added)
HeuristicLab.Tests/HeuristicLab.Tests.csproj
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Expressions/CommonTests.cs
(modified)
(
view diffs
)
HeuristicLab.Tests/Interpreter/Generator
(added)
HeuristicLab.Tests/Problem/IndividualMapperTests.cs
(modified)
(
view diffs
)
PushGp.sln.DotSettings.user
(modified)
(
view diffs
)
Note:
See
TracChangeset
for help on using the changeset viewer.
Download in other formats:
Unified Diff
Zip Archive