Skip to content
Snippets Groups Projects
Select Git revision
  • 6d834f31f857cee9b8165d7fe788e556582851cc
  • 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

enum.h

Blame
  • enum.h 504 B
    #ifndef H_TYPE
    #define H_TYPE
    
    //Standard Library
    #include <string>
    
    //GmshFWI Library
    
    /* Forward, Perturbed Forward, Adjoint, Perturbed Adjoint */
    enum Type : unsigned int {FS=0, PFS=1, AS=2, PAS=3, DS=4};
    enum Order : unsigned int {FST=0, SCD=1, DIAG=2};
    enum Support : unsigned int {BLK=0, BND=1};
    Order to_order(Type type);
    Type to_type(Order order);
    std::string order_to_string(Order order);
    std::string type_to_string(Type type);
    std::string support_to_string(Support support);
    
    
    #endif // H_TYPE