// // libsemigroups - C++ library for semigroups and monoids // Copyright (C) 2021 James D. Mitchell + Maria Tsalakou // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. //
// This file contains the implementation of the KambitesImpl class.
#include"libsemigroups/kambites.hpp"
#include <algorithm> // for max, find_if, equal, copy, min #include <string> // for string #include <tuple> // for tie, tuple
#include <iostream>
#include"libsemigroups/cong-intf.hpp"// for CongruenceInterface #include"libsemigroups/constants.hpp"// for UNDEFINED, POSITIVE_INFINITY #include"libsemigroups/debug.hpp"// for LIBSEMIGROUPS_ASSERT #include"libsemigroups/exception.hpp"// for LIBSEMIGROUPS_EXCEPTION #include"libsemigroups/froidure-pin-base.hpp"// for FroidurePinBase #include"libsemigroups/froidure-pin.hpp"// for FroidurePin #include"libsemigroups/int-range.hpp"// for IntegralRange #include"libsemigroups/order.hpp"// for lexicographical_compare #include"libsemigroups/string.hpp"// for is_prefix, maximum_common_suffix #include"libsemigroups/types.hpp"// for word_type, tril #include"libsemigroups/uf.hpp"// for Duf<> #include"libsemigroups/word.hpp"// for word_to_string
namespace libsemigroups { using MultiStringView = std::string; // detail::MultiStringView;
using froidure_pin_type = FroidurePin<
detail::KE,
FroidurePinTraits<detail::KE, fpsemigroup::Kambites<std::string>>>;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.