Skip to content

Commit d4e2a25

Browse files
authored
Merge pull request #30 from JuliaGraphs/fix-docs
2 parents b19a8ea + 312ff44 commit d4e2a25

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Build status](https://github.com/JuliaGraphs/GraphsMatching.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/JuliaGraphs/GraphsMatching.jl/actions/workflows/ci.yml?query=branch%3Amaster)
44
[![codecov](https://codecov.io/github/JuliaGraphs/GraphsMatching.jl/branch/master/graph/badge.svg?token=2eGhm8xuNl)](https://codecov.io/github/JuliaGraphs/GraphsMatching.jl/tree/master)
5+
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliagraphs.org/GraphsMatching.jl/dev/)
56
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
67

78
Matching algorithms on top of [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl).

docs/Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
4+
GraphsMatching = "c3af3a8c-b79e-4b01-bf44-c718d7e0e0d6"

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ import Graphs
44

55
makedocs(
66
modules = [GraphsMatching],
7-
format = :html,
7+
format = Documenter.HTML(),
88
sitename = "GraphsMatching",
99
pages = Any[
1010
"Getting started" => "index.md",
11+
"API" => "API.md",
12+
"Internals" => "internals.md",
1113
]
1214
)
1315

1416
deploydocs(
1517
deps = nothing,
1618
make = nothing,
1719
repo = "github.com/JuliaGraphs/GraphsMatching.jl.git",
18-
target = "build",
19-
julia = "0.6",
20-
osname = "linux"
20+
versions = ["stable" => "v^", "v#.#", "dev" => "master"],
2121
)

docs/src/API.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# API
2+
3+
```@docs
4+
GraphsMatching.minimum_weight_perfect_matching
5+
GraphsMatching.maximum_weight_maximal_matching
6+
GraphsMatching.LEMONMWPMAlgorithm
7+
GraphsMatching.LPAlgorithm
8+
GraphsMatching.HungarianAlgorithm
9+
GraphsMatching.BlossomVAlgorithm
10+
```

docs/src/internals.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Internals
2+
3+
```@docs
4+
GraphsMatching.AbstractMinimumWeightPerfectMatchingAlgorithm
5+
GraphsMatching.AbstractMaximumWeightMaximalMatchingAlgorithm
6+
GraphsMatching.cutoff_weights
7+
```

0 commit comments

Comments
 (0)