Changeset 6387 for branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler
- Timestamp:
- 06/08/11 10:42:57 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP.Grammar.Editor/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/Compiler/SymbolicExpressionTreeCompiler.cs
r5809 r6387 62 62 foreach (var node in branch.IterateNodesPrefix()) { 63 63 Instruction instr = new Instruction(); 64 int subtreesCount = node.Subtree sCount;64 int subtreesCount = node.SubtreeCount; 65 65 if (subtreesCount > 255) throw new ArgumentException("Number of subtrees is too big (>255)"); 66 66 instr.nArguments = (byte)subtreesCount;
Note: See TracChangeset
for help on using the changeset viewer.