RRZE-HPC / stempel

Stencil TEMPlate Engineering Library
GNU Affero General Public License v3.0
6 stars 2 forks source link

Homogeneous stencil not generated #1

Closed christiealappatt closed 7 years ago

christiealappatt commented 7 years ago

For producing a homogeneous star stencil I used the following command:

python stempel.py -D 2 -r 2 -o -k star -C constant

but the output is:

double a[M][N];
double b[M][N];
double c0;
double c1;
double c2;
double c3;
double c4;
double c5;
double c6;
double c7;
double c8;

for(int j=2; j < M-2; j++){
for(int i=2; i < N-2; i++){
b[j][i] = ;
}
}
sguera commented 7 years ago

typo in "homogeneous" fixed in 90a70eb