table of contents
CLIQUER(1) | CLIQUER | CLIQUER(1) |
NAME¶
cliquer - find cliques in weighted and unweighted graphs.SYNOPSIS¶
cliquer --helpDESCRIPTION¶
cliquer searched for cliques in a graph. The graph is read from the file given as command line argument, or stdin if that filename is "-".OPTIONS¶
- -h --help
- Displays a short list of options and what they do.
- -a --all
- Find all cliques.
- -s --single
- Find only one clique (default).
- -w --weight
- Tell only maximum weight (no faster than -s).
- -m N --min N
- Search for cliques with weight at least N.
- -M N --max N
- Search for cliques with weight at most N.
- -x --maximal
- Require cliques to be maximal.
- -u --unweighted
- Assume weight 1 for all vertices.
- -0 --from-0
- Number vertices 0 to n-1 instead of 1 to n when writing.
- -q --quiet
- Suppresses progress output.
- -r F --reorder F
- Reorder with function F. Available reordering functions are:
- none
- No ordering (same order as in the file).
- reverse
- Reverse order as in the file.
- default
- One of the two below, depending on weightedness.
- unweighted-coloring
- Coloring method efficient for unweighted graphs.
- weighted-coloring
- Coloring method efficient for weighted graphs.
- degree
- Order by ascending degree.
- random
- Random order.
FILE FORMAT¶
The format of the ASCII representation of a graph is the following: Each line has a single letter (enclosed in spaces) as first part.EXAMPLE¶
p clausehouse 5 8
e 4 3
e 3 1
e 1 2
e 2 3
e 3 5
e 5 2
e 2 4
e 4 5
n 1 2
COPYRIGHT¶
Cliquer is Copyright © 2002 Sampo Niskanen, Patric Ostergard2011-03-14 | cliquer |