This commit is contained in:
Gaspard Jankowiak 2025-02-10 12:08:26 +01:00
commit 76136dbc05
7 changed files with 303 additions and 0 deletions

4
test/trig_functions.jl Normal file
View file

@ -0,0 +1,4 @@
@testset "trigonometric functions" begin
@test TaylorTest.check(x -> cos(x), x -> -sin(x), 2π * rand())
@test TaylorTest.check(x -> sin(x), x -> cos(x), 2π * rand())
end