ordered_children#

MeshingWorkflow.ordered_children(recompute=True)#

Get the ordered task list held by the workflow. Sorting is in terms of the workflow order and only includes the top-level tasks, while other tasks can be obtained by calling ordered_children() on a parent task. Consider the following workflow.

Given the workflow:

Workflow
├── A
├── B
│   ├── C
│   └── D
└── E

The ordered children of the workflow are A, B, E, while B has ordered children C and D.