Skip to content

Commit

Permalink
fix: made FundamentalPeriod fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
ariostas committed May 7, 2024
1 parent 5e07b25 commit ecc544c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fundamental_period.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,10 @@ fn compute_c_2neg<T>(
/// c0 is the fundamental period, while c1 and c2 are the first and second derivatives of the coefficients.
/// c0_inv is the inverse of the fundamental period.
pub struct FundamentalPeriod<T> {
c0: Polynomial<T>,
c1: Vec<Polynomial<T>>,
c2: HashMap<(u32, u32), Polynomial<T>>,
c0_inv: Polynomial<T>,
pub c0: Polynomial<T>,
pub c1: Vec<Polynomial<T>>,
pub c2: HashMap<(u32, u32), Polynomial<T>>,
pub c0_inv: Polynomial<T>,
}

// -> Result<(Polynomial<T>,Vec<Polynomial<T>>,HashMap<(u32,u32),Polynomial<T>>),FundamentalPeriodError>
Expand Down

0 comments on commit ecc544c

Please sign in to comment.