Changeset 12432


Ignore:
Timestamp:
06/15/12 16:31:05 (13 years ago)
Author:
Mathieu Morlighem
Message:

Added include types otherwise code does not compile:

File:
1 edited

Legend:

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

    r12424 r12432  
    33 */
    44
     5#include "../../include/types.h"
    56#ifndef _GAUSSPOINTS_H
    67#define _GAUSSPOINTS_H
    78
    89#define MAX_LINE_GAUS_PTS    4
    9 void GaussLegendreLinear( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus );
     10void GaussLegendreLinear(IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus);
    1011#define MAX_TRIA_SYM_ORD    20
    11 void GaussLegendreTria( int* pngaus, IssmPDouble** pl1, IssmPDouble** pl2, IssmPDouble** pl3, IssmPDouble** pwgt, int iord );
     12void GaussLegendreTria(int* pngaus, IssmPDouble** pl1, IssmPDouble** pl2, IssmPDouble** pl3, IssmPDouble** pwgt, int iord);
    1213#define MAX_TETRA_SYM_ORD    6
    13 void GaussLegendreTetra( int* pngaus, IssmPDouble** pl1, IssmPDouble** pl2, IssmPDouble** pl3, IssmPDouble** pl4, IssmPDouble** pwgt, int iord );
     14void GaussLegendreTetra(int* pngaus, IssmPDouble** pl1, IssmPDouble** pl2, IssmPDouble** pl3, IssmPDouble** pl4, IssmPDouble** pwgt, int iord);
    1415#define MAX_LINE_GLOB_PTS    5
    15 void GaussLobatto( IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus );
     16void GaussLobatto(IssmPDouble** pxgaus, IssmPDouble** pxwgt, int ngaus);
    1617#define MAX_GAUS_ITER   30
    17 void GaussRecur( IssmPDouble* zero, IssmPDouble* weight, int n, IssmPDouble* alpha, IssmPDouble* beta );
     18void GaussRecur(IssmPDouble* zero, IssmPDouble* weight, int n, IssmPDouble* alpha, IssmPDouble* beta);
    1819
    19 void gaussQuad( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, int nigaus, int njgaus );
    20 void gaussHexa( IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, IssmPDouble** pzgaus, IssmPDouble ** pzwgt, int nigaus, int njgaus, int nkgaus );
     20void gaussQuad(IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, int nigaus, int njgaus);
     21void gaussHexa(IssmPDouble** pxgaus, IssmPDouble** pxwgt, IssmPDouble** pegaus, IssmPDouble** pewgt, IssmPDouble** pzgaus, IssmPDouble ** pzwgt, int nigaus, int njgaus, int nkgaus);
    2122
    2223#endif
Note: See TracChangeset for help on using the changeset viewer.