Skip to content
Snippets Groups Projects
Select Git revision
  • dcedfefe8181283ce36eef190d3dd14549225c4f
  • master default protected
  • ujwal_05_08_2025
  • dev_mm_pf
  • cyrielle
  • vinayak
  • complexpetsc
  • ujwal_21_08_2024
  • dev_mm_torchSCRU
  • debug_mm_pf
  • newStructureNonLocal
  • Mohamed_stochasticDMN
  • dev_mm_bench
  • stochdmn
  • revert-351ff7aa
  • ujwal_29April2024
  • dev_mm_ann
  • mohamed_vevp
  • ujwal_debug
  • ujwal_2ndApril2024
  • ujwal_October_2023
  • v4.0
  • v3.2.3_multiplePhase
  • v3.5
  • v3.3.2
  • v3.4
  • v3.3
  • ver3.2
  • verJulienWork
  • ver3.1
  • ver2
  • ver1.1.2
  • ver1.1.1
  • ver1.1
34 results

mlawNonLinearTVENonLinearTVP2.cpp

Blame
  • Gmsh.h 616 B
    // Gmsh - Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to <gmsh@geuz.org>.
    
    #ifndef _GMSH_H_
    #define _GMSH_H_
    
    #include <string>
    #include "GmshMessage.h"
    
    int GmshInitialize(int argc=0, char **argv=0);
    int GmshSetMessageHandler(GmshMessage *callback);
    int GmshSetOption(std::string category, std::string name, std::string value, int index=0);
    int GmshSetOption(std::string category, std::string name, double value, int index=0);
    int GmshMergeFile(std::string fileName);
    int GmshFinalize();
    int GmshBatch();
    
    #endif