- Timestamp:
- 05/19/14 13:33:29 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler/LinearInstruction.cs
r9828 r10859 25 25 public class LinearInstruction : Instruction { 26 26 public double value; 27 public bytechildIndex;27 public int childIndex; 28 28 public bool skip; 29 29 } -
trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler/SymbolicExpressionTreeLinearCompiler.cs
r9828 r10859 34 34 code[c + j] = new LinearInstruction { dynamicNode = s, nArguments = (byte)s.SubtreeCount, opCode = opCodeMapper(s) }; 35 35 } 36 code[i].childIndex = (byte)c;36 code[i].childIndex = c; 37 37 c += node.SubtreeCount; 38 38 ++i;
Note: See TracChangeset
for help on using the changeset viewer.