aboutsummaryrefslogtreecommitdiff
path: root/src/math/tgammaf.rs
blob: 23e3814f99fd1735f7beabd5b7a2230c10147e63 (plain)
1
2
3
4
5
6
use super::tgamma;

#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn tgammaf(x: f32) -> f32 {
    tgamma(x as f64) as f32
}