~ubuntu-branches/ubuntu/trusty/scotch/trusty-proposed

« back to all changes in this revision

Viewing changes to src/libscotch/bdgraph.h

  • Committer: Bazaar Package Importer
  • Author(s): "Adam C. Powell, IV", Christophe Trophime, Adam C. Powell, IV
  • Date: 2010-12-29 13:07:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20101229130719-jwalolw5d6av6wqx
Tags: 5.1.11.dfsg-1
[Christophe Trophime]
* New upstream release
* Forward-ported patches to version 5.1.10b.
* Install scotch headers properly.
* Fix chrpath commands in debian/rules.
* Fix (pt)scotch library install paths.
* Fix lintian errors and warnings.

[Adam C. Powell, IV]
* Forward-ported patches to version 5.1.11.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright 2007,2008 ENSEIRB, INRIA & CNRS
 
1
/* Copyright 2007,2008,2010 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.
41
41
/**                ing routines.                           **/
42
42
/**                                                        **/
43
43
/**   DATES      : # Version 5.1  : from : 10 sep 2007     **/
44
 
/**                                 to   : 21 jun 2008     **/
 
44
/**                                 to   : 04 nov 2010     **/
45
45
/**                                                        **/
46
46
/************************************************************/
47
47
 
59
59
 
60
60
typedef struct Bdgraph_ {
61
61
  Dgraph                    s;                    /*+ Distributed source graph                         +*/
62
 
  Gnum * restrict           veexloctax;           /*+ Local vertex external gain array if moved to 1   +*/
 
62
  Gnum *                    veexloctax;           /*+ Local vertex external gain array if moved to 1   +*/
63
63
  Gnum                      veexglbsum;           /*+ Global sum of veexloctax array cells             +*/
64
 
  GraphPart * restrict      partgsttax;           /*+ Based local part array: 0,1: part                +*/
65
 
  Gnum * restrict           fronloctab;           /*+ Array of local frontier vertex numbers           +*/
 
64
  GraphPart *               partgsttax;           /*+ Based local part array: 0,1: part                +*/
 
65
  Gnum *                    fronloctab;           /*+ Array of local frontier vertex numbers           +*/
66
66
  Gnum                      fronlocnbr;           /*+ Number of local frontier vertices                +*/
67
67
  Gnum                      fronglbnbr;           /*+ Number of global frontier vertices               +*/
68
68
  Gnum                      complocload0;         /*+ Local load of part 0                             +*/