Changeset 15334 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Stack/IPrintStack.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/Stack/IPrintStack.cs
r15289 r15334 1 1 namespace HeuristicLab.Problems.ProgramSynthesis.Push.Stack { 2 using System.Collections.Generic; 3 2 4 public interface IPrintStack : IPushStack { 5 bool IsCurrentLineEmpty { get; } 6 IReadOnlyList<string> Lines { get; } 7 3 8 void NewLine(); 4 9 void Push<T>(T item);
Note: See TracChangeset
for help on using the changeset viewer.