Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/EqualsExpressions.cs
- Timestamp:
- 08/21/17 11:33:53 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
- Property svn:ignore
-
old new 1 1 *.user 2 packages 3 TestResults
-
- Property svn:ignore
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Expressions/EqualsExpressions.cs
r15032 r15334 83 83 StackTypes.Boolean, 84 84 "BOOLEAN.=", 85 "Pushes TRUE onto the BOOLEAN stack if the top two BOOLEAN items are equal, or FALSE otherwise.", 86 StackTypes.Boolean)] 85 "Pushes TRUE onto the BOOLEAN stack if the top two BOOLEAN items are equal, or FALSE otherwise.")] 87 86 public class BooleanEqualsExpression : EqualsExpression<bool> { 88 87 public BooleanEqualsExpression() { } … … 125 124 "Pushes TRUE onto the BOOLEAN stack if the top two EXEC items are equal, or FALSE otherwise.", 126 125 StackTypes.Boolean, 127 execIn: 0)]126 requiredBlockCount: 0)] 128 127 public class ExecEqualsExpression : EqualsExpression<Expression> { 129 128 public ExecEqualsExpression() { }
Note: See TracChangeset
for help on using the changeset viewer.