[][src]Type Definition legion_task::TaskGraph

type TaskGraph = Cons<Box<dyn TaskFactory + Send + Sync>>;

A node of the binary tree grammar that describes a task graph. Cons::Seq lists represent sequential execution of tasks. Cons::Fork lists represent concurrent execution of tasks. The leaves of the tree are Cons::Tasks.