ePurityStatus#
Fully qualified name: omni::graph::core::ePurityStatus
- 
enum class omni::graph::core::ePurityStatus#
- The purity of the node implementation. For some context, a “pure” node is one whose initialize, compute, and release methods are entirely deterministic, i.e. they will always produce the same output attribute values for a given set of input attribute values, and do not access, rely on, or otherwise mutate data external to the node’s scope. - Values: - 
enumerator eImpure#
- Node is assumed to not be pure. 
 - 
enumerator ePure#
- Node can be considered pure if explicitly specified by the node author. 
 
- 
enumerator eImpure#