Search:
Roadmap
Tickets
Timeline
Browse Source
Login
API
Preferences
Home
News
Download
Features
Documentation
Support
Search
Context Navigation
←
Previous Changeset
Next Changeset
→
Changeset 14320
Timestamp:
10/03/16 00:18:24 (
8 years
ago)
Author:
pkimmesw
Message:
#2665
Added Interpreter, Parser, 16 Examples, Expressions needed for the examples
Location:
branches/PushGP/HeuristicLab.Algorithms.PushGP
Files:
98 added
.
(added)
.vs
(added)
.vs/HeuristicLab.Algorithms.PushGP
(added)
.vs/HeuristicLab.Algorithms.PushGP/v14
(added)
.vs/HeuristicLab.Algorithms.PushGP/v14/.suo
(added)
HeuristicLab.Algorithms.PushGP
(added)
HeuristicLab.Algorithms.PushGP.Cli
(added)
HeuristicLab.Algorithms.PushGP.Cli/App.config
(added)
HeuristicLab.Algorithms.PushGP.Cli/HeuristicLab.Algorithms.PushGP.Cli.csproj
(added)
HeuristicLab.Algorithms.PushGP.Cli/Program.cs
(added)
HeuristicLab.Algorithms.PushGP.Cli/Properties
(added)
HeuristicLab.Algorithms.PushGP.Cli/Properties/AssemblyInfo.cs
(added)
HeuristicLab.Algorithms.PushGP.sln
(added)
HeuristicLab.Algorithms.PushGP/Data
(added)
HeuristicLab.Algorithms.PushGP/Data/Configuration.cs
(added)
HeuristicLab.Algorithms.PushGP/Data/Expression.cs
(added)
HeuristicLab.Algorithms.PushGP/ExpressionCreatorTable.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanAndExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanDefineExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanOrExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanPopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Boolean/BooleanPushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeDefineExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeDoExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeIfExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeNoopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodePushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Code/CodeQuoteExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecDefineExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecDoRangeExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecExpandExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecIfExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecPopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecPushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Exec/ExecYExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Expression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatAddExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatDefineExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatDivideExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatEqualsExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatGreaterThanExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatMaxExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatMinExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatMultiplyExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatPopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatPushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatSmallerThanExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Float/FloatSubtractExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerAddExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerDefineExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerDivideExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerEqualsExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerGreaterThanExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerMaxExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerMinExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerMultiplyExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerPopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerPushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerSmallerThanExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Integer/IntegerSubtractExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Name
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Name/NameDefineXExecExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Name/NameDuplicateExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Name/NamePopExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Expressions/Name/NamePushExpression.cs
(added)
HeuristicLab.Algorithms.PushGP/Generator
(added)
HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP.csproj
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/BooleanInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/CodeInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/CommonInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/ExecInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/FloatInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/IntegerInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/InstructionSets/NameInstructionSet.cs
(added)
HeuristicLab.Algorithms.PushGP/Interpreter.cs
(added)
HeuristicLab.Algorithms.PushGP/OpCode.cs
(added)
HeuristicLab.Algorithms.PushGP/OpCodeExtensions.cs
(added)
HeuristicLab.Algorithms.PushGP/OperationTable.cs
(added)
HeuristicLab.Algorithms.PushGP/Parser.cs
(added)
HeuristicLab.Algorithms.PushGP/Properties
(added)
HeuristicLab.Algorithms.PushGP/Properties/AssemblyInfo.cs
(added)
HeuristicLab.Algorithms.PushGP/Stack
(added)
HeuristicLab.Algorithms.PushGP/Stack/IInterpreterService.cs
(added)
HeuristicLab.Algorithms.PushGP/Stack/IStack.cs
(added)
HeuristicLab.Algorithms.PushGP/Stack/PushGPStack.cs
(added)
HeuristicLab.Algorithms.PushGP/SymbolTable.cs
(added)
Note:
See
TracChangeset
for help on using the changeset viewer.
Download in other formats:
Unified Diff
Zip Archive