mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-05 07:41:11 +00:00
Loosen the uncertainty
This commit is contained in:
parent
b00f8c8645
commit
7350ad92b8
1 changed files with 2 additions and 2 deletions
4
voztie.c
4
voztie.c
|
@ -93,8 +93,8 @@ int main(int argc, char *argv[]) {
|
||||||
for (p=0;p<nvp;p++) {
|
for (p=0;p<nvp;p++) {
|
||||||
fread(&volstemp,1,sizeof(float),part);
|
fread(&volstemp,1,sizeof(float),part);
|
||||||
if (vols[orig[p]] > -1.)
|
if (vols[orig[p]] > -1.)
|
||||||
if (fabs(vols[orig[p]]-volstemp)/volstemp > 1e-3) {
|
if (fabs(vols[orig[p]]-volstemp)/volstemp > 1.1e-3) {
|
||||||
printf("Inconsistent volumes for p. %d: (%g,%g)!\n",
|
printf("Inconsistent volumes for p. %d: (%10g,%10g)!\n",
|
||||||
orig[p],vols[orig[p]],volstemp);
|
orig[p],vols[orig[p]],volstemp);
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue