1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

math: add some benchmark tests (#12142)

This commit is contained in:
Ulises Jeremias Cornejo Fandos
2021-10-11 08:20:07 -03:00
committed by GitHub
parent 3e02cfd528
commit 35b301f73c
3 changed files with 546 additions and 49 deletions

View File

@ -1,31 +1,15 @@
module math
fn C.cos(x f64) f64
fn C.cosf(x f32) f32
fn C.sin(x f64) f64
fn C.sinf(x f32) f32
// cos calculates cosine.
[inline]
pub fn cos(a f64) f64 {
return C.cos(a)
}
// cosf calculates cosine. (float32)
[inline]
pub fn cosf(a f32) f32 {
return C.cosf(a)
}
// sin calculates sine.
[inline]
pub fn sin(a f64) f64 {
return C.sin(a)
}
// sinf calculates sine. (float32)
[inline]
pub fn sinf(a f32) f32 {