cbmc_viewer/make_reachable.py [31:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        nargs='*',
        help="""
        A list of xml or json files containing the output of
        'goto-analyzer --show-reachable'.  Do not mix xml and json files.
        """
    )

    optionst.log(parser)

    return parser

################################################################

def main():
    """List reachable functions in a goto binary."""

    args = create_parser().parse_args()
    args = optionst.defaults(args)

    try:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cbmc_viewer/make_result.py [26:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        nargs='*',
        help="""
        One or more files containing the output of cbmc property checking
        as text, xml, or json.
        Multiple files will be merged into a single list of
        property checking results.
        Do not mix text, xml, and json files.
        """
    )

    optionst.log(parser)

    return parser

################################################################

def main():
    """List CBMC property checking results."""

    args = create_parser().parse_args()
    args = optionst.defaults(args)

    try:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



