Last change
on this file since 18242 was
17071,
checked in by mkommend, 5 years ago
|
#2958: Merged 16266, 16269, 16274, 16276, 16277, 16285, 16286, 16287, 16289, 16293, 16296, 16297, 16298, 16333, 16334 into stable.
|
File size:
348 bytes
|
Line | |
---|
1 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
2 | public struct BatchInstruction {
|
---|
3 | public byte opcode;
|
---|
4 | public ushort narg;
|
---|
5 | public int childIndex;
|
---|
6 |
|
---|
7 | public double value; // for constants
|
---|
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.