We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9baa21 commit e9f748aCopy full SHA for e9f748a
1 file changed
include/libsemigroups/konieczny.hpp
@@ -61,6 +61,18 @@ namespace libsemigroups {
61
//! from a finite over-monoid which acts on sets on the left and on the right
62
//! in an appropriate way. The prototypical example, as described by
63
//! %Konieczny, is the monoid of boolean matrices.
64
+ //!
65
+ //! \code
66
+ //! using namespace libsemigroups;
67
+ //! const std::vector<BMat8> reg_bmat4_gens
68
+ //! = {BMat8({{0, 1, 0, 0}, {1, 0, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1}}),
69
+ //! BMat8({{0, 1, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1}, {1, 0, 0, 0}}),
70
+ //! BMat8({{1, 0, 0, 0}, {1, 1, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1}}),
71
+ //! BMat8({{0, 0, 0, 0}, {0, 1, 0, 0}, {0, 0, 1, 0}, {0, 0, 0, 1}})};
72
+ //! Konieczny<BMat8> S(reg_bmat4_gens);
73
+ //! S.size(); // returns 63904
74
+ //! S.number_of_idempotents(); //returns 2360
75
+ //! \endcode
76
77
//! \ingroup konieczny_group
78
//!
0 commit comments