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

« back to all changes in this revision

Viewing changes to src/scotch/mord.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.
43
43
/**                # Version 5.0  : from : 22 jan 2008     **/
44
44
/**                                 to   : 16 mar 2008     **/
45
45
/**                # Version 5.1  : from : 08 sep 2008     **/
46
 
/**                                 to   : 25 jul 2010     **/
 
46
/**                                 to   : 14 feb 2011     **/
47
47
/**                                                        **/
48
48
/************************************************************/
49
49
 
157
157
                straval |= SCOTCH_STRATSAFETY;
158
158
                break;
159
159
              default :
160
 
                errorPrint ("main: invalid strategy selection option (\"%c\")", argv[i][j]);
 
160
                errorPrint ("main: invalid strategy selection option '%c'", argv[i][j]);
161
161
            }
162
162
          }
163
163
          break;
183
183
          break;
184
184
        case 'V' :
185
185
          fprintf (stderr, "mord, version " SCOTCH_VERSION_STRING "\n");
186
 
          fprintf (stderr, "Copyright 2004,2007,2008,2010 ENSEIRB, INRIA & CNRS, France\n");
 
186
          fprintf (stderr, "Copyright 2004,2007,2008,2010,2011 ENSEIRB, INRIA & CNRS, France\n");
187
187
          fprintf (stderr, "This software is libre/free software under CeCILL-C -- see the user's manual for more information\n");
188
188
          return  (0);
189
189
          break;
199
199
                flagval |= C_FLAGVERBTIM;
200
200
                break;
201
201
              default :
202
 
                errorPrint ("main: unprocessed parameter \"%c\" in \"%s\"",
 
202
                errorPrint ("main: unprocessed parameter '%c' in '%s'",
203
203
                            argv[i][j], argv[i]);
204
204
                return     (1);
205
205
            }
206
206
          }
207
207
          break;
208
208
        default :
209
 
          errorPrint ("main: unprocessed option (\"%s\")", argv[i]);
 
209
          errorPrint ("main: unprocessed option '%s'", argv[i]);
210
210
          return     (1);
211
211
      }
212
212
    }