- Timestamp:
- 09/06/12 09:52:52 (12 years ago)
- Location:
- branches/HeuristicLab.Mono
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Mono
-
branches/HeuristicLab.Mono/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding (added) merged: 8476,8561
- Property svn:mergeinfo changed
-
branches/HeuristicLab.Mono/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Analyzers/SymbolicExpressionTreeLengthAnalyzer.cs
r7702 r8585 88 88 89 89 [StorableConstructor] 90 private SymbolicExpressionTreeLengthAnalyzer(bool deserializing) : base( ) { }90 private SymbolicExpressionTreeLengthAnalyzer(bool deserializing) : base(deserializing) { } 91 91 private SymbolicExpressionTreeLengthAnalyzer(SymbolicExpressionTreeLengthAnalyzer original, Cloner cloner) 92 92 : base(original, cloner) { -
branches/HeuristicLab.Mono/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/SymbolicExpressionGrammar.cs
r7733 r8585 181 181 182 182 #region IStatefulItem methods 183 void IStatefulItem.InitializeState() 184 { 183 void IStatefulItem.InitializeState() { 185 184 ReadOnly = false; 186 185 } … … 245 244 var groupSymbol = s as GroupSymbol; 246 245 if (groupSymbol != null) RegisterGroupSymbolEvents(groupSymbol); 247 else s ymbol.Changed += new EventHandler(Symbol_Changed);246 else s.Changed += new EventHandler(Symbol_Changed); 248 247 } 249 248 } … … 255 254 var groupSymbol = s as GroupSymbol; 256 255 if (groupSymbol != null) DeregisterGroupSymbolEvents(groupSymbol); 257 else s ymbol.Changed -= new EventHandler(Symbol_Changed);256 else s.Changed -= new EventHandler(Symbol_Changed); 258 257 } 259 258 }
Note: See TracChangeset
for help on using the changeset viewer.