You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/mmap.jl
+14-12Lines changed: 14 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,11 @@ Computing the most likely assignment to the query variables, Xₘ ⊆ X after m
17
17
```
18
18
19
19
### Fields
20
-
* `vars` is the remaining (or not marginalized) degree of freedoms in the tensor network.
20
+
* `vars` is the query variables in the tensor network.
21
21
* `code` is the tropical tensor network contraction pattern.
22
22
* `tensors` is the tensors fed into the tensor network.
23
23
* `clusters` is the clusters, each element of this cluster is a [`TensorNetworkModel`](@ref) instance for marginalizing certain variables.
24
-
* `fixedvertices` is a dictionary to specifiy degree of freedoms fixed to certain values, which should not have overlap with the marginalized variables.
24
+
* `fixedvertices` is a dictionary to specifiy degree of freedoms fixed to certain values, which should not have overlap with the query variables.
25
25
"""
26
26
struct MMAPModel{LT, AT <:AbstractArray}
27
27
vars::Vector{LT}
@@ -37,7 +37,7 @@ function Base.show(io::IO, mmap::MMAPModel)
0 commit comments