[Insight-developers] Monday morning Dashboard Status

Luis Ibanez luis.ibanez@kitware.com
Mon, 01 Apr 2002 12:03:01 -0500


Lorensen, William E (CRD) wrote:
> itkDeformableTest - crashing on all platforma - Luis

This has been fixed.  The itk::Mesh doesn't instantiate
by default a CellsContainer nor a CellDataContainer at
construction time.
These two containers were being accessed before being
allocated.


> 
> CovariantVectorGeometryTest
> PointGeometryTest
> VectorGeometryTest - all failing on WinNT - Luis
> 


This has been fixed too.
Direct comparisons of float numbers were being done
using the operator (!=) directl, like:

              if( val1 != val2 ) {...

instead of using the more formal:

         const float tolerance = 1e-5;
         if( vnl_math_abs( val1 - val2 ) > tolerance ) {...


Interestingly the Unix platforms were able to manage
the non-formal case just right.


     Luis