verifExportJson
verifExportJson(g_sessionId[?filenamet_filename] [?compactg_compact]) =>t_filename/ nil
Description
Exports the Verifier session as a json file. The json file contains details about the session, including the requirements, implementations, mappings, and simulation results.
Value Returned
Examples
The following example shows how to export the Verifier session information as a json file:
sess = verifOpenCellView("test" "sample" "verifier")
=> 0
verifExportJson(sess) => "/home/user/dir1/test_sample_verifier.json" verifExportJson(sess ?filename "v1.json") => "/home/user/dir1/v1.json" verifExportJson(sess ?filename "v2.json" ?compact t) => "/home/user/dir1/v2.json"
Related Topics
Return to top