Changeset 6760 for branches/PersistenceSpeedUp/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionGrammar.cs
- Timestamp:
- 09/14/11 13:59:25 (13 years ago)
- Location:
- branches/PersistenceSpeedUp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp
- Property svn:ignore
-
old new 12 12 *.psess 13 13 *.vsp 14 *.docstates
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/PersistenceSpeedUp/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionGrammar.cs
r5809 r6760 21 21 22 22 23 using System; 24 using HeuristicLab.Core; 23 25 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding { 24 public interface ISymbolicExpressionGrammar : ISymbolicExpressionGrammarBase {26 public interface ISymbolicExpressionGrammar : ISymbolicExpressionGrammarBase, IStatefulItem { 25 27 ISymbol ProgramRootSymbol { get; } 26 28 ISymbol StartSymbol { get; } … … 30 32 int MinimumFunctionArguments { get; set; } 31 33 int MaximumFunctionArguments { get; set; } 34 35 bool ReadOnly { get; set; } 36 event EventHandler ReadOnlyChanged; 32 37 } 33 38 }
Note: See TracChangeset
for help on using the changeset viewer.