Skip to content
Snippets Groups Projects
Select Git revision
  • c8bd743d44c88acb4c9b9bc9c930227d39ad06d8
  • master default protected
  • NewDistributionGmshFWI
  • parametrizationSimpleWave
  • tuto_obstacle
  • everything
  • cleanup_configuuration_mesh
  • fix
  • source_estimation
  • unique_ptr
  • SobolevDirectionalFilter
  • OT
  • newPhysics
  • SimultaneousFrequency
  • SobolevDistance
  • BonesImaging
  • MultiParameter
  • UpdateAntho
  • v2.0
  • v1.0
20 results

functional.h

Blame
  • functionSpaceType.h 551 B
    //
    // group for interface element
    //
    // Description: Choose a function space. Can be integrated in functionSpace.h
    //
    // Author:  <Gauthier BECKER>, (C) 2010
    //
    // Copyright: See COPYING file that comes with this distribution
    //
    //
    
    #ifndef FUNCTIONSPACETYPE_H_
    #define FUNCTIONSPACETYPE_H_
    // Enum that allow to choose a function space
    class functionSpaceType{
     public :
      // To chosen the space type
      enum whichSpace{Lagrange, Inter};
      functionSpaceType(){};
      ~functionSpaceType(){}; // rewrite to delete object
    };
    #endif // FUNCTIONSPACETYPE_H_