FUNCTION convert_to_maths_function

(* SCHEMA FUNCTIONAL_DATA_AND_SCHEMATIC_REPRESENTATION_MIM_LF; *)
 
FUNCTION convert_to_maths_function(func : maths_function_select) : 
  maths_function;
LOCAL
  efenum : elementary_function_enumerators;
  mthfun : maths_function;
END_LOCAL;
  IF schema_prefix + 'MATHS_FUNCTION' IN TYPEOF(func) THEN
    mthfun := func;
  ELSE
    efenum := func;
    mthfun := make_elementary_function(efenum);
  END_IF;
  RETURN (mthfun);
END_FUNCTION;

Referenced By

Defintion convert_to_maths_function is references by the following definitions:
DefinitionType
 convert_to_operands_prcmfn FUNCTION
 function_applicability FUNCTION
 function_application ENTITY
 make_function_application FUNCTION
 parallel_composed_function_composability_check FUNCTION


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:17:33-04:00