2017-02-13 01:17:09 +08:00
|
|
|
//! Compatibility constraints between matrix shapes, e.g., for addition or multiplication.
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
use crate::base::dimension::{Dim, DimName, Dyn};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-02-13 01:17:09 +08:00
|
|
|
/// A type used in `where` clauses for enforcing constraints.
|
2021-07-28 07:18:29 +08:00
|
|
|
#[derive(Copy, Clone, Debug)]
|
2016-12-05 05:44:42 +08:00
|
|
|
pub struct ShapeConstraint;
|
|
|
|
|
2023-08-10 11:57:51 +08:00
|
|
|
/// Constrains `C1` and `R2` to be equivalent.
|
2018-02-02 19:26:35 +08:00
|
|
|
pub trait AreMultipliable<R1: Dim, C1: Dim, R2: Dim, C2: Dim>: DimEq<C1, R2> {}
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2020-04-06 00:49:48 +08:00
|
|
|
impl<R1: Dim, C1: Dim, R2: Dim, C2: Dim> AreMultipliable<R1, C1, R2, C2> for ShapeConstraint where
|
|
|
|
ShapeConstraint: DimEq<C1, R2>
|
|
|
|
{
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2023-08-10 11:57:51 +08:00
|
|
|
/// Constrains `D1` and `D2` to be equivalent.
|
2017-08-03 01:37:44 +08:00
|
|
|
pub trait DimEq<D1: Dim, D2: Dim> {
|
|
|
|
/// This is either equal to `D1` or `D2`, always choosing the one (if any) which is a type-level
|
|
|
|
/// constant.
|
|
|
|
type Representative: Dim;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: Dim> DimEq<D, D> for ShapeConstraint {
|
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> DimEq<D, Dyn> for ShapeConstraint {
|
2017-08-03 01:37:44 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> DimEq<Dyn, D> for ShapeConstraint {
|
2017-08-03 01:37:44 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
macro_rules! equality_trait_decl(
|
2017-02-13 01:17:09 +08:00
|
|
|
($($doc: expr, $Trait: ident),* $(,)*) => {$(
|
2023-08-10 11:57:51 +08:00
|
|
|
// XXX: we can't do something like `DimEq<D1> for D2` because we would require a blanket impl…
|
2017-02-13 01:17:09 +08:00
|
|
|
#[doc = $doc]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub trait $Trait<D1: Dim, D2: Dim>: DimEq<D1, D2> + DimEq<D2, D1> {
|
2017-02-13 01:17:09 +08:00
|
|
|
/// This is either equal to `D1` or `D2`, always choosing the one (if any) which is a type-level
|
|
|
|
/// constant.
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative: Dim;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: Dim> $Trait<D, D> for ShapeConstraint {
|
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> $Trait<D, Dyn> for ShapeConstraint {
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> $Trait<Dyn, D> for ShapeConstraint {
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
)*}
|
|
|
|
);
|
|
|
|
|
2017-02-13 01:17:09 +08:00
|
|
|
equality_trait_decl!(
|
2023-08-10 11:57:51 +08:00
|
|
|
"Constrains `D1` and `D2` to be equivalent. \
|
2017-02-13 01:17:09 +08:00
|
|
|
They are both assumed to be the number of \
|
|
|
|
rows of a matrix.",
|
|
|
|
SameNumberOfRows,
|
2023-08-10 11:57:51 +08:00
|
|
|
"Constrains `D1` and `D2` to be equivalent. \
|
2017-02-13 01:17:09 +08:00
|
|
|
They are both assumed to be the number of \
|
|
|
|
columns of a matrix.",
|
|
|
|
SameNumberOfColumns
|
|
|
|
);
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2023-08-10 11:57:51 +08:00
|
|
|
/// Constrains D1 and D2 to be equivalent, where they both designate dimensions of algebraic
|
2016-12-05 05:44:42 +08:00
|
|
|
/// entities (e.g. square matrices).
|
2018-10-22 13:00:10 +08:00
|
|
|
pub trait SameDimension<D1: Dim, D2: Dim>:
|
|
|
|
SameNumberOfRows<D1, D2> + SameNumberOfColumns<D1, D2>
|
|
|
|
{
|
2017-02-13 01:17:09 +08:00
|
|
|
/// This is either equal to `D1` or `D2`, always choosing the one (if any) which is a type-level
|
|
|
|
/// constant.
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative: Dim;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: Dim> SameDimension<D, D> for ShapeConstraint {
|
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> SameDimension<D, Dyn> for ShapeConstraint {
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|
|
|
|
|
2023-01-14 23:22:27 +08:00
|
|
|
impl<D: DimName> SameDimension<Dyn, D> for ShapeConstraint {
|
2016-12-05 05:44:42 +08:00
|
|
|
type Representative = D;
|
|
|
|
}
|