Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
c845947
Blah
JoeyT1994 Sep 13, 2024
90c7251
Merge remote-tracking branch 'origin/main'
JoeyT1994 Oct 17, 2024
86f3087
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Oct 17, 2024
6ff0cd5
Bug fix in current ortho. Change test
JoeyT1994 Oct 17, 2024
34e8e5e
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Nov 22, 2024
d096722
Fix bug
JoeyT1994 Nov 26, 2024
70a3f7e
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Dec 5, 2024
9d64fe8
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Mar 19, 2025
9d6c1bc
File removed
JoeyT1994 Mar 19, 2025
ae17245
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Mar 23, 2025
b648353
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 1, 2025
4e7d189
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 3, 2025
83c92b0
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 7, 2025
6f024ee
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 11, 2025
1106403
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 17, 2025
5641d32
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Apr 30, 2025
59ef115
Merge remote-tracking branch 'upstream/main'
JoeyT1994 May 9, 2025
72bea86
Merge remote-tracking branch 'upstream/main'
JoeyT1994 May 13, 2025
bc14b33
Merge remote-tracking branch 'upstream/main'
JoeyT1994 May 20, 2025
fdd47c8
Merge remote-tracking branch 'upstream/main'
JoeyT1994 May 24, 2025
d8d3e52
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Jul 21, 2025
79b3aa2
Fix bug in delete_messages. Parameter restrictions in apply.jl
JoeyT1994 Jul 21, 2025
d9ddd42
Bleh
JoeyT1994 Aug 15, 2025
88c51ca
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Aug 22, 2025
bed90a5
Merge remote-tracking branch 'upstream/main'
JoeyT1994 Aug 26, 2025
bc08ce3
Update partitioned_graph -> partitions_graph
JoeyT1994 Sep 28, 2025
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
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ITensorNetworks"
uuid = "2919e153-833c-4bdc-8836-1ea460a35fc7"
authors = ["Matthew Fishman <[email protected]>, Joseph Tindall <[email protected]> and contributors"]
version = "0.14.1"
version = "0.14.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down Expand Up @@ -66,7 +66,7 @@ IterTools = "1.4.0"
KrylovKit = "0.6, 0.7, 0.8, 0.9, 0.10"
MacroTools = "0.5"
NDTensors = "0.3, 0.4"
NamedGraphs = "0.6.0"
NamedGraphs = "0.7.0"
OMEinsumContractionOrders = "0.8.3, 0.9, 1"
Observers = "0.2.4"
SerializedElementArrays = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/caches/abstractbeliefpropagationcache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ end

#Forward from partitioned graph
for f in [
:(PartitionedGraphs.partitioned_graph),
:(PartitionedGraphs.partitions_graph),
:(PartitionedGraphs.partitionedge),
:(PartitionedGraphs.partitionvertices),
:(PartitionedGraphs.vertices),
Expand Down
2 changes: 1 addition & 1 deletion src/caches/beliefpropagationcache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function set_default_kwargs(alg::Algorithm"bp", bp_cache::BeliefPropagationCache
end

function default_bp_maxiter(bp_cache::BeliefPropagationCache)
return default_bp_maxiter(partitioned_graph(bp_cache))
return default_bp_maxiter(partitions_graph(bp_cache))
end
function default_bp_edge_sequence(bp_cache::BeliefPropagationCache)
return default_edge_sequence(partitioned_tensornetwork(bp_cache))
Expand Down
4 changes: 2 additions & 2 deletions src/edge_sequences.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ using Graphs: IsDirected, connected_components, edges, edgetype
using ITensors.NDTensors: Algorithm, @Algorithm_str
using NamedGraphs: NamedGraphs
using NamedGraphs.GraphsExtensions: GraphsExtensions, forest_cover, undirected_graph
using NamedGraphs.PartitionedGraphs: PartitionEdge, PartitionedGraph, partitioned_graph
using NamedGraphs.PartitionedGraphs: PartitionEdge, PartitionedGraph, partitions_graph
using SimpleTraits: SimpleTraits, Not, @traitfn

default_edge_sequence_alg() = "forest_cover"
function default_edge_sequence(pg::PartitionedGraph)
return PartitionEdge.(edge_sequence(partitioned_graph(pg)))
return PartitionEdge.(edge_sequence(partitions_graph(pg)))
end

@traitfn function edge_sequence(
Expand Down
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ KrylovKit = "0.8, 0.9, 0.10"
LinearAlgebra = "1.10.0"
Metis = "1.5.0"
NDTensors = "0.3, 0.4"
NamedGraphs = "0.6.6"
NamedGraphs = "0.7.0"
OMEinsumContractionOrders = "0.9.5, 1"
Observers = "0.2.5"
OrdinaryDiffEqTsit5 = "1.1.0"
Expand Down