@@ -716,7 +716,7 @@ function build_null_solution(prob::AbstractDEProblem, args...;
716
716
717
717
prob, success = hack_null_solution_init (prob)
718
718
retcode = success ? ReturnCode. Success : ReturnCode. InitialFailure
719
- build_solution (prob, nothing , ts, timeseries, retcode)
719
+ build_solution (prob, nothing , ts, timeseries; retcode)
720
720
end
721
721
722
722
function build_null_solution (
@@ -731,8 +731,7 @@ function build_null_solution(
731
731
kwargs... )
732
732
prob, success = hack_null_solution_init (prob)
733
733
retcode = success ? ReturnCode. Success : ReturnCode. InitialFailure
734
- SciMLBase. build_solution (prob, nothing , Float64[], nothing ;
735
- retcode)
734
+ SciMLBase. build_solution (prob, nothing , Float64[], nothing ; retcode)
736
735
end
737
736
738
737
function build_null_solution (
@@ -752,8 +751,7 @@ function build_null_solution(
752
751
retcode = norm (resid) < abstol ? ReturnCode. Success : ReturnCode. Failure
753
752
end
754
753
755
- SciMLBase. build_solution (prob, nothing , Float64[], resid;
756
- retcode)
754
+ SciMLBase. build_solution (prob, nothing , Float64[], resid; retcode)
757
755
end
758
756
759
757
"""
0 commit comments