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

« back to all changes in this revision

Viewing changes to src/libscotch/library_order.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 2004,2007 ENSEIRB, INRIA & CNRS
 
1
/* Copyright 2004,2007,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.
43
43
/**                                 to   : 08 oct 1998     **/
44
44
/**                # Version 4.0  : from : 11 dec 2001     **/
45
45
/**                                 to     25 dec 2004     **/
 
46
/**                # Version 5.1  : from : 04 nov 2010     **/
 
47
/**                                 to     04 nov 2010     **/
46
48
/**                                                        **/
47
49
/************************************************************/
48
50
 
54
56
 
55
57
typedef struct LibOrder_ {
56
58
  Order                     o;                    /*+ Ordering data                      +*/
57
 
  Gnum * restrict           permtab;              /*+ Direct permutation array           +*/
58
 
  Gnum * restrict           peritab;              /*+ Inverse permutation array          +*/
59
 
  Gnum * restrict           cblkptr;              /*+ Pointer to number of column blocks +*/
60
 
  Gnum * restrict           rangtab;              /*+ Column block range array           +*/
61
 
  Gnum * restrict           treetab;              /*+ Separator tree array               +*/
 
59
  Gnum *                    permtab;              /*+ Direct permutation array           +*/
 
60
  Gnum *                    peritab;              /*+ Inverse permutation array          +*/
 
61
  Gnum *                    cblkptr;              /*+ Pointer to number of column blocks +*/
 
62
  Gnum *                    rangtab;              /*+ Column block range array           +*/
 
63
  Gnum *                    treetab;              /*+ Separator tree array               +*/
62
64
} LibOrder;