1 | /**CHeaderFile***************************************************************** |
---|
2 | |
---|
3 | FileName [ntm.h] |
---|
4 | |
---|
5 | PackageName [ntm] |
---|
6 | |
---|
7 | Synopsis [Construction of MDDs from a flattened network.] |
---|
8 | |
---|
9 | Description [Provides a routine to build the MVFs of the roots of an |
---|
10 | arbitrary region of a network, in terms of the leaves of the region. The |
---|
11 | leaves can be treated as variables or as specific constants.] |
---|
12 | |
---|
13 | Author [Adnan Aziz and Tom Shiple] |
---|
14 | |
---|
15 | Copyright [Copyright (c) 1994-1996 The Regents of the Univ. of California. |
---|
16 | All rights reserved. |
---|
17 | |
---|
18 | Permission is hereby granted, without written agreement and without license |
---|
19 | or royalty fees, to use, copy, modify, and distribute this software and its |
---|
20 | documentation for any purpose, provided that the above copyright notice and |
---|
21 | the following two paragraphs appear in all copies of this software. |
---|
22 | |
---|
23 | IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR |
---|
24 | DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT |
---|
25 | OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF |
---|
26 | CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
27 | |
---|
28 | THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, |
---|
29 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
---|
30 | FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN |
---|
31 | "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE |
---|
32 | MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.] |
---|
33 | |
---|
34 | Revision [$Id: ntm.h,v 1.3 2002/09/08 21:56:34 fabio Exp $] |
---|
35 | |
---|
36 | ******************************************************************************/ |
---|
37 | |
---|
38 | #ifndef _NTM |
---|
39 | #define _NTM |
---|
40 | |
---|
41 | /*---------------------------------------------------------------------------*/ |
---|
42 | /* Nested includes */ |
---|
43 | /*---------------------------------------------------------------------------*/ |
---|
44 | #include "ntk.h" |
---|
45 | |
---|
46 | /*---------------------------------------------------------------------------*/ |
---|
47 | /* Constant declarations */ |
---|
48 | /*---------------------------------------------------------------------------*/ |
---|
49 | #define NTM_UNUSED (-1) |
---|
50 | |
---|
51 | /**AutomaticStart*************************************************************/ |
---|
52 | |
---|
53 | /*---------------------------------------------------------------------------*/ |
---|
54 | /* Function prototypes */ |
---|
55 | /*---------------------------------------------------------------------------*/ |
---|
56 | |
---|
57 | EXTERN void Ntm_Init(void); |
---|
58 | EXTERN void Ntm_End(void); |
---|
59 | EXTERN array_t * Ntm_NetworkBuildMvfs(Ntk_Network_t * network, array_t * roots, st_table * leaves, mdd_t *careSet); |
---|
60 | |
---|
61 | /**AutomaticEnd***************************************************************/ |
---|
62 | |
---|
63 | #endif /* _NTM */ |
---|
64 | |
---|