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