[19] | 1 | /**HFile*********************************************************************** |
---|
| 2 | |
---|
| 3 | FileName [SatCountAlgo.h] |
---|
| 4 | |
---|
| 5 | PackageName [rob] |
---|
| 6 | |
---|
| 7 | Synopsis [Headers and strcutus for Sat count Algo. package.] |
---|
| 8 | |
---|
| 9 | Author [Souheib Baarir] |
---|
| 10 | |
---|
| 11 | Copyright [Copyright (c) 2008-2009 The Regents of the Univ. Paris VI]. |
---|
| 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 PARIS VI 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 | ******************************************************************************/ |
---|
| 31 | |
---|
| 32 | |
---|
| 33 | |
---|
| 34 | #ifndef _SATCOUNT_H |
---|
| 35 | #define _SATCOUNT_H |
---|
| 36 | |
---|
| 37 | #include "../ntk/ntkInt.h" |
---|
| 38 | #include "../hrc/hrcInt.h" |
---|
| 39 | #include "../fsm/fsmInt.h" |
---|
| 40 | #include "../bmc/bmcInt.h" |
---|
| 41 | #include "../sat/sat.h" |
---|
| 42 | #include "../sat/satInt.h" |
---|
| 43 | #include <cuPortInt.h> |
---|
| 44 | #include <list.h> |
---|
| 45 | #include <st.h> |
---|
| 46 | |
---|
| 47 | typedef struct form{ |
---|
| 48 | lsList F; |
---|
| 49 | mdd_t* V; |
---|
| 50 | mdd_t* R; |
---|
| 51 | mdd_manager * mgr; |
---|
| 52 | } Formula; |
---|
| 53 | typedef Formula* Formula_t; |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | #endif /* _SATCOUNT_H */ |
---|