FUNCTION max_included
(* SCHEMA engineering_properties_schema; *)
FUNCTION max_included
(spc : maths_space ) : BOOLEAN;
LOCAL
types : SET OF STRING := TYPEOF(spc);
END_LOCAL;
IF (schema_prefix + 'FINITE_INTEGER_INTERVAL' IN types) OR (schema_prefix + 'INTEGER_INTERVAL_TO_MAX' IN types) THEN
RETURN (TRUE);
END_IF;
IF schema_prefix + 'FINITE_REAL_INTERVAL' IN types THEN
RETURN (bool(spc\finite_real_interval.max_closure = closed));
END_IF;
IF schema_prefix + 'REAL_INTERVAL_TO_MAX' IN types THEN
RETURN (bool(spc\real_interval_to_max.max_closure = closed));
END_IF;
RETURN (FALSE);
END_FUNCTION;
Referenced By
Defintion max_included is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2012-03-27T17:18:51-04:00