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