Skip to content

Commit

Permalink
fix: bates struct pub fields
Browse files Browse the repository at this point in the history
  • Loading branch information
dancixx committed Jul 26, 2024
1 parent a72c707 commit 98e8ba3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stochastic-rs"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "MIT"
description = "A Rust library for stochastic processes"
Expand Down
22 changes: 11 additions & 11 deletions src/jumps/bates.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ use crate::prelude::{

#[derive(Default)]
pub struct Bates1996 {
mu: f64,
kappa: f64,
theta: f64,
eta: f64,
rho: f64,
lambda: f64,
n: usize,
s0: Option<f64>,
v0: Option<f64>,
t: Option<f64>,
use_sym: Option<bool>,
pub mu: f64,
pub kappa: f64,
pub theta: f64,
pub eta: f64,
pub rho: f64,
pub lambda: f64,
pub n: usize,
pub s0: Option<f64>,
pub v0: Option<f64>,
pub t: Option<f64>,
pub use_sym: Option<bool>,
}

pub fn bates_1996(
Expand Down

0 comments on commit 98e8ba3

Please sign in to comment.