[14] | 1 | /**CHeaderFile***************************************************************** |
---|
| 2 | |
---|
| 3 | FileName [restr.h] |
---|
| 4 | |
---|
| 5 | PackageName [restr] |
---|
| 6 | |
---|
| 7 | Synopsis [STG restructuring package.] |
---|
| 8 | |
---|
| 9 | Description [This package provides the capability to restructure a |
---|
| 10 | state transition graph (STG).] |
---|
| 11 | |
---|
| 12 | Author [Balakrishna Kumthekar <kumtheka@colorado.edu>] |
---|
| 13 | |
---|
| 14 | Copyright [This file was created at the University of Colorado at Boulder. |
---|
| 15 | The University of Colorado at Boulder makes no warranty about the suitability |
---|
| 16 | of this software for any purpose. It is presented on an AS IS basis.] |
---|
| 17 | |
---|
| 18 | |
---|
| 19 | ******************************************************************************/ |
---|
| 20 | |
---|
| 21 | #ifndef _RESTR |
---|
| 22 | #define _RESTR |
---|
| 23 | |
---|
| 24 | /*---------------------------------------------------------------------------*/ |
---|
| 25 | /* Nested includes */ |
---|
| 26 | /*---------------------------------------------------------------------------*/ |
---|
| 27 | #include "ntm.h" |
---|
| 28 | #include "fsm.h" |
---|
| 29 | #include "part.h" |
---|
| 30 | #include "io.h" |
---|
| 31 | #include "ord.h" |
---|
| 32 | #include "mdd.h" |
---|
| 33 | #include "util.h" |
---|
| 34 | #include "synth.h" |
---|
| 35 | |
---|
| 36 | /*---------------------------------------------------------------------------*/ |
---|
| 37 | /* Constant declarations */ |
---|
| 38 | /*---------------------------------------------------------------------------*/ |
---|
| 39 | |
---|
| 40 | |
---|
| 41 | /*---------------------------------------------------------------------------*/ |
---|
| 42 | /* Structure declarations */ |
---|
| 43 | /*---------------------------------------------------------------------------*/ |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | /*---------------------------------------------------------------------------*/ |
---|
| 47 | /* Type declarations */ |
---|
| 48 | /*---------------------------------------------------------------------------*/ |
---|
| 49 | |
---|
| 50 | |
---|
| 51 | /*---------------------------------------------------------------------------*/ |
---|
| 52 | /* Variable declarations */ |
---|
| 53 | /*---------------------------------------------------------------------------*/ |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | /*---------------------------------------------------------------------------*/ |
---|
| 57 | /* Macro declarations */ |
---|
| 58 | /*---------------------------------------------------------------------------*/ |
---|
| 59 | |
---|
| 60 | |
---|
| 61 | /**AutomaticStart*************************************************************/ |
---|
| 62 | |
---|
| 63 | /*---------------------------------------------------------------------------*/ |
---|
| 64 | /* Function prototypes */ |
---|
| 65 | /*---------------------------------------------------------------------------*/ |
---|
| 66 | |
---|
| 67 | EXTERN void Restr_Init(void); |
---|
| 68 | EXTERN void Restr_End(void); |
---|
| 69 | |
---|
| 70 | /**AutomaticEnd***************************************************************/ |
---|
| 71 | |
---|
| 72 | #endif /* _RESTR */ |
---|