Ignore:
Timestamp:
05/26/14 21:05:52 (11 years ago)
Author:
Mathieu Morlighem
Message:

CHG: removed some FUNCTION folds, moved to function declaration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/shared/Numerics/GaussPoints.cpp

    r17865 r18063  
    99
    1010/*General Gauss points*/
    11 /*FUNCTION GaussLegendreLinear {{{*/
    12 void GaussLegendreLinear( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus){
     11void GaussLegendreLinear( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus){/*{{{*/
    1312        /* Gauss-Legendre quadrature points.
    1413
     
    9392        }
    9493}/*}}}*/
    95 /*FUNCTION GaussLegendreTria{{{*/
    96 void GaussLegendreTria( int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pwgt, int iord ) {
     94void GaussLegendreTria( int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pwgt, int iord ) {/*{{{*/
    9795        /*Gauss quadrature points for the triangle.
    9896
     
    12101208        return;
    12111209}/*}}}*/
    1212 /*FUNCTION GaussLegendreTetra{{{*/
    1213 void GaussLegendreTetra( int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pl4, IssmDouble** pwgt, int iord ) {
     1210void GaussLegendreTetra( int* pngaus, IssmDouble** pl1, IssmDouble** pl2, IssmDouble** pl3, IssmDouble** pl4, IssmDouble** pwgt, int iord ) {/*{{{*/
    12141211        /* Gauss quadrature points for the tetrahedron.
    12151212
     
    14731470        }
    14741471}/*}}}*/
    1475 /*FUNCTION GaussLobatto{{{*/
    1476 void GaussLobatto( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus ) {
     1472void GaussLobatto( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus ) {/*{{{*/
    14771473        /*Gauss-Lobatto quadrature points.
    14781474
     
    15751571
    15761572}/*}}}*/
    1577 /*FUNCTION GaussRecur{{{*/
    1578 void GaussRecur( IssmPDouble* zero, IssmPDouble* weight, int n, IssmPDouble* alpha, IssmPDouble* beta ) {
     1573void GaussRecur( IssmPDouble* zero, IssmPDouble* weight, int n, IssmPDouble* alpha, IssmPDouble* beta ) {/*{{{*/
    15791574        /*Gauss quadrature points from recursion coefficients.
    15801575         *
     
    16981693
    16991694/*Element Gauss points TO BE REMOVED*/
    1700 /*FUNCTION gaussQuad{{{*/
    1701 void gaussQuad( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, int nigaus, int njgaus ) {
     1695void gaussQuad( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, int nigaus, int njgaus ) {/*{{{*/
    17021696        /*Gauss quadrature points for the quadrilaterial.*/
    17031697
     
    17061700        GaussLegendreLinear(pegaus, pewgt, njgaus);
    17071701}/*}}}*/
    1708 /*FUNCTION gaussHexa{{{*/
    1709 void gaussHexa( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, IssmPDouble** pzgaus, IssmPDouble ** pzwgt, int nigaus, int njgaus, int nkgaus ) {
     1702void gaussHexa( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, IssmPDouble** pzgaus, IssmPDouble ** pzwgt, int nigaus, int njgaus, int nkgaus ) {/*{{{*/
    17101703        /*Gauss quadrature points for the hexahedron.*/
    17111704
Note: See TracChangeset for help on using the changeset viewer.