diff --git a/Makefile b/Makefile index d689bad..8ad5bf7 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,10 @@ # Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved. # Released under the modified BSD license. See COPYING.md for more details. -VERSION := 0.3 +VERSION := 0.4 docs: - cd docs; julia --project=. make.jl; cd .. + cd docs; julia --project=. -e 'include("make.jl"); make()'; cd .. rsync -avP --delete-after docs/build/ ../docs/$(VERSION)/ .PHONY: docs diff --git a/docs/make.jl b/docs/make.jl index a9fcffe..cea0065 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -31,7 +31,6 @@ function make() "guides/problem.md", "guides/format.md", "guides/instances.md", - "guides/model.md", ], "api.md", ], diff --git a/docs/src/tutorials/usage.jl b/docs/src/tutorials/usage.jl index dc6d8d4..b6a0f89 100644 --- a/docs/src/tutorials/usage.jl +++ b/docs/src/tutorials/usage.jl @@ -213,6 +213,6 @@ UnitCommitment.optimize!(model) solution = UnitCommitment.solution(model) -# The solution for each stage can be accessed through `solution[scenario_name]`. For conveniance, this includes both first- and second-stage optimal decisions: +# The solution for each scenario can be accessed through `solution[scenario_name]`. For conveniance, this includes both first- and second-stage optimal decisions: solution["s1"] \ No newline at end of file