12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #ifndef _ABCTMZ_H
- #define _ABCTMZ_H
- #include "gridtmz.h"
- struct Abc {
- double coef0, coef1, coef2;
- double ***ezLeft;
- double **ezLeftTfixed;
- double *ezLeftTOfixed;
- double ***ezRight;
- double **ezRightTfixed;
- double *ezRightTOfixed;
- double ***ezTop;
- double **ezTopTfixed;
- double *ezTopTOfixed;
- double ***ezBottom;
- double **ezBottomTfixed;
- double *ezBottomTOfixed;
- };
- typedef struct Abc Abc;
- Abc *abcCreate(int sizeX, int sizeY);
- void abcInit(Abc *ab, Grid *g);
- void abcDestroy(Abc *ab);
- void abc(Abc *ab, Grid *g);
- #endif
|