From cf4214a71632a741bf876e9416c6ae2354411082 Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Mon, 14 Aug 2023 19:59:57 +0200 Subject: [PATCH] Fixed the default cell size to avoid having to put it every time --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 86e3a34..fb001ca 100644 --- a/main.go +++ b/main.go @@ -131,12 +131,12 @@ func parse_arguments() (*reader.ReaderFactory, *writer.WriterFactory, *solver.So cellSizeIn := argparser.Int("", "cell-size-in", &argparse.Options{ Help: "Size of a cell (in pixels) for input file of image type", - Default: 20, + Default: 3, }) cellSizeOut := argparser.Int("", "cell-size-out", &argparse.Options{ Help: "Size of a cell (in pixels) for output file of image type", - Default: 20, + Default: 3, }) solverFactory.Type = argparser.Selector("a", "algo", solver.TYPES, &argparse.Options{