Hi, I'm working on a project that converts a Boolean function into a Binary-Decision-Diagram(BDD) using the CUDD package.
Here's a simple example showing how the functions works:
1 2 3 4 5 6 7 8 9 10 11
// Top=a(b+c+de)
int main()
{
Cudd mgr(0, 0);
BDD a = mgr.bddVar();
BDD b = mgr.bddVar();
BDD c = mgr.bddVar();
BDD d = mgr.bddVar();
BDD e = mgr.bddVar();
BDD top = a*(b + c + d*e);
}
And my question is how should I construct the BDD using these functions after reading a Boolean function from a .txt file as below(upper-case stands for the variable's complement):
After getting my variable vector list, how should I deal with the read in Boolean function and construct a BDD using the above CUDD functions like a while or for loop w/o specifying 5 lines of mgr.bddVar();
Thx in advance!
This is the third time I've seen this post. Different title, but same code and everything.
Don't double-post; it won't help you get better answers. If the previous answers didn't work for you, post back on that thread, and we will try to help.