|
1 | | - |
2 | 1 | JULIAEXEC=julia |
3 | 2 |
|
4 | | -install: |
5 | | - $(JULIAEXEC) --project -e "using Pkg; Pkg.instantiate()" |
| 3 | +install: |
| 4 | + $(JULIAEXEC) --project -e "using Pkg; Pkg.instantiate()" |
6 | 5 |
|
7 | | -clean: |
8 | | - rm -rf results/ |
| 6 | +clean: |
| 7 | + rm -rf results/ |
9 | 8 |
|
10 | 9 | build: |
11 | | - zip -r results.zip results/ |
| 10 | + zip -r results.zip results/ |
12 | 11 |
|
13 | 12 | update: |
14 | | - $(JULIAEXEC) --project -e "using Pkg; Pkg.update()" |
15 | | - |
| 13 | + $(JULIAEXEC) --project -e "using Pkg; Pkg.update()" |
| 14 | + |
16 | 15 | tests: |
17 | | - $(JULIAEXEC) --project benchmarks/COPS/benchmark.jl --quick |
18 | | - $(JULIAEXEC) --project benchmarks/OPF/benchmark.jl --quick |
| 16 | + $(JULIAEXEC) --project benchmarks/COPS/benchmark.jl --quick |
| 17 | + $(JULIAEXEC) --project benchmarks/OPF/benchmark.jl --quick |
| 18 | + $(JULIAEXEC) --project benchmarks/CUTEst/benchmark.jl --quick |
19 | 19 |
|
20 | | -table1: |
21 | | - $(JULIAEXEC) --project benchmarks/OPF/benchmark_linear_solvers.jl |
| 20 | +table1: |
| 21 | + $(JULIAEXEC) --project benchmarks/OPF/benchmark_linear_solvers.jl |
22 | 22 |
|
23 | 23 | table2: |
24 | | - $(JULIAEXEC) --project benchmarks/OPF/relaxation_convergence.jl |
| 24 | + $(JULIAEXEC) --project benchmarks/OPF/relaxation_convergence.jl |
25 | 25 |
|
26 | 26 | figure1: |
27 | | - $(JULIAEXEC) --project benchmarks/OPF/hybrid_convergence.jl |
| 27 | + $(JULIAEXEC) --project benchmarks/OPF/hybrid_convergence.jl |
28 | 28 |
|
29 | 29 | figure2: |
30 | | - $(JULIAEXEC) --project benchmarks/OPF/benchmark_kkt.jl |
| 30 | + $(JULIAEXEC) --project benchmarks/OPF/benchmark_kkt.jl |
31 | 31 |
|
32 | 32 | opf_benchmark: |
33 | | - $(JULIAEXEC) --project benchmarks/OPF/benchmark.jl |
| 33 | + $(JULIAEXEC) --project benchmarks/OPF/benchmark.jl |
34 | 34 |
|
35 | 35 | cops_benchmark: |
36 | | - $(JULIAEXEC) --project benchmarks/COPS/benchmark.jl |
| 36 | + $(JULIAEXEC) --project benchmarks/COPS/benchmark.jl |
37 | 37 |
|
38 | | -benchmarks: opf_benchmark cops_benchmark |
| 38 | +cutest_benchmark: |
| 39 | + $(JULIAEXEC) --project benchmarks/CUTEst/benchmark.jl |
39 | 40 |
|
40 | | -article: table1 figure1 figure2 |
| 41 | +benchmarks: opf_benchmark cops_benchmark cutest_benchmark |
41 | 42 |
|
42 | | -all: benchmarks article |
| 43 | +article: table1 figure1 figure2 |
43 | 44 |
|
| 45 | +all: benchmarks article |
0 commit comments