diff --git a/docs/src/developer_methods.md b/docs/src/developer_methods.md index 0e132df0..c9fb876f 100644 --- a/docs/src/developer_methods.md +++ b/docs/src/developer_methods.md @@ -18,7 +18,6 @@ * Graph plumbing forwarded to the underlying tensor network (`formnetworks/abstractformnetwork.jl`): ```julia data_graph(f::AbstractFormNetwork) - data_graph_type(f::AbstractFormNetwork) ``` * Lists of vertices in each role: those tagged with the operator/bra/ket suffix (`formnetworks/abstractformnetwork.jl`): @@ -142,7 +141,6 @@ ket_vertex_suffix(qf::QuadraticFormNetwork) tensornetwork(qf::QuadraticFormNetwork) data_graph(qf::QuadraticFormNetwork) - data_graph_type(qf::QuadraticFormNetwork) ``` * Copy a `QuadraticFormNetwork` (deep-copies the inner bilinear form) (`formnetworks/quadraticformnetwork.jl`): @@ -185,7 +183,6 @@ (`caches/abstractbeliefpropagationcache.jl`): ```julia # How many of these are user-facing versus internal? - setindex!(bpc::AbstractBeliefPropagationCache, factor::ITensor, vertex) partitioned_tensornetwork(bpc::AbstractBeliefPropagationCache) messages(bpc::AbstractBeliefPropagationCache) copy(bpc::AbstractBeliefPropagationCache) @@ -201,7 +198,6 @@ network behind a cache (`caches/abstractbeliefpropagationcache.jl`): ```julia similar_type(bpc::AbstractBeliefPropagationCache) - data_graph_type(bpc::AbstractBeliefPropagationCache) data_graph(bpc::AbstractBeliefPropagationCache) tensornetwork(bpc::AbstractBeliefPropagationCache) scalartype(bpc::AbstractBeliefPropagationCache) @@ -372,7 +368,6 @@ ```julia copy(bp_cache::BeliefPropagationCache) messages(bp_cache::BeliefPropagationCache) - setindex!(bpc::BeliefPropagationCache, factor::ITensor, vertex) ``` * Partition-graph related queries — list partitions, quotient edges between partitions, and diff --git a/docs/src/experimental_methods.md b/docs/src/experimental_methods.md index d3b027de..e89d3753 100644 --- a/docs/src/experimental_methods.md +++ b/docs/src/experimental_methods.md @@ -37,7 +37,7 @@ Methods which still need to be discussed, modified, or deprecated. set_ortho_region(tn::AbstractTTN, new_region) ``` -* Underlying-graph type forwarded to `data_graph_type` (`treetensornetworks/abstracttreetensornetwork.jl`): +* Underlying-graph type for `AbstractTTN` (`treetensornetworks/abstracttreetensornetwork.jl`): ```julia underlying_graph_type(G::Type{<:AbstractTTN}) ``` @@ -135,7 +135,6 @@ Methods which still need to be discussed, modified, or deprecated. * `AbstractITensorNetwork` interface, forwarded to the wrapped `ITensorNetwork` (`treetensornetworks/treetensornetwork.jl`): ```julia data_graph(tn::TTN) - data_graph_type(G::Type{<:TTN}) copy(tn::TTN) ``` @@ -179,7 +178,7 @@ Methods which still need to be discussed, modified, or deprecated. ```julia vertex_data(graph::AbstractIndsNetwork, args...) edge_data(graph::AbstractIndsNetwork, args...) - edge_data_eltype(::Type{<:AbstractIndsNetwork{V, I}}) where {V, I} + edge_data_type(::Type{<:AbstractIndsNetwork{V, I}}) where {V, I} ``` * Merge two `AbstractIndsNetwork`s, returning an `IndsNetwork` over the merged graph (`abstractindsnetwork.jl`): @@ -261,11 +260,6 @@ Methods which still need to be discussed, modified, or deprecated. map_inds(f, is::IndsNetwork, args...; sites = nothing, links = nothing, kwargs...) ``` -* Visualize an `IndsNetwork` by wrapping it in a default `ITensorNetwork` (`indsnetwork.jl`): - ```julia - visualize(is::IndsNetwork, args...; kwargs...) - ``` - ## ProjTTN System