Skip to content

Commit

Permalink
Merge c2b8c3a into 65efd6b
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgAUT committed Mar 12, 2021
2 parents 65efd6b + c2b8c3a commit acaec6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bases/dictionary/gram.jl
Expand Up @@ -51,10 +51,10 @@ innerproduct2(Φ1, i, Φ2::Dictionary, j, measure; options...) =


# Make a quadrature strategy using user-supplied atol and rtol if they were given
function quadstrategy(::Type{T}; atol = 0, rtol = -1, options...) where {T}
function quadstrategy(::Type{T}; atol = 0, rtol = -1, maxeval=1e4 , options...) where {T}
if (rtol > 0)
# rtol does not equal -1 so it must have been supplied
QuadAdaptive{T}(atol, rtol)
QuadAdaptive{T}(atol, rtol, maxeval)
else
# use defaults
QuadAdaptive{T}()
Expand Down

0 comments on commit acaec6d

Please sign in to comment.