* src/tgba/tgbaproduct.cc (state_bdd_product::state_bdd_product):
New constructor. * src/tgba/tgbaproduct.hh (state_bdd_product::state_bdd_product): New constructor. * tgbatest/tripprod.cc, tgbatest/tripprod.test: New files. * src/tgbatest/Makefile.am (check_PROGRAMS): Add explprod. (tripprod_SOURCES): New variable. (CLEANFILES): Add input3. (TESTS): Add tripprod.test.
This commit is contained in:
parent
4db70160c9
commit
fd12c02345
8 changed files with 127 additions and 7 deletions
|
|
@ -9,6 +9,13 @@ namespace spot
|
|||
////////////////////////////////////////////////////////////
|
||||
// state_bdd_product
|
||||
|
||||
state_bdd_product::state_bdd_product(const state_bdd_product& o)
|
||||
: state_bdd(o.as_bdd()),
|
||||
left_(o.left()->clone()),
|
||||
right_(o.right()->clone())
|
||||
{
|
||||
}
|
||||
|
||||
state_bdd_product::~state_bdd_product()
|
||||
{
|
||||
delete left_;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue