- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- 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 20 20 #endregion 21 21 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;29 22 30 23 namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Compiler { -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Compiler/SymbolicExpressionTreeCompiler.cs
r4022 r4068 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 using 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;29 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbols; 30 26 … … 40 36 foreach (var branch in tree.Root.SubTrees[0].SubTrees) { 41 37 code.AddRange(Compile(branch, opCodeMapper)); 42 } 38 } 43 39 // compile function branches 44 40 var functionBranches = from node in tree.IterateNodesPrefix()
Note: See TracChangeset
for help on using the changeset viewer.