Overview Schemas Index

Layered_interconnect_module_design_arm (jsdai.SLayered_interconnect_module_design_arm)


FUNCTION acyclic_conductive_interconnect_element_terminal_link
          (relation : Conductive_interconnect_element_terminal_link; relatives : SET [1:?] OF Conductive_interconnect_element_terminal; specific_relation : STRING) : BOOLEAN;

LOCAL
     x : SET OF Conductive_interconnect_element_terminal_link := [];
  END_LOCAL;

    IF  relation.precedent_point IN  relatives THEN
      RETURN  (FALSE);
    END_IF;
    x := QUERY(pd <* bag_to_set(USEDIN(relation.precedent_point,
      'LAYERED_INTERCONNECT_MODULE_DESIGN_ARM.' +
      'CONDUCTIVE_INTERCONNECT_ELEMENT_TERMINAL_LINK.' +
      'SUBSEQUENT_POINT')) | specific_relation IN TYPEOF(pd));
    REPEAT i := 1 TO HIINDEX(x);
      IF NOT acyclic_conductive_interconnect_element_terminal_link(x[i], relatives +
        relation.precedent_point, specific_relation) THEN
        RETURN  (FALSE);
      END_IF;
    END_REPEAT;
    RETURN (TRUE);

END_FUNCTION; -- acyclic_conductive_interconnect_element_terminal_link

public class FAcyclic_conductive_interconnect_element_terminal_link
          public static Value run(SdaiContext _context, Value relation, Value relatives, Value specific_relation)