/*
* SPDX-License-Identifier: MIT
* Copyright (c) 2023 - 2026. The DeepCausality Authors and Contributors. All Rights Reserved.
*/
use ;
/// An Additive Magma.
///
/// Definition: A set equipped with a binary operation `+`.
///
/// Requirements:
/// 1. Closure: If `a` and `b` are in the set, `a + b` is in the set.
///
/// It does NOT guarantee Associativity: (a + b) + c != a + (b + c).
/// It does NOT guarantee Identity (Zero).
// Blanket Implementation
// A Magma is just a set with multiplication (No laws guaranteed).
// Octonions live here.