Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

lceGetShortMarkers

lceGetShortMarkers(
[ netID | l_netID ]
)
=> l_shortMarkerID

Description

Prints a list of short markers between the passed nets. If a single net is specified, the shorts between this net and all the other nets are returned. If two nets are specified, the shorts between these two nets are returned. If more nets are specified, the shorts between pairs of nets in the list are returned.

Arguments

netID | l_netID

ID of the net (or nets) for which the short markers are reported.

  • If no net is specified, no short marker is reported.
  • If a single net is passed, the shorts between this net and all the other nets are reported.
  • If two nets are passed, the shorts between these two nets are reported.
  • If more nets are passed, the shorts between pairs of nets in the list are reported.

Value Returned

l_shortMarkerID

SKILL list of short marker IDs between the specified nets.

Example

a = dbFindNetByName(cv "a")
lceGetShortMarkers(a)

Returns the short markers between net a and other nets.

b = dbFindNetByName(cv "b")
lceGetShortMarkers(list(a b))

Returns the short markers between nets a and b.

c = dbFindNetByName(cv "c")
lceGetShortMarkers(list(a b c))

Returns the short markers between net pairs (a,b), (a,c), and (b,c).

lceGetShortMarkers()

Returns all the short markers in the current edited design.


Return to top
 ⠀
X