1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
//! 代数的構造に関するトレイトたちです。
//!
//! データ構造を実装する際に使うことを目的とします。
/// マグマ。
///
/// 集合 $M$ と二項演算 $\\circ$ のペア $(M, \\circ)$ であり、次の性質を満たす。
/// $$ x, y \\in M \\implies x \\circ y \\in M. $$
///
/// # Examples
/// ```
/// use nekolib::traits::Magma;
/// use nekolib::utils::OpMin;
///
/// let op_min = OpMin::default();
/// assert_eq!(3, op_min.op(3, 4));
/// ```
pub trait Magma {
/// 集合 $M$ に対応する型。
type Set: Eq;
/// $x \\circ y$ を返す。
fn op(&self, x: Self::Set, y: Self::Set) -> Self::Set;
}
/// 結合法則を満たす。
///
/// 二項演算 $\\circ: M \\times M \\to M$ が結合法則を満たすことを示す。
/// $$ x, y, z \\in M \\implies (x \\circ y) \\circ z = x \\circ (y \\circ z). $$
/// # Examples
/// ```
/// use nekolib::traits::{Associative, Magma};
/// use nekolib::utils::OpMin;
///
/// let (x, y, z) = (2, 3, 4);
/// let op_min = OpMin::default();
/// assert_eq!(
/// op_min.op(op_min.op(x, y), z),
/// op_min.op(x, op_min.op(y, z)),
/// );
/// ```
pub trait Associative: Magma {}
/// 単位元を持つ。
///
/// 二項演算 $\\circ: M \\times M \\to M$ が単位元を持つことを示す。
/// $$ x \\in M \\implies x \\circ e = e \\circ x = e. $$
///
/// # Examples
/// ```
/// use nekolib::traits::{Identity, Magma};
/// use nekolib::utils::OpMin;
///
/// let op_min = OpMin::default();
/// let x = 3;
/// assert_eq!(op_min.id(), std::i32::MAX);
/// assert_eq!(op_min.op(x, op_min.id()), x);
/// ```
pub trait Identity: Magma {
/// 単位元を返す。
fn id(&self) -> Self::Set;
}
/// 交換法則を満たす。
///
/// 二項演算 $\\circ: M \\times M \\to M$ が交換法則を満たすことを示す。
/// $$ x, y \\in M \\implies x \\circ y = y \\circ x. $$
/// 交換法則を満たさない演算の例としては、文字列結合や線形関数の合成、行列積などが挙げられる。
///
/// # Examples
/// ```
/// use nekolib::traits::{Commutative, Magma};
/// use nekolib::utils::OpMin;
///
/// let op_min = OpMin::default();
/// let (x, y) = (3, 4);
/// assert_eq!(op_min.op(x, y), op_min.op(y, x));
/// ```
pub trait Commutative: Magma {}
/// 逆元を持つ要素が存在する。
///
/// 二項演算 $\\circ: M \\times M \\to M$ が、一部の要素を除いて逆元を持つことを示す。
///
/// 体の乗法においては $0$ を除いて逆元を持つことが要請されるため必要かなと思った。
/// もっといい設計はある気がする。
pub trait PartialRecip: Magma {
fn partial_recip(&self, x: Self::Set) -> Option<Self::Set>;
}
/// 逆元が常に存在する。
///
/// 二項演算 $\\circ: M \\times M \\to M$ が、常に逆元を持つことを示す。
/// $$ x \\in M \\implies {}^\\exists a \\in M: x \\circ a = a \\circ x = e. $$
/// この $a$ を $x^{-1}$ と書く。
///
/// # Examples
/// ```
/// use nekolib::traits::{Magma, Monoid, Recip};
/// use nekolib::utils::OpAdd;
///
/// let op_add = OpAdd::default();
/// let x = 3;
/// let y = op_add.recip(x);
/// assert_eq!(op_add.op(x, y), 0);
/// ```
pub trait Recip: PartialRecip {
fn recip(&self, x: Self::Set) -> Self::Set {
self.partial_recip(x).unwrap()
}
}
/// 分配法則を満たす。
///
/// 乗法 $\\ast: M \\times M \\to M$ は、加法 $\\circ: M \\times M \\to M$ について
/// 分配法則を満たすことを示す。
/// $$ \\begin{aligned}
/// x, y, z \\in R &\\implies x \\ast (y \\circ z) = (x \\ast y) \\circ (x \\ast z), \\\\
/// x, y, z \\in R &\\implies (y \\circ z) \\ast x = (y \\ast x) \\circ (z \\ast x).
/// \\end{aligned} $$
/// 加法は型引数 `A` として指定される。
///
/// # Examples
/// ```
/// use nekolib::traits::{Commutative, Magma};
/// use nekolib::utils::{OpAdd, OpMul};
///
/// let op_add = OpAdd::default();
/// let op_mul = OpMul::default();
/// let (x, y, z) = (3, 4, 5);
/// assert_eq!(
/// op_mul.op(x, op_add.op(y, z)),
/// op_add.op(op_mul.op(x, y), op_mul.op(x, z))
/// );
/// ```
pub trait Distributive<A: Magma> {}
/// 半群。
///
/// マグマ $(M, \\circ)$ であり、結合法則を満たす。
pub trait Semigroup: Associative + Magma {}
impl<G: Associative + Magma> Semigroup for G {}
/// モノイド。
///
/// 半群 $(M, \\circ)$ であり、単位元 $e \\in M$ を持つ。
pub trait Monoid: Identity + Semigroup {}
impl<G: Identity + Semigroup> Monoid for G {}
/// 可換モノイド。
///
/// モノイド $(M, \\circ, e)$ であり、交換法則を満たす。
pub trait CommutativeMonoid: Commutative + Monoid {}
impl<G: Commutative + Monoid> CommutativeMonoid for G {}
/// 群。
///
/// モノイド $(M, \\circ, e)$ であり、逆元を持つ。
pub trait Group: Monoid + Recip {}
impl<G: Monoid + Recip> Group for G {}
/// 可換群。
///
/// 群 $(M, \\circ, e)$ であり、交換法則を満たす。
pub trait CommutativeGroup: Commutative + Monoid + Recip {}
impl<G: Commutative + Monoid + Recip> CommutativeGroup for G {}
/// 環。
///
/// 集合 $R$ と二つの二項演算 $\\circ$, $\\ast$ の組 $(R, \\circ, \\ast)$ であり、次の性質を満たす。
/// - $(R, \\circ, 0)$ は可換群をなす。
/// - $(R, \\ast, 1)$ はモノイドをなす。
/// - 乗法 $\\ast$ は加法 $\\circ$ について分配法則を満たす。
pub trait Ring {
/// 集合 $R$ に対応する型。
type Set: Eq;
/// 可換群 $(R, \\circ, 0)$ に対応する型。
type Additive: CommutativeGroup<Set = Self::Set>;
/// モノイド $(R, \\ast, 1)$ に対応する型。
type Multiplicative: Monoid<Set = Self::Set> + Distributive<Self::Additive>;
fn additive(&self) -> &Self::Additive;
fn multiplicative(&self) -> &Self::Multiplicative;
/// 和 $x \\circ y$ を返す。
fn add(&self, x: Self::Set, y: Self::Set) -> Self::Set {
self.additive().op(x, y)
}
/// 加法 $\\circ$ の単位元 $0$ を返す。
#[must_use]
fn zero(&self) -> Self::Set { self.additive().id() }
/// 加法 $\\circ$ に関する $x$ の逆元 $-x$ を返す。
fn neg(&self, x: Self::Set) -> Self::Set { self.additive().recip(x) }
/// 積 $x \\ast y$ を返す。
fn mul(&self, x: Self::Set, y: Self::Set) -> Self::Set {
self.multiplicative().op(x, y)
}
/// 乗法 $\\ast$ の単位元 $1$ を返す。
#[must_use]
fn one(&self) -> Self::Set { self.multiplicative().id() }
}
/// 可換環。
///
/// 環 $(R, \\circ, \\ast, 0, 1)$ であり、$(R, \\ast, 1)$ は可換モノイドをなす。
pub trait CommutativeRing: Ring
where
Self::Multiplicative: Commutative,
{
}
/// 体。
///
/// 環 $(R, \\circ, \\ast, 0, 1)$ であり、$(R \\setminus \\{0\\}, \\ast, 1)$ は群をなす。
pub trait Field: Ring
where
Self::Multiplicative: PartialRecip,
{
/// 乗法 $\\ast$ における関する $x$ の逆元 $x^{-1}$ を返す。
fn recip(&self, x: Self::Set) -> Self::Set {
if x == self.additive().id() {
panic!("zero element does not have multiplicative inverse");
} else {
self.multiplicative().partial_recip(x).unwrap()
}
}
}
#[macro_export]
macro_rules! new_monoid {
( $ident:ident = ($ty:ty, $op:expr, $id:expr) ) => {
struct $ident;
impl Magma for $ident {
type Set = $ty;
fn op(&self, x: $ty, y: $ty) -> $ty { ($op)(x, y) }
}
impl Associative for $ident {}
impl Identity for $ident {
fn id(&self) -> $ty { $id }
}
impl Default for $ident {
fn default() -> Self { Self }
}
};
( $ident:ident = ($ty:ty, $op:expr, $id:expr, +commutative) ) => {
struct $ident;
impl Magma for $ident {
type Set = $ty;
fn op(&self, x: $ty, y: $ty) -> $ty { ($op)(x, y) }
}
impl Associative for $ident {}
impl Identity for $ident {
fn id(&self) -> $ty { $id }
}
impl Commutative for $ident {}
impl Default for $ident {
fn default() -> Self { Self }
}
};
( $ident:ident = ($ty:ty, $op:expr, $id:expr, $recip:expr) ) => {
struct $ident;
impl Magma for $ident {
type Set = $ty;
fn op(&self, x: $ty, y: $ty) -> $ty { ($op)(x, y) }
}
impl Associative for $ident {}
impl Identity for $ident {
fn id(&self) -> $ty { $id }
}
impl Recip for $ident {
fn recip(&self, x: $ty) -> $ty { ($recip)($x) }
}
impl PartialRecip for $ident {
fn partial_recip(&self, x: $ty) -> Option<$ty> {
Some(self.recip(x))
}
}
impl Default for $ident {
fn default() -> Self { Self }
}
};
( $ident:ident = ($ty:ty, $op:expr, $id:expr, $recip:expr, +commutative) ) => {
struct $ident;
impl Magma for $ident {
type Set = $ty;
fn op(&self, x: $ty, y: $ty) -> $ty { ($op)(x, y) }
}
impl Associative for $ident {}
impl Identity for $ident {
fn id(&self) -> $ty { $id }
}
impl Recip for $ident {
fn recip(&self, x: $ty) -> $ty { ($recip)(x) }
}
impl PartialRecip for $ident {
fn partial_recip(&self, x: $ty) -> Option<$ty> {
Some(self.recip(x))
}
}
impl Commutative for $ident {}
impl Default for $ident {
fn default() -> Self { Self }
}
};
}
#[test]
fn sanity_check() {
new_monoid! { OpXor1 = (u32, |x, y| x ^ y, 0, |x| x, +commutative) }
let monoid = OpXor1::default();
assert_eq!(monoid.id(), 0);
assert_eq!(monoid.op(2, 3), 1);
assert_eq!(monoid.recip(4), 4);
}