Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5333


Ignore:
Timestamp:
01/19/11 16:22:50 (14 years ago)
Author:
gkronber
Message:

Implemented type coherent grammar. #1387

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  
    181181    }
    182182
     183    [StorableHook(HookType.AfterDeserialization)]
     184    private void AfterDeserialization() {
     185      RegisterParameterEvents();
     186    }
     187
    183188    private void RegisterParameterEvents() {
    184189      SolutionCreator.SymbolicExpressionTreeParameter.ActualNameChanged += new EventHandler(SolutionCreator_SymbolicExpressionTreeParameter_ActualNameChanged);
     
    217222
    218223    private void FunctionTreeGrammarParameter_ValueChanged(object sender, System.EventArgs e) {
    219       if (!(FunctionTreeGrammar is GlobalSymbolicExpressionGrammar))
     224      if (!(FunctionTreeGrammar is GlobalSymbolicExpressionGrammar)) {
    220225        FunctionTreeGrammar = new GlobalSymbolicExpressionGrammar(FunctionTreeGrammar);
     226      }
    221227      OnGrammarChanged();
    222228    }
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/HeuristicLab.Problems.DataAnalysis-3.3.csproj

    r5288 r5333  
    108108  </ItemGroup>
    109109  <ItemGroup>
     110    <Compile Include="Symbolic\TypeCoherentExpressionGrammar.cs" />
    110111    <Compile Include="Symbolic\Symbols\Power.cs" />
    111112    <Compile Include="TableFileParser.cs" />
     
    256257    </BootstrapperPackage>
    257258  </ItemGroup>
    258   <ItemGroup>
    259     <Folder Include="Operators\" />
    260   </ItemGroup>
     259  <ItemGroup />
    261260  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    262261  <!-- 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.