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

axlGetHistoryCheckpoint

axlGetHistoryCheckpoint( 
x_history 
) 
=> x_checkpoint / nil 

Description

Returns the handle to the checkpoint of a history entry.

Arguments

x_history

Handle to a history entry

Value Returned

x_checkpoint

The handle to the checkpoint of a history entry is returned.

nil

Indicates an error.

Examples

Checks for the existence of a history named data_design_verification and loads the history.

data_sdb = axlGetMainSetupDB(axlGetWindowSession())
axlLoadHistory( data_sdb )
=>1203

Finds the run mode of the given history name.

(defun CCRaxlGetRunModeFromHistoryName (sdbh histName) 
(let (checkPoint)
checkPoint = (axlGetHistoryCheckpoint (axlGetHistoryEntry sdbh histName))
(axlGetCurrentRunMode checkPoint)
)
)
histName = "MonteCarlo.0"
sess = (axlGetWindowSession)
sdbh = (axlGetMainSetupDB sess)
runMode = (CCRaxlGetRunModeFromHistoryName sdbh histName) (printf "Run mode for history %s = \"%s\"\n" histName runMode)

Related Topics

axlCreateSession

axlSetMainSetupDB

axlLoadHistory

axlGetHistoryEntry


Return to top
 ⠀
X