libome-rs 0.0.1

Rust bindings for libome, a C++ library for massive QCD operator matrix elements in x-space.
Documentation
//! Polarized operator matrix elements.
//!
//! This module contains the nine polarized (ΔA) OMEs of the variable flavour
//! number scheme. These are the longitudinally polarized counterparts of the
//! unpolarized OMEs. Three of them ([`PolAqqQNSEven`], [`PolAqqQNSOdd`],
//! [`PolAggQ`]) have regular, plus, and delta parts. The remaining six have
//! only a regular part.

pub mod a_qg;
pub mod a_qq_ps;
pub mod a_qq_ps_s;
pub mod agg_q;
pub mod agq_q;
pub mod aqg_q;
pub mod aqq_q_ns_even;
pub mod aqq_q_ns_odd;
pub mod aqq_q_ps;

pub use a_qg::PolAQg;
pub use a_qq_ps::PolAQqPS;
pub use a_qq_ps_s::PolAQqPSs;
pub use agg_q::PolAggQ;
pub use agq_q::PolAgqQ;
pub use aqg_q::PolAqgQ;
pub use aqq_q_ns_even::PolAqqQNSEven;
pub use aqq_q_ns_odd::PolAqqQNSOdd;
pub use aqq_q_ps::PolAqqQPS;