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
As we discussed, a simple implementation would be internal_edges(g::AbstractGraph, vertices) = edges(subgraph(g, vertices)). Then this function could be defined as internal_edges(P::AbstractProjTTNO) = internal_edges(underlying_graph(P), sites(P)).
This is a good idea for a generic graph function. It is the complement of the edge boundary of a subgraph (https://en.wikipedia.org/wiki/Boundary_(graph_theory) and
boundary_edges
added in #20).As we discussed, a simple implementation would be
internal_edges(g::AbstractGraph, vertices) = edges(subgraph(g, vertices))
. Then this function could be defined asinternal_edges(P::AbstractProjTTNO) = internal_edges(underlying_graph(P), sites(P))
.Originally posted by @mtfishman in ITensor/ITensorNetworks.jl#18 (comment)
The text was updated successfully, but these errors were encountered: