|
113 | 113 | solution_ml = sem_fit(model_ml) |
114 | 114 | test_fitmeasures(fit_measures(solution_ml), solution_lav[:fitmeasures_ml]; atol = 1e-3) |
115 | 115 |
|
116 | | - update_partable!(partable, identifier(model_ml), se_hessian(solution_ml), :se) |
| 116 | + update_se_hessian!(partable, solution_ml) |
117 | 117 | @test compare_estimates( |
118 | 118 | partable, |
119 | 119 | solution_lav[:parameter_estimates_ml]; |
|
134 | 134 | ) |
135 | 135 | @test (fm[:AIC] === missing) & (fm[:BIC] === missing) & (fm[:minus2ll] === missing) |
136 | 136 |
|
137 | | - update_partable!(partable, identifier(model_ls_sym), se_hessian(solution_ls), :se) |
| 137 | + update_se_hessian!(partable, solution_ls) |
138 | 138 | @test compare_estimates( |
139 | 139 | partable, |
140 | 140 | solution_lav[:parameter_estimates_ls]; |
|
278 | 278 | atol = 1e-3, |
279 | 279 | ) |
280 | 280 |
|
281 | | - update_partable!(partable_mean, identifier(model_ml), se_hessian(solution_ml), :se) |
| 281 | + update_se_hessian!(partable_mean, solution_ml) |
282 | 282 | @test compare_estimates( |
283 | 283 | partable_mean, |
284 | 284 | solution_lav[:parameter_estimates_ml_mean]; |
|
299 | 299 | ) |
300 | 300 | @test (fm[:AIC] === missing) & (fm[:BIC] === missing) & (fm[:minus2ll] === missing) |
301 | 301 |
|
302 | | - update_partable!(partable_mean, identifier(model_ls), se_hessian(solution_ls), :se) |
| 302 | + update_se_hessian!(partable_mean, solution_ls) |
303 | 303 | @test compare_estimates( |
304 | 304 | partable_mean, |
305 | 305 | solution_lav[:parameter_estimates_ls_mean]; |
|
371 | 371 | atol = 1e-3, |
372 | 372 | ) |
373 | 373 |
|
374 | | - update_partable!(partable_mean, identifier(model_ml), se_hessian(solution_ml), :se) |
| 374 | + update_se_hessian!(partable_mean, solution_ml) |
375 | 375 | @test compare_estimates( |
376 | 376 | partable_mean, |
377 | 377 | solution_lav[:parameter_estimates_fiml]; |
|
0 commit comments