Start documenting constraints & obj

This commit is contained in:
2024-02-19 14:51:06 -06:00
parent 58cc33ac69
commit bfa967db6f
3 changed files with 187 additions and 12 deletions

View File

@@ -1,18 +1,17 @@
using Documenter, UnitCommitment, JuMP
function make()
makedocs(
sitename="UnitCommitment.jl",
pages=[
return makedocs(
sitename = "UnitCommitment.jl",
pages = [
"Home" => "index.md",
"usage.md",
"format.md",
"instances.md",
"model.md",
"api.md",
"problem.md",
# "usage.md",
# "format.md",
# "instances.md",
# "model.md",
# "api.md",
],
format = Documenter.HTML(
assets=["assets/custom.css"],
)
format = Documenter.HTML(assets = ["assets/custom.css"]),
)
end