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

« back to all changes in this revision

Viewing changes to src/scotch/amk_hy.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.
53
53
/**                # Version 5.0  : from : 23 dec 2007     **/
54
54
/**                                 to   : 16 mar 2008     **/
55
55
/**                # Version 5.1  : from : 01 jul 2010     **/
56
 
/**                                 to   : 15 aug 2010     **/
 
56
/**                                 to   : 14 feb 2011     **/
57
57
/**                                                        **/
58
58
/************************************************************/
59
59
 
116
116
    if ((argv[i][0] != '-') || (argv[i][1] == '\0') || (argv[i][1] == '.')) { /* If found a file name */
117
117
      if (C_paraNum < 1) {                        /* If number of parameters not reached              */
118
118
        if ((hdim = atoi (argv[i])) < 1) {        /* Get the dimension                                */
119
 
          errorPrint ("main: invalid dimension (\"%s\")", argv[i]);
 
119
          errorPrint ("main: invalid dimension '%s'", argv[i]);
120
120
          return     (1);
121
121
        }
122
122
        C_paraNum ++;
137
137
          return     (0);
138
138
        case 'V' :
139
139
          fprintf (stderr, "amk_hy, version " SCOTCH_VERSION_STRING "\n");
140
 
          fprintf (stderr, "Copyright 2004,2007,2008,2010 ENSEIRB, INRIA & CNRS, France\n");
 
140
          fprintf (stderr, "Copyright 2004,2007,2008,2010,2011 ENSEIRB, INRIA & CNRS, France\n");
141
141
          fprintf (stderr, "This software is libre/free software under CeCILL-C -- see the user's manual for more information\n");
142
142
          return  (0);
143
143
        default :
144
 
          errorPrint ("main: unprocessed option (\"%s\")", argv[i]);
 
144
          errorPrint ("main: unprocessed option '%s'", argv[i]);
145
145
          return     (1);
146
146
      }
147
147
    }