sci-form 0.15.2

High-performance 3D molecular conformer generation using ETKDG distance geometry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! E11: Growing String Method (GSM)
//!
//! Reaction path and transition state finder driven by force-field gradients.
//! Grows a string of images from reactant and product geometries toward
//! the transition state without requiring an initial path guess.

pub mod backend;
pub mod saddle;
pub mod string;

pub use backend::{
    compare_gsm_backends, evaluate_gsm_backend, find_transition_state_with_backend,
    plan_gsm_backends, plan_gsm_backends_for_smiles, GsmBackendCapability, GsmBackendEvaluation,
    GsmBackendStatus, GsmEnergyBackend,
};
pub use saddle::{find_transition_state, refine_saddle, GsmResult};
pub use string::{grow_string, interpolate_node, GsmConfig, GsmPath};