FUNCTION parallel_composed_function_domain_check

(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP238 STEP-NC
-- IN AP238 STEP-NC/AP242
FUNCTION parallel_composed_function_domain_check
      (comdom : tuple_space;
       funcs : LIST OF maths_function ) : BOOLEAN;
      REPEAT i := 1 TO SIZEOF(funcs);
         IF NOT compatible_spaces(comdom, funcs[i].domain) THEN
            RETURN (FALSE);
         END_IF;
      END_REPEAT;
      RETURN (FALSE);
END_FUNCTION;

Referenced By

Defintion parallel_composed_function_domain_check is references by the following definitions:
DefinitionType
 parallel_composed_function ENTITY


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2020-07-28T17:02:20-04:00