-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
740cba8
commit 64a56ca
Showing
6 changed files
with
145 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,10 @@ makedocs(; | |
), | ||
pages=[ | ||
"Home" => "index.md", | ||
"Manual" => Any[ | ||
"man/core.md", | ||
"man/mis.md", | ||
], | ||
], | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
```@meta | ||
CurrentModule = OptimalBranchingCore | ||
``` | ||
|
||
# OptimalBranchingCore | ||
|
||
Documentation for the core module `OptimalBranchingCore.jl`, which provides the core functionality for the optimal branching algorithm. | ||
|
||
## API | ||
|
||
```@index | ||
Pages = ["core.md"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [OptimalBranchingCore] | ||
Order = [:macro, :function, :type, :module] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
```@meta | ||
CurrentModule = OptimalBranchingMIS | ||
``` | ||
|
||
# OptimalBranchingMIS | ||
|
||
Documentation for the MIS module `OptimalBranchingMIS.jl`, which provides the maximum independent set solver based on the optimal branching algorithm. | ||
|
||
|
||
## API | ||
|
||
```@index | ||
Pages = ["mis.md"] | ||
``` | ||
|
||
```@autodocs | ||
Modules = [OptimalBranchingMIS] | ||
Order = [:macro, :function, :type, :module] | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters