Skip to content
Snippets Groups Projects
Select Git revision
  • 9e2d07470f883661d386f7c4869cbf631e7d7d7b
  • master default protected
  • patches-4.14
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • alphashapes
  • relaying
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • fix_overlaps
  • 3115-issue-fix
  • 3023-Fillet2D-Update
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

graphicWindow.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