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)

Location:
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Crossovers
Files:
3 edited

Legend:

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

    r3997 r4068  
    2020#endregion
    2121
    22 using System.Collections.Generic;
    23 using HeuristicLab.Common;
    24 using HeuristicLab.Core;
    25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    26 using HeuristicLab.Data;
    27 using System.Linq;
    28 using System;
    29 using HeuristicLab.Parameters;
    30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
    3122
    3223namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Crossovers {
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Crossovers/SubtreeCrossover.cs

    r3998 r4068  
    2020#endregion
    2121
     22using System;
    2223using System.Collections.Generic;
    23 using HeuristicLab.Common;
     24using System.Linq;
    2425using HeuristicLab.Core;
     26using HeuristicLab.Data;
     27using HeuristicLab.Parameters;
    2528using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    26 using HeuristicLab.Data;
    27 using System.Linq;
    28 using System;
    29 using HeuristicLab.Parameters;
    30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
    3129
    3230namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Crossovers {
  • 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.