sci-form 0.15.1

High-performance 3D molecular conformer generation using ETKDG distance geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Batch transport layer for conformer results.
//!
//! - [`arrow`] — Apache Arrow columnar encoding for zero-copy interop.
//! - [`chunked`] — Splitting large SMILES lists into balanced chunks.
//! - [`worker`] — Task subdivision and worker count estimation for Web Workers.

pub mod arrow;
pub mod chunked;
pub mod worker;

pub use arrow::*;
pub use chunked::*;
pub use worker::*;