Product Documentation
Cadence SKILL Development Reference
Product Version IC23.1, June 2023

untracev

untracev( 
[ { s_variable ... | t } ] 
) 
=> g_result

Description

Turns off tracing for assignments to specified variables. This is an nlambda function.

Arguments

s_variable

Names of the variables to be untraced.

t

Untrace all variables.

Value Returned

g_result

Variables successfully marked for untracing.

Examples

tracev x             ; Traces the variable x.
x = 5 ; Shows the old and new value of x.
untracev x ; Clears tracing for the variable x.
tracev t ; Traces all variable assignments.
untracev t   ; Clears all variable tracing.

Related Topics

Debug Functions

tracev

tracef

untrace


Return to top
 ⠀
X