Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION parallel_composed_function_domain_check
          (comdom : tuple_space, funcs : LIST [0:?] OF maths_function) : BOOLEAN;

 REPEAT i := 1 TO SIZEOF ( funcs ) ; IF NOT ( compatible_spaces ( comdom , funcs [ i ] . domain ) ) THEN RETURN  ( FALSE ) ; END_IF ; END_REPEAT ; RETURN ( TRUE ) ; 

END_FUNCTION; -- parallel_composed_function_domain_check

public class FParallel_composed_function_domain_check
          public static Value run(SdaiContext _context, Value comdom, Value funcs)