source: vis_dev/vis-2.3/src/vm/vm.h @ 40

Last change on this file since 40 was 14, checked in by cecile, 13 years ago

vis2.3

File size: 3.4 KB
Line 
1/**CHeaderFile*****************************************************************
2
3  FileName    [vm.h]
4
5  PackageName [vm]
6
7  Synopsis    ["Main" package of VIS ("vm" = VIS main).]
8
9  Author      [Originated from SIS]
10
11  Copyright   [Copyright (c) 1994-1996 The Regents of the Univ. of California.
12  All rights reserved.
13
14  Permission is hereby granted, without written agreement and without license
15  or royalty fees, to use, copy, modify, and distribute this software and its
16  documentation for any purpose, provided that the above copyright notice and
17  the following two paragraphs appear in all copies of this software.
18
19  IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
20  DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
21  OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
22  CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
24  THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
25  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
26  FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN
27  "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE
28  MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.]
29
30  Revision    [$Id: vm.h,v 1.5 2005/05/14 02:15:39 fabio Exp $]
31
32******************************************************************************/
33
34#ifndef _VM
35#define _VM
36
37/*---------------------------------------------------------------------------*/
38/* Nested includes                                                           */
39/*---------------------------------------------------------------------------*/
40#include <sys/types.h>
41#include <sys/stat.h>
42#include <sys/param.h>
43#include <unistd.h>
44#include "util.h"
45#include "error.h"
46#include "avl.h"
47#include "var_set.h"
48#include "array.h"
49#include "st.h"
50#include "list.h"
51#include "graph.h"
52#include "bdd.h"
53#include "mdd.h"
54
55/*---------------------------------------------------------------------------*/
56/* Constant declarations                                                     */
57/*---------------------------------------------------------------------------*/
58
59#define VIS_INFINITY    (1 << 30)
60
61/*---------------------------------------------------------------------------*/
62/* Variable declarations                                                     */
63/*---------------------------------------------------------------------------*/
64extern FILE *vis_stderr;
65extern FILE *vis_stdout;
66extern FILE *vis_historyFile;
67extern FILE *vis_stdpipe;
68extern array_t *vm_commandHistoryArray;
69extern char *vm_programName;
70
71
72/*---------------------------------------------------------------------------*/
73/* Macro declarations                                                        */
74/*---------------------------------------------------------------------------*/
75
76/**AutomaticStart*************************************************************/
77
78/*---------------------------------------------------------------------------*/
79/* Function prototypes                                                       */
80/*---------------------------------------------------------------------------*/
81
82EXTERN char * Vm_VisReadVersion(void);
83EXTERN char * Vm_VisObtainLibrary(void);
84EXTERN void Vm_VisInitPrintMore(void);
85EXTERN int Vm_VisEndPrintMore(void);
86
87/**AutomaticEnd***************************************************************/
88
89#endif /* _VM */
90
91
92
93
Note: See TracBrowser for help on using the repository browser.