Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/18/11 15:34:41 (13 years ago)
Author:
mkommend
Message:

#1418: Fixed all compilation errors and reformatted some files.

Location:
branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj

    r5510 r5519  
    126126    <Compile Include="Interfaces\Operators\ISymbolicExpressionTreeArchitectureAlteringOperator.cs" />
    127127    <Compile Include="Interfaces\Operators\ISymbolicExpressionTreeGrammarBasedOperator.cs" />
    128     <Compile Include="SymbolicExpressionTreeSizeConstraintOperator.cs" />
    129128    <Compile Include="Creators\SymbolicExpressionTreeCreator.cs" />
    130129    <Compile Include="Crossovers\CrossoverPoint.cs" />
  • branches/DataAnalysis Refactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Interfaces/ISymbolicExpressionTreeGrammar.cs

    r5499 r5519  
    2525namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
    2626  public interface ISymbolicExpressionTreeGrammar : IItem {
     27    IEnumerable<ISymbol> Symbols { get; }
    2728    ISymbol StartSymbol { get; }
    2829    void AddSymbol(ISymbol symbol);
    2930    void RemoveSymbol(ISymbol symbol);
    30     IEnumerable<ISymbol> Symbols { get; }
     31
    3132    bool ContainsSymbol(ISymbol symbol);
    3233    void SetAllowedChild(ISymbol parent, ISymbol child, int argumentIndex);
    3334    bool IsAllowedChild(ISymbol parent, ISymbol child, int argumentIndex);
     35
    3436    int GetMinExpressionLength(ISymbol start);
    3537    int GetMaxExpressionLength(ISymbol start);
    3638    int GetMinExpressionDepth(ISymbol start);
     39
    3740    int GetMinSubtreeCount(ISymbol symbol);
    3841    void SetMinSubtreeCount(ISymbol symbol, int value);
Note: See TracChangeset for help on using the changeset viewer.