You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
913 B
30 lines
913 B
# UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
|
# Released under the modified BSD license. See COPYING.md for more details.
|
|
|
|
JULIA := julia --color=yes --project=@.
|
|
VERSION := 0.2
|
|
|
|
build/sysimage.so: src/sysimage.jl Project.toml Manifest.toml
|
|
mkdir -p build
|
|
mkdir -p benchmark/results/test
|
|
cd benchmark; $(JULIA) --trace-compile=../build/precompile.jl run.jl test/case14.1.sol.json
|
|
$(JULIA) src/sysimage.jl
|
|
|
|
clean:
|
|
rm -rf build/*
|
|
|
|
docs:
|
|
cd docs; make clean; make dirhtml
|
|
rsync -avP --delete-after docs/_build/dirhtml/ ../docs/$(VERSION)/
|
|
|
|
test: build/sysimage.so
|
|
@echo Running tests...
|
|
$(JULIA) --sysimage build/sysimage.so -e 'using Pkg; Pkg.test("UnitCommitment")' | tee build/test.log
|
|
|
|
|
|
format:
|
|
julia -e 'using JuliaFormatter; format("src"); format("test"); format("benchmark")'
|
|
|
|
.PHONY: docs test
|