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/Compiler
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Compiler/Instruction.cs

    r3462 r4068  
    2020#endregion
    2121
    22 using System;
    23 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    24 using HeuristicLab.Common;
    25 using HeuristicLab.Core;
    26 using System.Collections.Generic;
    27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
    2922
    3023namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Compiler {
  • trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Compiler/SymbolicExpressionTreeCompiler.cs

    r4022 r4068  
    2121
    2222using System;
     23using System.Collections.Generic;
    2324using System.Linq;
    24 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    25 using HeuristicLab.Common;
    26 using HeuristicLab.Core;
    27 using System.Collections.Generic;
    28 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
    2925using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols;
    3026
     
    4036      foreach (var branch in tree.Root.SubTrees[0].SubTrees) {
    4137        code.AddRange(Compile(branch, opCodeMapper));
    42       }     
     38      }
    4339      // compile function branches
    4440      var functionBranches = from node in tree.IterateNodesPrefix()
Note: See TracChangeset for help on using the changeset viewer.