chematic-perception 0.1.0

Molecular perception: SSSR ring detection and aromaticity for chematic — pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `chematic-perception` — molecular perception algorithms.
//!
//! Provides:
//! - [`sssr`]: Smallest Set of Smallest Rings (SSSR) via Balducci-Pearlman algorithm.
//! - [`aromaticity`]: Hückel aromaticity perception for kekulized molecules.

#![forbid(unsafe_code)]

pub mod aromaticity;
pub mod sssr;

pub use aromaticity::{AromaticityModel, assign_aromaticity};
pub use sssr::{RingSet, find_sssr};