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

relxDisplayResult

relxDisplayResult (
t_sessionName
t_file
)
=> t / nil

Description

Displays the specified result log file.

Arguments

t_sessionName

Name of the Spectre session. You can also use the asiGetCurrentSession function to specify the current session.

t_file

Name or path of the results log file.

If the value of this argument is a filename, the function searches for the specified filename in the netlist directory and displays when found.

Value Returned

t

For the specified session, returns t if function runs successfully.

nil

For any other session, returns nil.Also, There is an error.

Examples

In the example given below, the function searches for relXpert log file in the netlist directory and opens the file when it is found. When the file is found, returns t, else displays a warning message.

session = asiGetCurrentSession()
relxDisplayResult(session "relxpert.log")
=> t

In the example given below, the function searches for relXpert log file at the specified path and opens the file when it is found. When the file is found, returns t, else displays a warning message.

relxDisplayResult(session "/dir/relxpert.log")
=> t

Return to top
 ⠀
X