| 268 | } |
| 269 | |
| 270 | std::vector<std::pair<float, float>> GDMRModelObject::getMetadataRange() const |
| 271 | { |
| 272 | auto* inst = getInst<tomoto::IGDMRModel>(); |
| 273 | vector<float> vMin, vMax; |
| 274 | inst->getMdRange(vMin, vMax); |
| 275 | vector<pair<float, float>> ret; |
| 276 | for (size_t i = 0; i < vMin.size(); ++i) |
| 277 | { |
| 278 | ret.emplace_back(vMin[i], vMax[i]); |
| 279 | } |
| 280 | return ret; |
| 281 | } |
| 282 | |
| 283 | void GDMRModelObject::getTopicPrior() const |
| 284 | { |
nothing calls this directly
no test coverage detected