@@ -649,9 +649,9 @@ i1(u) = u
649
649
itoo (y, u, p, a) = y .= u * p
650
650
651
651
IntegralFunction (ioop)
652
+ IntegralFunction (ioop, 0.0 )
652
653
IntegralFunction (iiip, Float64[])
653
654
654
- @test_throws SciMLBase. IntegrandMismatchFunctionError IntegralFunction (ioop, Float64[])
655
655
@test_throws SciMLBase. IntegrandMismatchFunctionError IntegralFunction (iiip)
656
656
@test_throws SciMLBase. TooFewArgumentsError IntegralFunction (i1)
657
657
@test_throws SciMLBase. TooManyArgumentsError IntegralFunction (itoo)
@@ -666,10 +666,11 @@ bitoo(y, u, p, a) = y .= p .* u
666
666
667
667
BatchIntegralFunction (boop)
668
668
BatchIntegralFunction (boop, max_batch = 20 )
669
+ BatchIntegralFunction (boop, Float64[])
670
+ BatchIntegralFunction (boop, Float64[], max_batch = 20 )
669
671
BatchIntegralFunction (biip, Float64[])
670
672
BatchIntegralFunction (biip, Float64[], max_batch = 20 )
671
673
672
- @test_throws SciMLBase. IntegrandMismatchFunctionError BatchIntegralFunction (boop, Float64[])
673
674
@test_throws SciMLBase. IntegrandMismatchFunctionError BatchIntegralFunction (biip)
674
675
@test_throws SciMLBase. TooFewArgumentsError BatchIntegralFunction (bi1)
675
676
@test_throws SciMLBase. TooManyArgumentsError BatchIntegralFunction (bitoo)
0 commit comments