Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
1256abca
Commit
1256abca
authored
Jul 29, 2018
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding procedure to compute tuples of k out of n as a BDD.
parent
7732b9a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
161 additions
and
0 deletions
+161
-0
src/bdd/extrab/extraBdd.h
+4
-0
src/bdd/extrab/extraBddMisc.c
+157
-0
No files found.
src/bdd/extrab/extraBdd.h
View file @
1256abca
...
@@ -198,6 +198,10 @@ extern DdNode * Extra_bddAndPermute( DdManager * ddF, DdNode * bF, DdManager
...
@@ -198,6 +198,10 @@ extern DdNode * Extra_bddAndPermute( DdManager * ddF, DdNode * bF, DdManager
extern
int
Extra_bddCountCubes
(
DdManager
*
dd
,
DdNode
**
pFuncs
,
int
nFuncs
,
int
fMode
,
int
nLimit
,
int
*
pGuide
);
extern
int
Extra_bddCountCubes
(
DdManager
*
dd
,
DdNode
**
pFuncs
,
int
nFuncs
,
int
fMode
,
int
nLimit
,
int
*
pGuide
);
extern
void
Extra_zddDumpPla
(
DdManager
*
dd
,
DdNode
*
zCover
,
int
nVars
,
char
*
pFileName
);
extern
void
Extra_zddDumpPla
(
DdManager
*
dd
,
DdNode
*
zCover
,
int
nVars
,
char
*
pFileName
);
/* build the set of all tuples of K variables out of N */
extern
DdNode
*
Extra_bddTuples
(
DdManager
*
dd
,
int
K
,
DdNode
*
bVarsN
);
extern
DdNode
*
extraBddTuples
(
DdManager
*
dd
,
DdNode
*
bVarsK
,
DdNode
*
bVarsN
);
#ifndef ABC_PRB
#ifndef ABC_PRB
#define ABC_PRB(dd,f) printf("%s = ", #f); Extra_bddPrint(dd,f); printf("\n")
#define ABC_PRB(dd,f) printf("%s = ", #f); Extra_bddPrint(dd,f); printf("\n")
#endif
#endif
...
...
src/bdd/extrab/extraBddMisc.c
View file @
1256abca
...
@@ -2582,6 +2582,163 @@ void Extra_ZddTest()
...
@@ -2582,6 +2582,163 @@ void Extra_ZddTest()
}
}
/**Function********************************************************************
Synopsis [Performs the reordering-sensitive step of Extra_bddTuples().]
Description [Generates in a bottom-up fashion BDD for all combinations
composed of k variables out of variables belonging to bVarsN.]
SideEffects []
SeeAlso []
******************************************************************************/
DdNode
*
extraBddTuples
(
DdManager
*
dd
,
/* the DD manager */
DdNode
*
bVarsK
,
/* the number of variables in tuples */
DdNode
*
bVarsN
)
/* the set of all variables */
{
DdNode
*
bRes
,
*
bRes0
,
*
bRes1
;
statLine
(
dd
);
/* terminal cases */
/* if ( k < 0 || k > n )
* return dd->zero;
* if ( n == 0 )
* return dd->one;
*/
if
(
cuddI
(
dd
,
bVarsK
->
index
)
<
cuddI
(
dd
,
bVarsN
->
index
)
)
return
b0
;
if
(
bVarsN
==
b1
)
return
b1
;
/* check cache */
bRes
=
cuddCacheLookup2
(
dd
,
extraBddTuples
,
bVarsK
,
bVarsN
);
if
(
bRes
)
return
(
bRes
);
/* ZDD in which is variable is 0 */
/* bRes0 = extraBddTuples( dd, k, n-1 ); */
bRes0
=
extraBddTuples
(
dd
,
bVarsK
,
cuddT
(
bVarsN
)
);
if
(
bRes0
==
NULL
)
return
NULL
;
cuddRef
(
bRes0
);
/* ZDD in which is variable is 1 */
/* bRes1 = extraBddTuples( dd, k-1, n-1 ); */
if
(
bVarsK
==
b1
)
{
bRes1
=
b0
;
cuddRef
(
bRes1
);
}
else
{
bRes1
=
extraBddTuples
(
dd
,
cuddT
(
bVarsK
),
cuddT
(
bVarsN
)
);
if
(
bRes1
==
NULL
)
{
Cudd_RecursiveDeref
(
dd
,
bRes0
);
return
NULL
;
}
cuddRef
(
bRes1
);
}
/* consider the case when Res0 and Res1 are the same node */
if
(
bRes0
==
bRes1
)
bRes
=
bRes1
;
/* consider the case when Res1 is complemented */
else
if
(
Cudd_IsComplement
(
bRes1
)
)
{
bRes
=
cuddUniqueInter
(
dd
,
bVarsN
->
index
,
Cudd_Not
(
bRes1
),
Cudd_Not
(
bRes0
));
if
(
bRes
==
NULL
)
{
Cudd_RecursiveDeref
(
dd
,
bRes0
);
Cudd_RecursiveDeref
(
dd
,
bRes1
);
return
NULL
;
}
bRes
=
Cudd_Not
(
bRes
);
}
else
{
bRes
=
cuddUniqueInter
(
dd
,
bVarsN
->
index
,
bRes1
,
bRes0
);
if
(
bRes
==
NULL
)
{
Cudd_RecursiveDeref
(
dd
,
bRes0
);
Cudd_RecursiveDeref
(
dd
,
bRes1
);
return
NULL
;
}
}
cuddDeref
(
bRes0
);
cuddDeref
(
bRes1
);
/* insert the result into cache */
cuddCacheInsert2
(
dd
,
extraBddTuples
,
bVarsK
,
bVarsN
,
bRes
);
return
bRes
;
}
/* end of extraBddTuples */
/**Function********************************************************************
Synopsis [Builds BDD representing the set of fixed-size variable tuples.]
Description [Creates BDD of all combinations of variables in Support that have k vars in them.]
SideEffects []
SeeAlso []
******************************************************************************/
DdNode
*
Extra_bddTuples
(
DdManager
*
dd
,
/* the DD manager */
int
K
,
/* the number of variables in tuples */
DdNode
*
VarsN
)
/* the set of all variables represented as a BDD */
{
DdNode
*
res
;
int
autoDyn
;
/* it is important that reordering does not happen,
otherwise, this methods will not work */
autoDyn
=
dd
->
autoDyn
;
dd
->
autoDyn
=
0
;
do
{
/* transform the numeric arguments (K) into a DdNode * argument;
* this allows us to use the standard internal CUDD cache */
DdNode
*
VarSet
=
VarsN
,
*
VarsK
=
VarsN
;
int
nVars
=
0
,
i
;
/* determine the number of variables in VarSet */
while
(
VarSet
!=
b1
)
{
nVars
++
;
/* make sure that the VarSet is a cube */
if
(
cuddE
(
VarSet
)
!=
b0
)
return
NULL
;
VarSet
=
cuddT
(
VarSet
);
}
/* make sure that the number of variables in VarSet is less or equal
that the number of variables that should be present in the tuples
*/
if
(
K
>
nVars
)
return
NULL
;
/* the second argument in the recursive call stannds for <n>;
/* reate the first argument, which stands for <k>
* as when we are talking about the tuple of <k> out of <n> */
for
(
i
=
0
;
i
<
nVars
-
K
;
i
++
)
VarsK
=
cuddT
(
VarsK
);
dd
->
reordered
=
0
;
res
=
extraBddTuples
(
dd
,
VarsK
,
VarsN
);
}
while
(
dd
->
reordered
==
1
);
dd
->
autoDyn
=
autoDyn
;
return
(
res
);
}
/* end of Extra_bddTuples */
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment