blob: 96059c992242c456edb6c4aee8ad0feac462d5cd [file] [log] [blame]
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- - Author: Anthony Fernandes Pires
-- - Version: 0.1
-- - Date: 2014/09/10
------------------------------------------------------------------------------
-- - varout: the output variable
-- - then_term: the value if the condition at the entrance is true. Can be a constant or a variable.
-- - else_term: the value if the condition at the entrance is false. Can be a constant or a variable.
------------------------------------------------------------------------------
------------------------------------------------------------------------------
next(varout) = (CONDITION_AT_ENTRANCE ? next(then_term): next(else_term))