Defined in matrix-class.hpp.
This page describes the functionality for \(n \times n\) matrices over the finite quotient of the min-plus semiring by the congruence \(t = t + 1\) for arbitrary \(n\) and \(t\). The value \(t\) is referred to as the threshold.
There are three types of such matrices where:
All three of these types can be accessed via the alias template MinPlusTruncMat<T, P, R, C, Scalar> if T has value 0, then the threshold can be set at run time, and if R or C is 0, then the dimension can be set at run time. The default value of T is 0, R is 0, and of C is R.
The alias MinPlusTruncMat is either StaticMatrix, DynamicMatrix (compile-time arithmetic), or DynamicMatrix (run-time arithmetic), please refer to the documentation of these class templates for more details. The only substantial difference in the interface of static and dynamic matrices is that the former can be default constructed and the latter should be constructed using the dimensions.
Classes | |
| struct | MinPlusTruncProd< T, Scalar > |
| Function object for multiplication in min-plus truncated semirings. More... | |
| class | MinPlusTruncSemiring< Scalar > |
| Class representing a truncated min-plus semiring. More... | |
Typedefs | |
| template<size_t T, typename Scalar> | |
| using | DynamicMinPlusTruncMat |
| Alias for dynamic truncated min-plus matrices. | |
| template<size_t T = 0, size_t R = 0, size_t C = R, typename Scalar = int> | |
| using | MinPlusTruncMat |
| Alias template for truncated min-plus matrices. | |
| template<size_t T, size_t R, size_t C, typename Scalar> | |
| using | StaticMinPlusTruncMat |
| Alias for static truncated min-plus matrices. | |
Functions | |
| template<typename Mat> | |
| auto | throw_if_bad_entry (Mat const &m) -> std::enable_if_t< IsMinPlusTruncMat< Mat > > |
| Check that a truncated min-plus matrix is valid. | |
| template<typename Mat> | |
| auto | throw_if_bad_entry (Mat const &m, typename Mat::scalar_type val) -> std::enable_if_t< IsMinPlusTruncMat< Mat > > |
| Check that an entry in a truncated min-plus matrix is valid. | |
Variables | |
| template<typename T> | |
| static constexpr bool | IsMinPlusTruncMat = detail::IsMinPlusTruncMatHelper<T>::value |
| Helper to check if a type is MinPlusTruncMat. | |
| using DynamicMinPlusTruncMat |
Defined in matrix-class.hpp.
Alias for the type of dynamic truncated min-plus matrices where the dimension is defined at run time, but the threshold is defined at compile-time.
| T | the threshold. |
| Scalar | the type of the entries in the matrix. |
| using MinPlusTruncMat |
Defined in matrix-class.hpp.
Alias template for truncated min-plus matrices.
| T | the threshold. A value of 0 indicates that the value will be set at run time (default: 0). |
| R | the number of rows. A value of 0 indicates that the value will be set at run time (default: 0). |
| C | the number of columns. A value of 0 indicates that the value will be set at run time (default: R). |
| Scalar | the type of the entries in the matrix (default: int). |
| using StaticMinPlusTruncMat |
Defined in matrix-class.hpp.
Alias for static truncated min-plus matrices where the threshold and dimensions are defined at compile-time.
| T | the threshold. |
| R | the number of rows. |
| C | the number of columns. |
| Scalar | the type of the entries in the matrix. |
| auto throw_if_bad_entry | ( | Mat const & | m | ) | -> std::enable_if_t< IsMinPlusTruncMat< Mat > > |
Defined in matrix-exceptions.hpp.
This function can be used to check that a matrix contains values in the underlying semiring.
| Mat | the type of the matrix m (must satisfy IsMinPlusTruncMat<Mat>). |
| m | the matrix to check. |
| LibsemigroupsException | if any entry in the matrix is not in the set \(\{0, 1, \ldots, t, \infty\}\) where \(t\) is the threshold of the matrix or if the underlying semiring is not defined (only applies to matrices with run time arithmetic). |
| auto throw_if_bad_entry | ( | Mat const & | m, |
| typename Mat::scalar_type | val ) -> std::enable_if_t< IsMinPlusTruncMat< Mat > > |
Defined in matrix-exceptions.hpp.
This function can be used to check that a matrix contains values in the underlying semiring.
| Mat | the type the 1st argument, must satisfy IsMinPlusTruncMat<Mat>. |
| m | the matrix. |
| val | the entry to check. |
| LibsemigroupsException | if the entry val is not in the set \(\{0, 1, \ldots, t, \infty\}\) where \(t\) is the threshold of the matrix or if the underlying semiring is not defined (only applies to matrices with run time arithmetic). |
|
staticconstexpr |
Defined in is-matrix.hpp.
This variable has value true if the template parameter T is the same as MinPlusTruncMat for some template parameters; and false if it is not.
| T | the type to check. |