-
Notifications
You must be signed in to change notification settings - Fork 8
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
Showing
8 changed files
with
12 additions
and
21 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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
|
||
[compat] | ||
Documenter = "~0.19" | ||
Documenter = "0.27" |
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 |
---|---|---|
@@ -1,23 +1,20 @@ | ||
using Documenter, StructDualDynProg | ||
|
||
makedocs( | ||
format = :html, | ||
sitename = "StructDualDynProg", | ||
# See https://github.com/JuliaDocs/Documenter.jl/issues/868 | ||
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"), | ||
pages = [ | ||
"Home" => "index.md", | ||
"Quick Start" => "quickstart.md", | ||
"Tutorial" => "tutorial.md", | ||
], | ||
# The following ensures that we only include the docstrings from | ||
# this module for functions define in Base that we overwrite. | ||
modules = [StructDualDynProg] | ||
modules = [StructDualDynProg], | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/JuliaStochOpt/StructDualDynProg.jl.git", | ||
target = "build", | ||
osname = "linux", | ||
julia = "1.0", | ||
deps = nothing, | ||
make = nothing | ||
push_preview = true, | ||
) |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using LightGraphs | ||
using Graphs | ||
|
||
mutable struct NodeData{S} | ||
nlds::NLDS{S} | ||
|
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
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