aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plot.bat
blob: f046087fe2841e8e3a6e1a9861e18294f4e72d00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@rem Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
@rem This file is licensed under the terms of the MIT License.
@rem See LICENSE.txt for details.

@setlocal enabledelayedexpansion

@set DEFAULT_ITERATIONS=100
@set DEFAULT_MIN=0
@set DEFAULT_MAX=200

@if E%1 == E goto :print_usage
@set algorithm=%1

@if not E%2 == E (
  set iterations=%2
) else (
  set iterations=%DEFAULT_ITERATIONS%
)
@if not E%3 == E (
  set min=%3
) else (
  set min=%DEFAULT_MIN%
)
@if not E%4 == E (
  set max=%4
) else (
  set max=%DEFAULT_MAX%
)

plot.py "%algorithm%" --min "%min%" --max "%max%" ^
    --iterations "%iterations%" --input best ^
    --output "%algorithm%_%iterations%_best_%min%_%max%.png" ^
    || exit /b !errorlevel!
plot.py "%algorithm%" --min "%min%" --max "%max%" ^
    --iterations "%iterations%" --input average ^
    --output "%algorithm%_%iterations%_average_%min%_%max%.png" ^
    || exit /b !errorlevel!
plot.py "%algorithm%" --min "%min%" --max "%max%" ^
    --iterations "%iterations%" --input worst ^
    --output "%algorithm%_%iterations%_worst_%min%_%max%.png" ^
    || exit /b !errorlevel!

@exit /b

:print_usage:
@echo Usage: %0 ALGORITHM [ITERATIONS=%DEFAULT_ITERATIONS% [MIN=%DEFAULT_MIN% [MAX=%DEFAULT_MAX%]]]
@exit /b 1