Skip to content

Commit 5610826

Browse files
committed
update
1 parent 677f002 commit 5610826

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/src/performancetips.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ julia> using GraphTensorNetworks, Graphs, Random
77
julia> graph = random_regular_graph(120, 3)
88
{120, 180} undirected simple Int64 graph
99

10-
julia> problem = IndependentSet(graph; optimizer=TreeSA(sc_target=20, sc_weight=1.0, rw_weight=3.0, ntrials=10, βs=0.01:0.1:15.0, niters=20), simplifier=MergeGreedy());
10+
julia> problem = IndependentSet(graph; optimizer=TreeSA(
11+
sc_target=20, sc_weight=1.0, rw_weight=3.0, ntrials=10, βs=0.01:0.1:15.0, niters=20), simplifier=MergeGreedy());
1112
```
1213

1314
Key word argument `optimizer` decides the contraction order optimizer of the tensor network.

0 commit comments

Comments
 (0)