$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: thomas.klimpel_at_[hidden]
Date: 2008-06-22 15:38:48
Author: klimpel
Date: 2008-06-22 15:38:47 EDT (Sun, 22 Jun 2008)
New Revision: 46619
URL: http://svn.boost.org/trac/boost/changeset/46619
Log:
<define>NO_NAN allows to compile with MSVC 9.0 (isnan seems to be UNIX specific)
Text files modified:
sandbox/libs/numeric/bindings/umfpack/test/umf4.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/libs/numeric/bindings/umfpack/test/umf4.cc
==============================================================================
--- sandbox/libs/numeric/bindings/umfpack/test/umf4.cc (original)
+++ sandbox/libs/numeric/bindings/umfpack/test/umf4.cc 2008-06-22 15:38:47 EDT (Sun, 22 Jun 2008)
@@ -187,10 +187,10 @@
bnorm = b [i];
break;
}
+#endif
absb = fabs (b [i]);
bnorm = max (bnorm, absb);
}
-#endif
if (bnorm == 0)
bnorm = 1;
return (rnorm / bnorm);