data.h.t 289 B

12345678910111213
  1. #ifndef LOCAL_DATA_H
  2. #define LOCAL_DATA_H
  3. #define HaveCount {haveCount}
  4. #define TestCount {testCount}
  5. #define NoneCount {noneCount}
  6. #define Features {features}
  7. static float Have[HaveCount][Features];
  8. static float Test[TestCount][Features];
  9. static float None[NoneCount][Features];
  10. #endif