FUNCTION real_max

(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION real_max
      (spc : maths_space ) : REAL;
   LOCAL
      types : SET OF STRING := TYPEOF(spc);
   END_LOCAL;
      IF schema_prefix + 'FINITE_INTEGER_INTERVAL' IN types THEN
         RETURN (spc\finite_integer_interval.max);
      END_IF;
      IF schema_prefix + 'INTEGER_INTERVAL_TO_MAX' IN types THEN
         RETURN (spc\integer_interval_to_max.max);
      END_IF;
      IF schema_prefix + 'FINITE_REAL_INTERVAL' IN types THEN
         RETURN (spc\finite_real_interval.max);
      END_IF;
      IF schema_prefix + 'REAL_INTERVAL_TO_MAX' IN types THEN
         RETURN (spc\real_interval_to_max.max);
      END_IF;
      RETURN (?);
END_FUNCTION;

Referenced By

Defintion real_max is references by the following definitions:
DefinitionType
 compatible_intervals FUNCTION
 enclose_cregion_in_pregion FUNCTION
 enclose_pregion_in_cregion FUNCTION
 enclose_pregion_in_pregion FUNCTION
 equal_cregion_pregion FUNCTION
 subspace_of FUNCTION


[Top Level Definitions] [Exit]

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