| 62 | private: |
| 63 | |
| 64 | void init() |
| 65 | { |
| 66 | if (transform != NULL) return; |
| 67 | if (fileName.isEmpty()) fileName = QRegExp("^[_a-zA-Z0-9]+$").exactMatch(transformString) ? transformString : QtUtils::shortTextHash(transformString); |
| 68 | |
| 69 | if (!tryLoad()) |
| 70 | transform = make(transformString); |
| 71 | else |
| 72 | trainable = false; |
| 73 | } |
| 74 | |
| 75 | bool timeVarying() const |
| 76 | { |
nothing calls this directly
no test coverage detected