Define tgba_product_init, a new kind of product with different
initial states. * src/tgba/tgbaproduct.hh, src/tgba/tgbaproduct.cc (tgba_product_init): New class.
This commit is contained in:
parent
f4e583d078
commit
92756e49c8
3 changed files with 40 additions and 1 deletions
|
|
@ -1,3 +1,5 @@
|
|||
// Copyright (C) 2011 Laboratoire de Recherche et Développement
|
||||
// de l'Epita (LRDE).
|
||||
// Copyright (C) 2003, 2004, 2006 Laboratoire d'Informatique de Paris
|
||||
// 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
|
||||
// Université Pierre et Marie Curie.
|
||||
|
|
@ -161,6 +163,18 @@ namespace spot
|
|||
tgba_product& operator=(const tgba_product&);
|
||||
};
|
||||
|
||||
/// \brief A lazy product with different initial states.
|
||||
class tgba_product_init: public tgba_product
|
||||
{
|
||||
public:
|
||||
tgba_product_init(const tgba* left, const tgba* right,
|
||||
const state* left_init, const state* right_init);
|
||||
virtual state* get_init_state() const;
|
||||
private:
|
||||
const state* left_init_;
|
||||
const state* right_init_;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // SPOT_TGBA_TGBAPRODUCT_HH
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue