source:
trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/BatchInstruction.cs
@
18220
Last change on this file since 18220 was 18132, checked in by gkronber, 3 years ago | |
---|---|
File size: 360 bytes |
Rev | Line | |
---|---|---|
[16285] | 1 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic { |
2 | public struct BatchInstruction { | |
3 | public byte opcode; | |
4 | public ushort narg; | |
5 | public int childIndex; | |
6 | ||
[18132] | 7 | public double value; // for numbers and constants |
[16285] | 8 | public double weight; // for variables |
9 | public double[] buf; | |
10 | public double[] data; // to hold dataset data | |
11 | } | |
12 | } |
Note: See TracBrowser
for help on using the repository browser.