//! Data types used to drive computations within AR.
//! While most of the arthroprod library functions will accept anything that impliments
//! the [`AR`] trait, the primary unit of computation is the [`MultiVector`]. This is in
//! keeping with the way that we work by hand, with [`Term`] and [`Alpha`] values being
//! considered rarely. That said, in some cases we make use of "raw" Alphas to implement
//! certain conjugates and commutators.
pub use ALLOWED_ALPHA_STRINGS;
pub use ;
pub use ;
pub use Magnitude;
pub use MultiVector;
pub use Term;
pub use Xi;