Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Crossovers/SymbolicExpressionTreeCrossover.cs

    r3659 r4068  
    2020#endregion
    2121
    22 using HeuristicLab.Common;
     22using System;
    2323using HeuristicLab.Core;
    2424using HeuristicLab.Data;
    25 using HeuristicLab.Operators;
    26 using HeuristicLab.Optimization;
     25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces;
    2726using HeuristicLab.Parameters;
    2827using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using System;
    30 using System.Diagnostics;
    31 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces;
    3228
    3329namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Crossovers {
     
    8076      SymbolicExpressionTree result = Cross(random, parent0, parent1,
    8177        MaxTreeSizeParameter.ActualValue, MaxTreeHeightParameter.ActualValue, out success);
    82      
     78
    8379      if (!success) FailedCrossoverEvents.Value++;
    8480
     
    8783    }
    8884
    89     protected abstract SymbolicExpressionTree Cross(IRandom random, 
     85    protected abstract SymbolicExpressionTree Cross(IRandom random,
    9086      SymbolicExpressionTree parent0, SymbolicExpressionTree parent1,
    9187      IntValue maxTreeSize, IntValue maxTreeHeight, out bool success);
Note: See TracChangeset for help on using the changeset viewer.