You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/airyai.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# AiryAi(x)
2
2
printstyled("Performing the Airy Ai(x) test, where Ai(x) is integrated on the semi-infinite domain, or an approximation of it, namely [0,100] and the result is compared to the analytical result 1/3.\n"; color =:red)
3
3
@testset"Airy Ai(x)"begin
4
+
printstyled("Running: adaptive_simpsons_rule\n"; color =:magenta)
Copy file name to clipboardExpand all lines: test/besselj.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,8 @@ end
5
5
6
6
printstyled("Performing the besselj test, where BesselJ_1(2) is approximated and the result is compared to the value obtained from SpecialFunctions' besselj function.\n"; color =:red)
7
7
@testset"besselj"begin
8
+
printstyled("Running: adaptive_simpsons_rule with ε=1e-7\n"; color =:magenta)
Copy file name to clipboardExpand all lines: test/expnx2datan.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@ sol_9 = exp(1)*pi*erfc(1);
3
3
4
4
printstyled("Integrating e^(-x^2)/(1+x^2) on the infinite domain [-inf, inf], or failing that on [-100,100], and comparing it to the analytical result exp(1)*pi*erfc(1)\n"; color =:red)
5
5
@testset"expnx2datan"begin
6
+
printstyled("Running: adaptive_simpsons_rule with ε=1e-7\n"; color =:magenta)
Copy file name to clipboardExpand all lines: test/gaussian.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
# Gaussian curve test
2
2
printstyled("Integrate exp(-x^2) from minus infinity to positive infinity and comparing the result to the analytical solution, sqrt(pi)\n"; color =:red)
3
3
@testset"Gaussian"begin
4
+
printstyled("Running: adaptive_simpsons_rule with ε=1e-7\n"; color =:magenta)
0 commit comments