//! Molecular typifiers.
//!
//! A typifier assigns force-field type IDs to a molecular graph, returning the
//! same concrete graph type with labels attached. Materializing a typed graph
//! into a [`Frame`](molrs::store::frame::Frame) for `ForceField::to_potentials`
//! is the graph's `to_frame` job; typifiers stay on the graph boundary.
pub
pub use OPLSAATypifier;
/// A graph typifier.
///
/// `Mol` is the concrete graph type the typifier accepts and returns. Force
/// fields that only make sense for all-atom systems set `Mol = Atomistic`;
/// future united-atom or coarse-grained typifiers can set a different graph
/// type while preserving the `typify(T) -> T` contract.