Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/varnamedvector.jl
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,12 @@ struct VarNamedVector{
transforms::TTrans

"""
vector of booleans indicating whether a variable has been transformed to unconstrained
Euclidean space or not, i.e. whether its domain is all of `ℝ^ⁿ`. Having
`is_unconstrained[varname_to_index[vn]] == false` does not necessarily mean that a
variable is constrained, but rather that it's not guaranteed to not be.
vector of booleans indicating whether a variable has been explicitly transformed to
unconstrained Euclidean space, i.e. whether its domain is all of `ℝ^ⁿ`. If
`is_unconstrained[varname_to_index[vn]]` is true, it guarantees that the variable
`vn` is not constrained. However, the converse does not hold: if `is_unconstrained`
is false, the variable `vn` may still happen to be unconstrained, e.g. if its
original distribution is itself unconstrained (like a normal distribution).
"""
is_unconstrained::BitVector

Expand Down
Loading