| [27] | 1 | /**CHeaderFile***************************************************************** |
|---|
| 2 | |
|---|
| 3 | FileName [debug.h] |
|---|
| 4 | |
|---|
| 5 | PackageName [debug] |
|---|
| 6 | |
|---|
| 7 | Synopsis [Test package illustrating VIS conventions.] |
|---|
| 8 | |
|---|
| 9 | Description [This is a test package illustrating how to create a package in |
|---|
| 10 | VIS. It shows how to create commands, and illustrates naming conventions.] |
|---|
| 11 | |
|---|
| 12 | Author [Originated from SIS.] |
|---|
| 13 | |
|---|
| 14 | Copyright [Copyright (c) 1994-1996 The Regents of the Univ. of California. |
|---|
| 15 | All rights reserved. |
|---|
| 16 | |
|---|
| 17 | Permission is hereby granted, without written agreement and without license |
|---|
| 18 | or royalty fees, to use, copy, modify, and distribute this software and its |
|---|
| 19 | documentation for any purpose, provided that the above copyright notice and |
|---|
| 20 | the following two paragraphs appear in all copies of this software. |
|---|
| 21 | |
|---|
| 22 | IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR |
|---|
| 23 | DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT |
|---|
| 24 | OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF |
|---|
| 25 | CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 26 | |
|---|
| 27 | THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, |
|---|
| 28 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
|---|
| 29 | FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN |
|---|
| 30 | "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE |
|---|
| 31 | MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.] |
|---|
| 32 | |
|---|
| 33 | Revision [$Id: debug.h,v 1.2 2011/04/12 00:12:06 braun Exp $] |
|---|
| 34 | |
|---|
| 35 | ******************************************************************************/ |
|---|
| 36 | |
|---|
| 37 | #ifndef _DBG |
|---|
| 38 | #define _DBG |
|---|
| 39 | |
|---|
| 40 | /*---------------------------------------------------------------------------*/ |
|---|
| 41 | /* Nested includes */ |
|---|
| 42 | /*---------------------------------------------------------------------------*/ |
|---|
| 43 | #include "vm.h" |
|---|
| 44 | #include "../ntk/ntkInt.h" |
|---|
| 45 | #include "../hrc/hrcInt.h" |
|---|
| 46 | #include "../fsm/fsmInt.h" |
|---|
| 47 | #include "../bmc/bmcInt.h" |
|---|
| 48 | #include "../sat/sat.h" |
|---|
| 49 | #include "../sat/satInt.h" |
|---|
| 50 | #include "../rob/Robust.h" |
|---|
| 51 | #include "mdd.h" |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | /*---------------------------------------------------------------------------*/ |
|---|
| 55 | /* Constant declarations */ |
|---|
| 56 | /*---------------------------------------------------------------------------*/ |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | /*---------------------------------------------------------------------------*/ |
|---|
| 60 | /* Structure declarations */ |
|---|
| 61 | /*---------------------------------------------------------------------------*/ |
|---|
| 62 | |
|---|
| 63 | |
|---|
| 64 | /*---------------------------------------------------------------------------*/ |
|---|
| 65 | /* Type declarations */ |
|---|
| 66 | /*---------------------------------------------------------------------------*/ |
|---|
| 67 | |
|---|
| 68 | |
|---|
| 69 | /*---------------------------------------------------------------------------*/ |
|---|
| 70 | /* Variable declarations */ |
|---|
| 71 | /*---------------------------------------------------------------------------*/ |
|---|
| 72 | |
|---|
| 73 | |
|---|
| 74 | /*---------------------------------------------------------------------------*/ |
|---|
| 75 | /* Macro declarations */ |
|---|
| 76 | /*---------------------------------------------------------------------------*/ |
|---|
| 77 | |
|---|
| 78 | |
|---|
| 79 | /**AutomaticStart*************************************************************/ |
|---|
| 80 | |
|---|
| 81 | /*---------------------------------------------------------------------------*/ |
|---|
| 82 | /* Function prototypes */ |
|---|
| 83 | /*---------------------------------------------------------------------------*/ |
|---|
| 84 | |
|---|
| 85 | |
|---|
| 86 | void mdd_GetState_Values(mdd_manager *mgr, mdd_t * top, FILE * f); |
|---|
| 87 | EXTERN void Debug_Init(void); |
|---|
| 88 | EXTERN void Debug_End(void); |
|---|
| 89 | |
|---|
| 90 | /**AutomaticEnd***************************************************************/ |
|---|
| 91 | |
|---|
| 92 | #endif /* _DBG */ |
|---|