~ubuntu-branches/ubuntu/precise/scotch/precise

« back to all changes in this revision

Viewing changes to src/scotch/gout_c.c

  • Committer: Package Import Robot
  • Author(s): "Adam C. Powell, IV"
  • Date: 2011-12-21 13:40:52 UTC
  • mfrom: (14.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20111221134052-1yw353l7p7zoo51d
Tags: 5.1.12b.dfsg-1
* New upstream (closes: #652900).
* Rebuild with new mpi-defaults (closes: #652311).
* Forward-ported build-fixes.patch (just shifted one hunk two lines).
* New build-arch and build-indep targets in rules.
* Updated VCS URLs.
* Bumped Standards-Version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright 2004,2007,2008,2010 ENSEIRB, INRIA & CNRS
 
1
/* Copyright 2004,2007,2008,2010,2011 ENSEIRB, INRIA & CNRS
2
2
**
3
3
** This file is part of the Scotch software package for static mapping,
4
4
** graph partitioning and sparse matrix ordering.
55
55
/**                # Version 5.0  : from : 25 may 2007     **/
56
56
/**                                 to     25 may 2007     **/
57
57
/**                # Version 5.1  : from : 25 oct 2007     **/
58
 
/**                                 to     15 aug 2010     **/
 
58
/**                                 to     14 feb 2011     **/
59
59
/**                                                        **/
60
60
/************************************************************/
61
61
 
164
164
        case 'G' :                                /* Geometry parameters */
165
165
        case 'g' :
166
166
          if ((j = C_geoParse (&argv[i][2])) != 0)
167
 
            errorPrint ("main: error in geometry option string (%d)", j);
 
167
            errorPrint ("main: error in geometry option string '%d'", j);
168
168
          break;
169
169
        case 'H' :                                /* Give the usage message */
170
170
        case 'h' :
173
173
        case 'M' :                                /* No-mapping flag */
174
174
        case 'm' :
175
175
          if (((argv[i][2] != 'N') && (argv[i][2] != 'n')) || (argv[i][3] != '\0'))
176
 
            errorPrint ("main: error in mapping option string (%s)", &argv[i][2]);
 
176
            errorPrint ("main: error in mapping option string '%s'", &argv[i][2]);
177
177
          C_filenamemapinp = "-";                 /* Default name to avoid opening   */
178
178
          C_filepntrmapinp = NULL;                /* NULL file pointer means no file */
179
179
          break;
184
184
          break;
185
185
        case 'V' :
186
186
          fprintf (stderr, "gout, version " SCOTCH_VERSION_STRING "\n");
187
 
          fprintf (stderr, "Copyright 2004,2007,2008,2010 ENSEIRB, INRIA & CNRS, France\n");
 
187
          fprintf (stderr, "Copyright 2004,2007,2008,2010,2011 ENSEIRB, INRIA & CNRS, France\n");
188
188
          fprintf (stderr, "This software is libre/free software under CeCILL-C -- see the user's manual for more information\n");
189
189
          return  (0);
190
190
        default :
191
 
          errorPrint ("main: Unprocessed option (\"%s\")", argv[i]);
 
191
          errorPrint ("main: Unprocessed option '%s'", argv[i]);
192
192
      }
193
193
    }
194
194
  }
486
486
    while ((j < geomfilenbr) && (geomsorttab[j].labl < vertsorttab[i].labl))
487
487
      j ++;                                       /* Search geometry vertex with same label             */
488
488
    if ((j >= geomfilenbr) || (geomsorttab[j].labl > vertsorttab[i].labl)) { /* If label does not exist */
489
 
      errorPrint ("C_geoLoad: vertex geometry data not found (%d)",
 
489
      errorPrint ("C_geoLoad: vertex geometry data not found for label '" SCOTCH_NUMSTRING "'",
490
490
                  vertsorttab[i].labl);
491
491
      memFree    (vertsorttab);
492
492
      memFree    (geomsorttab);