From 06690e4982cf993da4e18dacd44458c04fde32e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=84min=20Baumeler?= Date: Fri, 15 Nov 2024 16:02:06 +0100 Subject: [PATCH] added --vector and --all options to readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fcbb5f1..7a419a6 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ Usage: ./SOCgen -n [-r ] [--graphviz] [FILTER ...] -n Generate SOCs with `order' connected nodes -r Pick directed graphs at random, and exit after having found `num' SOCs --graphviz Output SOCs in Graphviz format, arcs of common parents are highlighted + --vector Output SOCs adjacency vectors in the order (0<-1, 0<-2, ..., 1<-0, 1<-2, ...) + --all Allow for disconnected SOCs and disable the degree-order filter (see below) [FILTER] Consider only simple directed graphs ... -c ... that are cyclic (i.e., not DAGs) @@ -43,7 +45,7 @@ Usage: ./SOCgen -n [-r ] [--graphviz] [FILTER ...] --no-source ... without source nodes (also this logically implies -c) This program prints the found SOCs as adjacency matrices to stdout, unless --graphviz has been specified. -To exclude (some) of the isomorphic SOCs, it uses a degree-order filter. +To exclude (some) of the isomorphic SOCs, it uses a degree-order filter, unless --all is specified. ``` ### SOCadmissible