Public method to check completion status of dependency tree Returns ------- bool Whether the calculation dependencies are satisfied
(self)
| 229 | return self._model_uuid |
| 230 | |
| 231 | def calculation_completed(self): |
| 232 | """Public method to check completion status of dependency tree |
| 233 | |
| 234 | Returns |
| 235 | ------- |
| 236 | bool |
| 237 | Whether the calculation dependencies are satisfied |
| 238 | |
| 239 | """ |
| 240 | status = self._tree.calculation_completed() |
| 241 | return status |
| 242 | |
| 243 | ########################################################################## |
| 244 | # Input methods |
no outgoing calls