* 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:
Alexandre Duret-Lutz 2003-06-17 14:54:30 +00:00
parent 4db70160c9
commit fd12c02345
8 changed files with 127 additions and 7 deletions

View file

@ -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_;