Changeset 5333
- Timestamp:
- 01/19/11 16:22:50 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Classification/3.3/Symbolic/SymbolicClassificationProblem.cs
r5279 r5333 181 181 } 182 182 183 [StorableHook(HookType.AfterDeserialization)] 184 private void AfterDeserialization() { 185 RegisterParameterEvents(); 186 } 187 183 188 private void RegisterParameterEvents() { 184 189 SolutionCreator.SymbolicExpressionTreeParameter.ActualNameChanged += new EventHandler(SolutionCreator_SymbolicExpressionTreeParameter_ActualNameChanged); … … 217 222 218 223 private void FunctionTreeGrammarParameter_ValueChanged(object sender, System.EventArgs e) { 219 if (!(FunctionTreeGrammar is GlobalSymbolicExpressionGrammar)) 224 if (!(FunctionTreeGrammar is GlobalSymbolicExpressionGrammar)) { 220 225 FunctionTreeGrammar = new GlobalSymbolicExpressionGrammar(FunctionTreeGrammar); 226 } 221 227 OnGrammarChanged(); 222 228 } -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/HeuristicLab.Problems.DataAnalysis-3.3.csproj
r5288 r5333 108 108 </ItemGroup> 109 109 <ItemGroup> 110 <Compile Include="Symbolic\TypeCoherentExpressionGrammar.cs" /> 110 111 <Compile Include="Symbolic\Symbols\Power.cs" /> 111 112 <Compile Include="TableFileParser.cs" /> … … 256 257 </BootstrapperPackage> 257 258 </ItemGroup> 258 <ItemGroup> 259 <Folder Include="Operators\" /> 260 </ItemGroup> 259 <ItemGroup /> 261 260 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 262 261 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.