aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plot.bat
blob: 3a2f22d9f4641bffe459985a83714726261ef6d0 (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
@rem Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
@rem This file is part of the "Sorting algorithms" project.
@rem For details, see https://github.com/egor-tensin/sorting-algorithms.
@rem Distributed under the MIT License.

@setlocal enabledelayedexpansion
@echo off

set default_iterations=100
set default_min=0
set default_max=200

if "%~1" == "" goto :exit_with_usage
set "algorithm=%~1"

if "%~2" == "" (
    set "iterations=%default_iterations%"
) else (
    set "iterations=%~2"
)
if "%~3" == "" (
    set "min=%default_min%"
) else (
    set "min=%~3"
)
if "%~4" == "" (
    set "max=%default_max%"
) else (
    set "max=%~4"
)

mkdir /p img

for %%i in (best average worst) do (
    plot.py "%algorithm%" ^
        --input "%%i" ^
        --min "%min%" --max "%max%" ^
        --iterations "%iterations%" ^
        --output "img\%algorithm%_%iterations%_%%i_%min%_%max%.png" || exit /b !errorlevel!
)

exit /b 0

:exit_with_usage:
echo Usage: %~nx0 ALGORITHM [ITERATIONS [MIN_VALUE [MAX_VALUE]]]
exit /b 1