Skip to content

Commit 88f2016

Browse files
committed
try modify src
1 parent 4fa66dc commit 88f2016

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

src/networks/Coloring.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Coloring{K,CT<:AbstractEinsum} <: GraphProblem
33
Coloring{K}(graph; openvertices=(), optimizer=GreedyMethod(), simplifier=nothing)
44
5-
[Vertex Coloring](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/Coloring.html) problem.
6-
`optimizer` and `simplifier` are for tensor network optimization, check `optimize_code` for details.
5+
The [Vertex Coloring](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/Coloring.html) problem.
6+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
77
"""
88
struct Coloring{K,CT<:AbstractEinsum} <: GraphProblem
99
code::CT

src/networks/IndependentSet.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
The [independent set problem](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/IndependentSet.html) in graph theory.
77
In the constructor, `weights` are the weights of vertices.
88
`openvertices` specifies labels for the output tensor.
9-
`optimizer` and `simplifier` are for tensor network optimization, check `optimize_code` for details.
9+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
1010
"""
1111
struct IndependentSet{CT<:AbstractEinsum,WT<:Union{UnWeighted, Vector}} <: GraphProblem
1212
code::CT

src/networks/Matching.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Matching{CT<:AbstractEinsum} <: GraphProblem
33
Matching(graph; openvertices=(), optimizer=GreedyMethod(), simplifier=nothing)
44
5-
[Vertex matching](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/Matching.html) problem.
6-
`optimizer` and `simplifier` are for tensor network optimization, check `optimize_code` for details.
5+
The [Vertex matching](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/Matching.html) problem.
6+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
77
"""
88
struct Matching{CT<:AbstractEinsum} <: GraphProblem
99
symbols::Vector{Tuple{Int,Int}}

src/networks/MaxCut.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
MaxCut(graph; weights=UnWeighted(), openvertices=(),
44
optimizer=GreedyMethod(), simplifier=nothing)
55
6-
[Cut](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/MaxCut.html) problem (or spin glass problem).
6+
The [cutting](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/MaxCut.html) problem (or spin glass problem).
77
In the constructor, `weights` are the weights of edges.
8-
`optimizer` and `simplifier` are for tensor network optimization, check `optimize_code` for details.
8+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
99
"""
1010
struct MaxCut{CT<:AbstractEinsum,WT<:Union{UnWeighted, Vector}} <: GraphProblem
1111
code::CT

src/networks/MaximalIS.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
MaximalIS(graph; weights=UnWeighted(), openvertices=(),
44
optimizer=GreedyMethod(), simplifier=nothing)
55
6-
[Maximal independent set](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/MaximalIS.html) problem. In the constructor, `weights` are the weights of vertices.
7-
`optimizer` and `simplifier` are for tensor network optimization, check `optimize_code` for details.
6+
The [maximal independent set](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/MaximalIS.html) problem. In the constructor, `weights` are the weights of vertices.
7+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
88
"""
99
struct MaximalIS{CT<:AbstractEinsum,WT<:Union{UnWeighted, Vector}} <: GraphProblem
1010
code::CT

src/networks/PaintShop.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
optimizer=GreedyMethod(), simplifier=nothing)
55
66
The [binary paint shop problem](https://psychic-meme-f4d866f8.pages.github.io/dev/tutorials/PaintShop.html).
7+
`optimizer` and `simplifier` are for tensor network optimization, check [`optimize_code`](@ref) for details.
78
89
Example
910
-----------------------------------------

0 commit comments

Comments
 (0)