You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
452 B
11 lines
452 B
// Methods to convert a BDD to the canonical 0/1 MTBDD for different types.
|
|
Mtbdd toDoubleMtbdd() const;
|
|
Mtbdd toInt64Mtbdd() const;
|
|
Mtbdd toStormRationalNumberMtbdd() const;
|
|
#if defined(SYLVAN_HAVE_CARL) || defined(STORM_HAVE_CARL)
|
|
Mtbdd toStormRationalFunctionMtbdd() const;
|
|
#endif
|
|
|
|
// Other functions to add to sylvan's Bdd class.
|
|
Mtbdd Ite(Mtbdd const& thenDd, Mtbdd const& elseDd) const;
|
|
Bdd ExistAbstractRepresentative(const BddSet& cube) const;
|