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 1b991fd commit ab4899bCopy full SHA for ab4899b
test/benchmark.jl
@@ -1,3 +1,5 @@
1
+module _benchmark
2
+
3
using Pkg; Pkg.activate(joinpath(dirname(@__DIR__), "benchmark"))
4
using DAECompiler
5
using DAECompiler: compute_residual_vectors
@@ -22,3 +24,5 @@ end
22
24
let sol = solve(DAECProblem(Benchmark{3}(), [1:9;] .=> 0.), IDA())
23
25
@test_broken sol.retcode == ReturnCode.Success
26
end
27
28
+end # module _benchmark
test/validation.jl
+module _validation
using DAECompiler: refresh, compute_residual_vectors
@@ -235,3 +237,5 @@ end
235
237
@test residuals ≈ expanded_residuals
236
238
239
end;
240
241
+end # module _validation
0 commit comments