~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/fei/base/fei_NodeCommMgr.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
#include <fei_fwd.hpp>
13
13
 
14
 
#include <snl_fei_CommUtils.hpp>
 
14
#include <fei_CommUtils.hpp>
15
15
 
16
16
/**
17
17
  NodeCommMgr (Node communication manager) is responsible for
34
34
    and equation numbers.
35
35
*/
36
36
 
37
 
class NodeCommMgr : public snl_fei::MessageHandler<int> {
 
37
class NodeCommMgr : public fei::MessageHandler<int> {
38
38
 public:
39
39
   enum { STRICTLY_LOW_PROC, PROC_WITH_LOCAL_ELEM };
40
40
 
116
116
 
117
117
   int getGlobalMaxFieldsBlocksSubdomains();
118
118
 
119
 
   snl_fei::CommUtils<int>* commUtilsInt_;
120
 
   snl_fei::CommUtils<GlobalID>* commUtilsID_;
121
 
 
122
119
   NodeDescriptor** sharedNodes_;
123
120
   bool sharedNodesAllocated_;
124
121