summaryrefslogtreecommitdiffstats
path: root/src/map
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-07-09 11:50:24 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-07-09 11:50:24 -0700
commit10e0f3c58dbe344ea8f22e66e2658bda75b40d03 (patch)
treee5b63ce519910a6a40f8e21e0b7f7b5f13b38d0f /src/map
parentf4d72b2af23afccaf8f69d28adad5cecd9afc5da (diff)
downloadabc-10e0f3c58dbe344ea8f22e66e2658bda75b40d03.tar.gz
abc-10e0f3c58dbe344ea8f22e66e2658bda75b40d03.tar.bz2
abc-10e0f3c58dbe344ea8f22e66e2658bda75b40d03.zip
Small changes to enable collecting results using &ps -D file.
Diffstat (limited to 'src/map')
-rw-r--r--src/map/if/if.h1
-rw-r--r--src/map/if/ifCore.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/map/if/if.h b/src/map/if/if.h
index 8616783b..9c891c3d 100644
--- a/src/map/if/if.h
+++ b/src/map/if/if.h
@@ -159,6 +159,7 @@ struct If_Par_t_
int fUseCoAttrs; // use CO attributes
float DelayTargetNew;// new delay target
float FinalDelay; // final delay after mapping
+ float FinalArea; // final area after mapping
If_LibLut_t * pLutLib; // the LUT library
float * pTimesArr; // arrival times
float * pTimesReq; // required times
diff --git a/src/map/if/ifCore.c b/src/map/if/ifCore.c
index b7eb7bc0..0c9287a1 100644
--- a/src/map/if/ifCore.c
+++ b/src/map/if/ifCore.c
@@ -187,6 +187,7 @@ int If_ManPerformMappingComb( If_Man_t * p )
}
*/
p->pPars->FinalDelay = p->RequiredGlo;
+ p->pPars->FinalArea = p->AreaGlo;
return 1;
}