FUNCTION extract_factors
(* SCHEMA step_merged_ap_schema; *)
-- IN AP238 STEP-NC/AP242
FUNCTION extract_factors
(tspace : tuple_space;
m : INTEGER;
n : INTEGER ) : tuple_space;
LOCAL
tsp : tuple_space := the_zero_tuple_space;
END_LOCAL;
REPEAT i := m TO n;
tsp := assoc_product_space(tsp, factor_space(tspace, i));
END_REPEAT;
RETURN (tsp);
END_FUNCTION;
Referenced By
Defintion extract_factors is references by the following definitions:
[Top Level Definitions] [Exit]Generated by STEP Tools® EXPRESS to HTML Converter
2024-09-06T14:00:33-04:00