bridgestan 2.7.0

Rust interface for BridgeStan
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]

mod bs_safe;
mod compile;
#[cfg(feature = "download-bridgestan-src")]
mod download;
pub(crate) mod ffi;

pub use bs_safe::{open_library, BridgeStanError, Model, Rng, StanLibrary};
pub use compile::compile_model;

#[cfg(feature = "download-bridgestan-src")]
pub use download::download_bridgestan_src;

pub const VERSION: &str = env!("CARGO_PKG_VERSION");