~fluidity-core/fluidity/embedded_models

« back to all changes in this revision

Viewing changes to libmba2d/isnan.c

  • Committer: Timothy Bond
  • Date: 2011-04-14 15:40:24 UTC
  • Revision ID: timothy.bond@imperial.ac.uk-20110414154024-116ci9gq6mwigmaw
Following the move from svn to bzr we change the nature of inclusion of these
four software libraries. Previously, they were included as svn externals and
pulled at latest version for trunk, pinned to specific versions for release
and stable trunk. Since bzr is less elegant at dealing with externals we have
made the decision to include the packages directly into the trunk instead.

At this import the versions are:

libadaptivity: r163
libvtkfortran: r67
libspud: r545
libmba2d: r28

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//to call floating-point check from the Fortran routine
 
2
void fpcheck_c_( double *a, int *flag ) 
 
3
 
4
   *flag = isnan(*a) && !isinf(*a); 
 
5
}
 
6