aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plot.bat
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 19:40:50 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 19:40:50 +0300
commit529378a1e3b3dde43531ceb2ed9147d03981d050 (patch)
tree8bd6500cc3ef5c669c41143ffa1be1d4d0139c25 /plot.bat
parentscientific notation by default in plots (diff)
downloadsorting-algorithms-529378a1e3b3dde43531ceb2ed9147d03981d050.tar.gz
sorting-algorithms-529378a1e3b3dde43531ceb2ed9147d03981d050.zip
code style
Diffstat (limited to 'plot.bat')
-rw-r--r--plot.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/plot.bat b/plot.bat
index f046087..c215b7e 100644
--- a/plot.bat
+++ b/plot.bat
@@ -12,19 +12,19 @@
@set algorithm=%1
@if not E%2 == E (
- set iterations=%2
+ set iterations=%2
) else (
- set iterations=%DEFAULT_ITERATIONS%
+ set iterations=%DEFAULT_ITERATIONS%
)
@if not E%3 == E (
- set min=%3
+ set min=%3
) else (
- set min=%DEFAULT_MIN%
+ set min=%DEFAULT_MIN%
)
@if not E%4 == E (
- set max=%4
+ set max=%4
) else (
- set max=%DEFAULT_MAX%
+ set max=%DEFAULT_MAX%
)
plot.py "%algorithm%" --min "%min%" --max "%max%" ^