We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4726745 commit 4b8c406Copy full SHA for 4b8c406
2 files changed
src/frontend/specification/Sem.jl
@@ -200,6 +200,7 @@ end
200
############################################################################################
201
202
params(model::AbstractSem) = model.params
203
+param_labels(model::AbstractSem) = params(model) # alias
204
205
"""
206
loss_terms(model::AbstractSem)
src/implied/abstract.jl
@@ -8,6 +8,7 @@ nobserved_vars(implied::SemImplied) = nobserved_vars(implied.ram_matrices)
8
nlatent_vars(implied::SemImplied) = nlatent_vars(implied.ram_matrices)
9
10
param_labels(implied::SemImplied) = param_labels(implied.ram_matrices)
11
+params(implied::SemImplied) = param_labels(implied)
12
nparams(implied::SemImplied) = nparams(implied.ram_matrices)
13
14
# checks if the A matrix is acyclic
0 commit comments