We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e81cec0 commit bab1317Copy full SHA for bab1317
2 files changed
src/frontend/specification/Sem.jl
@@ -183,6 +183,7 @@ end
183
############################################################################################
184
185
params(model::AbstractSem) = model.params
186
+param_labels(model::AbstractSem) = params(model) # alias
187
188
"""
189
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