MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ LogicMode

enum class MayaFlux::Nodes::Generator::LogicMode : uint8_t
strong

Defines the computational model for digital signal evaluation.

Enumerator
DIRECT 

Stateless evaluation of current input only (combinational logic)

SEQUENTIAL 

State-based evaluation using history of inputs (sequential logic)

TEMPORAL 

Time-dependent evaluation with timing constraints.

MULTI_INPUT 

Parallel evaluation of multiple input signals.

Definition at line 11 of file Logic.hpp.

11 : uint8_t {
12 DIRECT, ///< Stateless evaluation of current input only (combinational logic)
13 SEQUENTIAL, ///< State-based evaluation using history of inputs (sequential logic)
14 TEMPORAL, ///< Time-dependent evaluation with timing constraints
15 MULTI_INPUT ///< Parallel evaluation of multiple input signals
16};
@ DIRECT
Stateless evaluation of current input only (combinational logic)
@ TEMPORAL
Time-dependent evaluation with timing constraints.
@ MULTI_INPUT
Parallel evaluation of multiple input signals.