[][src]Module dinotree::par

Contains code to write generic code that can be run in parallel, or sequentially. Not intended to be used directly by the user. Used by algorithms that operate on the tree.

Structs

Parallel

Indicates that an algorithm should run in parallel up until the specified depth.

Sequential

Indicates that an algorithm should run sequentially. Once we transition to sequential, we always want to recurse sequentially.

Traits

Joiner

Indicates if we are low enough into the tree that we should switch to a sequential version of the algorithm.