Product Documentation
Virtuoso ADE Verifier SKILL Reference
Product Version IC23.1, November 2023

verifIsBatchRunProcess

verifIsBatchRunProcess(
)
=> t / nil

Description

Returns t if the code is currently running in a remote child process for ADE Verifier. You can use this function in your .cdsinit file or in custom SKILL code.

Arguments

None

Value Returned

t

Child IC remote process is running.

nil

Child IC remote process is not running.

Examples

The following example shows how to use this function.

In Virtuoso CIW:
axlIsICRPProcess( )
=> nil
In the .cdsinit file:
if(verifIsBatchRunProcess() then
info("## Is batch run process ##\n")
;; Do something for batch run here
else
info("## Is not batch run process ##\n")
;; Do something for non-batch run here
)

Related Topics

verifCreateBatchScript

Verifier Session and Setup Functions


Return to top
 ⠀
X