Commit source

This commit is contained in:
kradchen
2023-05-18 16:04:27 +08:00
parent 88cf81e4ea
commit c6cd188732
83 changed files with 39921 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#ifndef __MULTISTENCILFASTMARCHINGMETHOD_H__
#define __MULTISTENCILFASTMARCHINGMETHOD_H__
extern "C" {
void multistencilFastMarchingMethod2D(double*F,int* FDims,double* SourcePoints, int* PDims,bool usesecond,bool usecross);
void multistencilFastMarchingMethod3D(double*F,int* FDims,double* SourcePoints, int* PDims,bool usesecond,bool usecross);
}
#endif // __MULTISTENCILFASTMARCHINGMETHOD_H__