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

lceGetIncompleteNetMarkers

lceGetIncompleteNetMarkers(
[ netID | l_netID ]
)
=> l_incompleteNetMarkerID

Description

Generates a list of open markers on the specified incomplete nets. If a single net is specified, the opens on that net are returned. If multiple nets are specified, the opens on each net in the list are returned. If no nets are specified, all the opens in the design are returned.

Arguments

netID | l_netID

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

  • If a single net is specified, the opens on that net are reported.
  • If multiple nets are specified, the opens on each net in the list are reported.
  • If no nets are specified, all the opens in the design are reported.

Value Returned

l_incompleteNetMarkerID

SKILL list of open marker IDs on the specified nets.

Example

a = dbFindNetByName(cv "a")
lceGetIncompleteNetMarkers(a)

Returns the open markers on net a.

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

Returns the open markers on nets a and b.

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

Returns the open markers on nets a, b, and c.

lceGetIncompleteNetMarkers()

Returns the open markers in the current edited design.


Return to top
 ⠀
X