Overview Schemas Index

MATHEMATICAL_FUNCTIONS_SCHEMA (jsdai.SMathematical_functions_schema)


FUNCTION parallel_composed_function_composability_check
          (funcs : LIST [0:?] OF maths_function, final : maths_function_select) : BOOLEAN;

LOCAL
    tplsp : tuple_space := the_zero_tuple_space;
    finfun : maths_function := convert_to_maths_function (final);
  END_LOCAL;
  REPEAT i := 1 TO SIZEOF (funcs);
    tplsp := assoc_product_space (tplsp, funcs[i].range);
  END_REPEAT;
  RETURN (compatible_spaces (tplsp, finfun.domain));

END_FUNCTION; -- parallel_composed_function_composability_check

public class FParallel_composed_function_composability_check
          public static Value run(SdaiContext _context, Value funcs, Value final)