Skip to content

Commit

Permalink
Merge pull request #289 from Amjad50/remove_unneeded_extern_core
Browse files Browse the repository at this point in the history
Remove unneeded `extern core` in `tgamma`
  • Loading branch information
Amanieu authored Feb 21, 2024
2 parents 64ef452 + 72fdabe commit f21d751
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/math/tgamma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Gamma(x)*Gamma(-x) = -pi/(x sin(pi x))
most ideas and constants are from boost and python
*/
extern crate core;
use super::{exp, floor, k_cos, k_sin, pow};

const PI: f64 = 3.141592653589793238462643383279502884;
Expand Down

0 comments on commit f21d751

Please sign in to comment.