1gcv(1) Scotch user's manual gcv(1)
2
3
4
6 gcv - graph file converter
7
9 gcv [options] [igfile] [ogfile] [oxfile]
10
12 The gcv program converts Scotch graph files from and to other external
13 file formats.
14
15 File igfile is converted into graph file ogfile, with optional geometry
16 data being put in geometry file oxfile, if it is available.
17
18 When file names are not specified, data is read from standard input and
19 written to standard output. Standard streams can also be explicitly
20 represented by a dash '-'.
21
22 When the proper libraries have been included at compile time, dgtst can
23 directly handle compressed graphs, both as input and output. A stream
24 is treated as compressed whenever its name is postfixed with a com‐
25 pressed file extension, such as in 'brol.grf.bz2' or '-.gz'. The com‐
26 pression formats which can be supported are the bzip2 format ('.bz2'),
27 the gzip format ('.gz'), and the lzma format ('.lzma', on input only).
28
30 -h Display some help.
31
32 -iifmt Set format of input graph file, which can be:
33
34 bnum Boeing-Harwell format. This is a matrix format. Only
35 square matrices are supported. Square matrices with
36 unsymmetric pattern are symmetrized. In case the file
37 contains several matrices, the num parameter allow the
38 user to provide the index of the matrix to convert,
39 starting from 0. When the num parameter is not set, it is
40 assumed to be 0.
41
42 c Chaco format. This is an adjacency graph format, also
43 used by MeTiS.
44
45 m Matrix Market format. This is a matrix format describing
46 individual edges. Matrix pattern is symmetrized, such
47 that rectangular matrices are eventually squared.
48
49 s Scotch graph format. This is an adjacency graph format.
50
51 -oofmt Set format of output graph file, which can be:
52
53 c Chaco format.
54
55 m Matrix Market symmetric pattern format.
56
57 s Scotch format. This is the default.
58
59 -V Display program version and copyright.
60
62 Convert a Matrix Market graph into a Scotch graph. Matrix Market files
63 do not comprise geometry data, so no geometry file is needed on output:
64
65 $ gcv -im brol.mm brol.grf
66
67
69 gtst(1), gmap(1), gord(1), gout(1).
70
71 Scotch user's manual.
72
74 Francois Pellegrini <francois.pellegrini@labri.fr>
75
76
77
78 September 08, 2008 gcv(1)