Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1837_Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/BatchInstruction.cs @ 17687

Last change on this file since 17687 was 17687, checked in by fbaching, 4 years ago

#1837: merged changes from trunk

  • apply changes from Attic release to all SlidingWindow specific code files (replace StorableClass with StorableType)
File size: 348 bytes
Line 
1namespace 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.