![]() |
libsemigroups
v3.0.0
C++ library for semigroups and monoids
|
Functions | |
template<typename Element, typename Traits> | |
void | add_generators (Konieczny< Element, Traits > &K, std::initializer_list< typename Konieczny< Element, Traits >::const_element_type > coll) |
Add collection of generators from initializer list. | |
template<typename Element, typename Traits, typename T> | |
void | add_generators (Konieczny< Element, Traits > K, T const &coll) |
Add collection of generators from container. | |
void add_generators | ( | Konieczny< Element, Traits > & | K, |
std::initializer_list< typename Konieczny< Element, Traits >::const_element_type > | coll ) |
See add_generator for a detailed description.
K | reference to the Konieczny instance to add generators to. |
coll | the collection of generators to add. |
LibsemigroupsException | if any of the following hold:
|
void add_generators | ( | Konieczny< Element, Traits > | K, |
T const & | coll ) |
See add_generator for a detailed description.
T | the type of the container for generators to add (must be a non-pointer type). |
K | reference to the Konieczny instance to add generators to. |
coll | the collection of generators to add. |
LibsemigroupsException | if any of the following hold:
|