From 0d4426eb00e018817ebb28fbb255514b8b13e8e8 Mon Sep 17 00:00:00 2001 From: Stefan Pranger Date: Tue, 15 Feb 2022 08:20:02 +0100 Subject: [PATCH] updated README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7033175..81a6366 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,15 @@ To display the help message: > ./build/maxFlow -h You need to pass either and input graph file or an input graph string. + Allowed options: -h, --help Print this help message. -f, --input-file arg Filename of input graph file. -s, --input-string arg Input graph string. -o, --stdout Output to stdout. -p, --output-file arg Filename for output. - -a, --max-flow Include verbose information about the max flow to the output. + -u, --check-uniqueness Check uniqueness of maximum flow and minimum cut. + -a, --max-flow Include verbose information about the maximum flow to the output. -m, --minimum-cut Include the minimum cut set to the output. -v, --verbose Output verbose algorithmic information and runtime. Pass twice to get information about all augmenting paths computed. ```