Skip to content
Snippets Groups Projects
Select Git revision
  • 03c4ceb15fe301b9c0fae88aa8f2ad48e9d34dff
  • master default protected
  • dof-renumbering-simpler
  • dof-renumbering
  • func-supercond
  • test-dof-hash
  • gdemesy-master-patch-30528
  • eval-space-time
  • oscillating_multiharm
  • MH_movement
  • axisqu
  • write_vtu_and_ensight_formats
  • movingband
  • CP_1972_add_vtu_file_writing
  • mortar
  • fast_freq_sweep_Resolution
  • applyresolvent_again
  • marteaua-master-patch-54323
  • patch-1
  • binde-master-patch-08072
  • binde-master-patch-52461
  • getdp_3_5_0
  • getdp_3_4_0
  • getdp_3_3_0
  • getdp_3_2_0
  • getdp_3_1_0
  • getdp_3_0_4
  • getdp_3_0_3
  • getdp_3_0_2
  • getdp_3_0_1
  • getdp_3_0_0
  • onelab_mobile_2.1.0
  • getdp_2_11_3 protected
  • getdp_2_11_2 protected
  • getdp_2_11_1 protected
  • getdp_2_11_0 protected
  • getdp_2_10_0 protected
  • getdp_2_9_2 protected
  • getdp_2_9_1 protected
  • getdp_2_9_0 protected
  • getdp_2_8_0 protected
41 results

CMakeLists.txt

Blame
  • LineLagrangeBasis.h 594 B
    #ifndef _LINELAGRANGEBASIS_H_
    #define _LINELAGRANGEBASIS_H_
    
    #include "BasisLagrange.h"
    
    /**
       @class LineLagrangeBasis
       @brief Lagrange Basis for Lines
    
       This class can instantiate a @em Lagrange @em Basis
       for a Line and for a given Order.@n
    
       It uses
       <a href="http://geuz.org/gmsh/">gmsh</a> Basis.
     */
    
    class LineLagrangeBasis: public BasisLagrange{
     public:
      //! @param order A natural number
      //!
      //! Returns a new LineLagrangeBasis
      //! of the given Order
      LineLagrangeBasis(size_t order);
    
      //! Deletes this Basis
      //!
      virtual ~LineLagrangeBasis(void);
    };
    
    #endif