|
FUNCTION get_gpn (input : SET [0:?] OF printed_component_join_terminal) : SET [0:?] OF generic_physical_network; LOCAL gpn : SET [ 0 : ? ] OF generic_physical_network := [ ] ; END_LOCAL ; REPEAT i := 1 TO SIZEOF ( input ) BY 1 ; gpn := gpn + bag_to_set ( USEDIN ( input [ i ] , 'layered_interconnect_module_design_xim.generic_physical_network.connectivity_requirement_element' ) ) ; END_REPEAT ; RETURN ( gpn ) ; END_FUNCTION; -- get_gpn |
|
public class FGet_gpn public static Value run(SdaiContext _context, Value input) |