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

« back to all changes in this revision

Viewing changes to src/libscotch/dgraph_band.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 2007-2010 ENSEIRB, INRIA & CNRS
 
1
/* Copyright 2007-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.
39
39
/**                graph from the given frontier array.    **/
40
40
/**                                                        **/
41
41
/**   DATES      : # Version 5.1  : from : 11 nov 2007     **/
42
 
/**                                 to   : 04 nov 2010     **/
 
42
/**                                 to   : 20 feb 2011     **/
43
43
/**                                                        **/
44
44
/**   NOTES      : # This code derives from the code of    **/
45
45
/**                  vdgraph_separate_bd.c in version 5.0. **/
647
647
    return     (1);
648
648
  }
649
649
 
650
 
  if (((SCOTCH_COLLECTIVE_TEST) ? dgraphBandColl : dgraphBandPtop)
 
650
  if ((((grafptr->flagval & DGRAPHCOMMPTOP) != 0) ? dgraphBandPtop : dgraphBandColl)
651
651
      (grafptr, fronlocnbr, fronloctab, distmax, &bandvnumgsttax, &bandvertlvlnum, &bandvertlocnbr, &bandedgelocnbr) != 0)
652
652
    return (1);
653
653