! * \brief latest computing sequence from this graph * * Since new computing sequence would invalidate memory layout of older * ones and operators may have class-level states, only the last * computing sequence could be used * * \return current comp seq, or nullptr if no alive comp seq */
| 237 | * \return current comp seq, or nullptr if no alive comp seq |
| 238 | */ |
| 239 | AsyncExecutable* current_comp_seq() override { |
| 240 | return static_cast<AsyncExecutable*>(m_current_comp_seq); |
| 241 | } |
| 242 | |
| 243 | /*! |
| 244 | * \brief get current ExecEnv |
no outgoing calls
no test coverage detected