treelite
entry_type.h
1 const char* entry_type =
2 "package treelite.predictor;\n"
3 "\n"
4 "import javolution.io.Union;\n"
5 "\n"
6 "public class Entry extends Union {\n"
7 " public Signed32 missing = new Signed32();\n"
8 " public Float32 fvalue = new Float32();\n"
9 " public Signed32 qvalue = new Signed32();\n"
10 "}\n";