We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878afb6 commit 49c6523Copy full SHA for 49c6523
src/integration.jl
@@ -22,8 +22,9 @@ function integrate(
22
f,
23
a::Vector{ValueType},
24
b::Vector{ValueType};
25
- tolerance=1e-8,
26
- GKorder::Int=15
+ GKorder::Int=15,
+ normalizeerror=false,
27
+ kwargs...
28
) where {ValueType}
29
if iseven(GKorder)
30
error("Gauss--Kronrod order must be odd, e.g. 15 or 61.")
@@ -50,7 +51,9 @@ function integrate(
50
51
ValueType,
52
F,
53
localdims;
- tolerance
54
+ nsearchglobalpivot=10,
55
+ normalizeerror,
56
57
)
58
59
return sum(tci2) / normalization
0 commit comments