~ubuntu-branches/ubuntu/saucy/rheolef/saucy

« back to all changes in this revision

Viewing changes to nfem/basis/P1_numbering.cc

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
///
20
20
/// =========================================================================
21
21
#include "P1_numbering.h"
22
 
using namespace rheolef;
 
22
namespace rheolef {
23
23
using namespace std;
24
24
 
25
25
std::string
56
56
        // number of vertices 
57
57
        return mesh_n_geo[0];
58
58
}
 
59
bool
 
60
numbering_P1::is_continuous () const
 
61
{
 
62
        return true;
 
63
}
 
64
 
 
65
} // namespace rheolef