We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677f002 commit 5610826Copy full SHA for 5610826
docs/src/performancetips.md
@@ -7,7 +7,8 @@ julia> using GraphTensorNetworks, Graphs, Random
7
julia> graph = random_regular_graph(120, 3)
8
{120, 180} undirected simple Int64 graph
9
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());
+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());
12
```
13
14
Key word argument `optimizer` decides the contraction order optimizer of the tensor network.
0 commit comments