Skip to content

Commit

Permalink
Fix bug in area estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
jvsguerra committed Dec 23, 2020
1 parent d0c223c commit 5098a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matrixprocessing.c
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ Area_search (int ***S,

/* Save area in KVFinder results struct */
for (i = 0; i < tag; i++)
KVFinder_results[i].area = area[i] * h * h;
KVFinder_results[i].area = area[i];

/* Free area object from memory */
free(area);
Expand Down

0 comments on commit 5098a8d

Please sign in to comment.