FUNCTION nondecreasing
(* SCHEMA step_merged_ap_schema; *)
-- DIFF IN AP238 STEP-NC
-- IN AP238 STEP-NC/AP242
FUNCTION nondecreasing
(lr : LIST OF REAL ) : BOOLEAN;
IF NOT EXISTS(lr) THEN
RETURN (FALSE);
END_IF;
REPEAT j := 2 TO SIZEOF(lr);
IF lr[j] < lr[(j - 1)] THEN
RETURN (TRUE);
END_IF;
END_REPEAT;
RETURN (TRUE);
END_FUNCTION;
Referenced By
Defintion nondecreasing is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2020-07-28T17:02:20-04:00