VIS

src/vm/vmInit.c File Reference

#include "vmInt.h"
Include dependency graph for vmInit.c:

Go to the source code of this file.

Functions

void VmInit (void)
void VmEnd (void)

Variables

static char rcsid[] UNUSED = "$Id: vmInit.c,v 1.17 2004/12/27 00:25:32 bli Exp $"

Function Documentation

void VmEnd ( void  )

Function********************************************************************

Synopsis [Calls the end routines of all the packages.]

SideEffects [Closes the output files if not the standard ones.]

SeeAlso [VmInit]

Definition at line 120 of file vmInit.c.

{
  Synth_End();
  Amc_End();
  Eqv_End();
  Mc_End();
  Img_End();
  Mvf_End();
  Part_End();
  Sim_End();
  Fsm_End();
  Grab_End();
  Ltl_End();   
  Ctlp_End();
  Ctlsp_End(); 
  Ntm_End();
  Ord_End();
  Ntk_End();
  Rst_End();
  Hrc_End();
  Tbl_End();
  Io_End();
  Res_End();
  Tst_End();
  Cmd_End();
  Abs_End();
  Restr_End();
  Imc_End();
  Spfd_End();
  Truesim_End();
  Rt_End();
  bAig_End();
  mAig_End();
  MvfAig_End();
  ntmaig_End();
  Bmc_End();

  if (vis_stdout != stdout) {  
    (void) fclose(vis_stdout);
  } 
  if (vis_stderr != stderr) {
    (void) fclose(vis_stderr);
  }
  if (vis_historyFile != NIL(FILE)) {
    (void) fclose(vis_historyFile);
  }
  
  vis_stdout      = stdout;
  vis_stderr      = stderr;
  vis_historyFile = NIL(FILE);
}

Here is the call graph for this function:

Here is the caller graph for this function:

void VmInit ( void  )

AutomaticStart AutomaticEnd Function********************************************************************

Synopsis [Calls the initialization routines of all the packages.]

SideEffects [Sets the global variables vis_stdout, vis_stderr, vis_historyFile.]

SeeAlso [VmEnd]

Definition at line 66 of file vmInit.c.

Here is the call graph for this function:

Here is the caller graph for this function:


Variable Documentation

char rcsid [] UNUSED = "$Id: vmInit.c,v 1.17 2004/12/27 00:25:32 bli Exp $" [static]

CFile***********************************************************************

FileName [vmInit.c]

PackageName [vm]

Synopsis [Initializes and ends VIS.]

Author [Originated from SIS]

Copyright [Copyright (c) 1994-1996 The Regents of the Univ. of California. All rights reserved.

Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software.

IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.]

Definition at line 34 of file vmInit.c.