The types of tables that a model may store.
| 78 | |
| 79 | /// The types of tables that a model may store. |
| 80 | enum TableType |
| 81 | { |
| 82 | Learned = 0, //!< Raw model data accumulated from samples. |
| 83 | Derived = 1, //!< Quantities dependent on learned data. |
| 84 | Test = 2 //!< Information summarizing a test of model fitness. |
| 85 | }; |
| 86 | |
| 87 | /** |
| 88 | * Given a numeric value (a TableType enumerant), return a human-presentable |
no outgoing calls
no test coverage detected