omni::graph::exec::unstable::detail::VisitOrder

Defined in omni/graph/exec/unstable/Traversal.h

enum class omni::graph::exec::unstable::detail::VisitOrder

Information returned to traversal callback indicating visit order.

Values:

enumerator eUnknown

Visit order is not specified.

enumerator eFirst

This is the first visit to a node during the traversal.

enumerator eNext

This is a next visit to a node, i.e. not a first one and not the last one.

enumerator eLast

This is the last visit to a node during the traversal.

enumerator eCycle

In case of cycles, when traversal enters node at the last visit, more visit can happen with cycle order.