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 9bb2cb9 commit d5d7a81Copy full SHA for d5d7a81
test/prima.jl
@@ -98,3 +98,17 @@ end
98
99
@test startswith(out, expected)
100
end
101
+
102
+@testset "instvalfits" begin # repeat the fits from the Blocked Cholesky paper
103
+ dat = dataset(:insteval)
104
+ f1 = @formula(y ~ 1 + service + (1|s) + (1|d) + (1|dept) + (0 + service|dept))
105
+ progress = false
106
+ m1 = fit(MixedModel, f1, dat; progress)
107
+ println(m1)
108
+ println(m1.optsum)
109
+ @test isapprox(objective(m1), 237648.6016)
110
+ prfit!(m1; progress)
111
112
113
114
+end
0 commit comments