- Timestamp:
- 07/09/14 16:26:56 (10 years ago)
- Location:
- stable
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10859
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding merged: 10859
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler/LinearInstruction.cs
r9976 r11164 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 } -
stable/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler/SymbolicExpressionTreeLinearCompiler.cs
r9976 r11164 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.