| 49 | |
| 50 | |
| 51 | std::vector<float> HLDAModelObject::getAlpha() const |
| 52 | { |
| 53 | auto* inst = getInst<tomoto::IHLDAModel>(); |
| 54 | vector<float> ret; |
| 55 | for (size_t i = 0; i < inst->getLevelDepth(); ++i) |
| 56 | { |
| 57 | ret.emplace_back(inst->getAlpha(i)); |
| 58 | } |
| 59 | return ret; |
| 60 | } |
| 61 | |
| 62 | std::vector<int32_t> DocumentObject::getPath() const |
| 63 | { |
nothing calls this directly
no test coverage detected