~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/Sundance/src-std-framework/DOFMapping/SundanceInhomogeneousNodalDOFMap.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:
36
36
#include "SundanceCellSet.hpp"
37
37
#include "SundanceCellFilter.hpp"
38
38
#include "SundanceBasisFamily.hpp"
39
 
#include "TSFObjectWithVerbosity.hpp"
 
39
#include "SundanceObjectWithVerbosity.hpp"
40
40
 
41
41
#ifndef DOXYGEN_DEVELOPER_ONLY
42
42
 
58
58
    public:
59
59
      /** */
60
60
      InhomogeneousNodalDOFMap(const Mesh& mesh, 
61
 
                               const Array<Map<Set<int>, CellFilter> >& funcSetToDomainMap);
 
61
        const Array<Map<Set<int>, CellFilter> >& funcSetToDomainMap, const ParameterList& verbParams = *DOFMapBase::defaultVerbParams());
62
62
      
63
63
      /** */
64
64
      virtual ~InhomogeneousNodalDOFMap(){;}
111
111
                      int& nextDOF) ;
112
112
 
113
113
      int dim_;
114
 
      BasisFamily basis_;
 
114
      RCP<BasisDOFTopologyBase> basis_;
115
115
      int nTotalFuncs_;
116
116
      Array<CellFilter> funcDomains_;
117
117