search for: isfinite

Displaying 20 results from an estimated 50 matches for "isfinite".

Did you mean: infinite
1998 May 27
1
Problems compiling libraries with todays snapshot.
...arning: package `-latex' does not exist Installing package `mva' ... libs ld -o mva.so dblcen.o dist.o hclust.o ld: warning: cannot find entry symbol _start; defaulting to 08048080 dist.o: In function `euclidean': /usr/local/src/R/src/library/mva/src/dist.c:43: undefined reference to `isFinite' /usr/local/src/R/src/library/mva/src/dist.c:43: undefined reference to `isFinite' /usr/local/src/R/src/library/mva/src/dist.c:51: undefined reference to `realNA' /usr/local/src/R/src/library/mva/src/dist.c:53: undefined reference to `sqrt' dist.o: In function `maximum': /usr/lo...
1999 Oct 15
2
IEEE_754 logic
...of R enlighten me about the reasoning behind the selection of the IEEE 754 mode for the building of R, please? Special points of interest are: 1. The selection seems to be based on the availability of isnan() and finite(). Is this a common way to test for IEEE 754? 2. The C9x draft introduces isfinite() instead of finite() (and as I see, some systems, e.g. the macintosh, use this naming already). This is a deviation from the old ieee754 C mapping. I do not know, where we are in this transformation process now (most compilers seem to use finite(), still). 3. The C9x draft introduces the is*()...
2008 Apr 11
4
Object.isNumber() returns true on NaN??
Hi, Object.isNumber() returns true on NaN. I don''t think that''s true.... NaN is Not a Number so it''s not a number... right? By the way, I''m using Prototype 1.6.0.2. Satoru --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
.../include/cmath:310:9: error: '::signbit' has not been declared using ::signbit; ^ llvm-3.8.0.src/projects/libcxx/include/cmath:311:9: error: '::fpclassify' has not been declared using ::fpclassify; ^ llvm-3.8.0.src/projects/libcxx/include/cmath:312:9: error: '::isfinite' has not been declared using ::isfinite; ^ llvm-3.8.0.src/projects/libcxx/include/cmath:315:9: error: '::isnormal' has not been declared using ::isnormal; ^ llvm-3.8.0.src/projects/libcxx/include/cmath:316:9: error: '::isgreater' has not been declared using ::i...
2007 Jul 11
0
Branch 'as' - 4 commits - libswfdec/swfdec_color.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c test/trace
...when inverting diff --git a/libswfdec/swfdec_color.c b/libswfdec/swfdec_color.c index 83be167..e609e53 100644 --- a/libswfdec/swfdec_color.c +++ b/libswfdec/swfdec_color.c @@ -196,6 +196,7 @@ swfdec_matrix_ensure_invertible (cairo_m if (inverse == NULL) inverse = &tmp; + g_assert (isfinite (matrix->xx) && isfinite (matrix->yx) && isfinite (matrix->xy) && isfinite (matrix->yy)); *inverse = *matrix; while (cairo_matrix_invert (inverse)) { SWFDEC_INFO ("matrix not invertible, adding epsilon to smallest member"); diff-tree 2a8fa0ba...
2005 Apr 02
2
Solaris10/amd64 + SunSutio Compile (PR#7767)
....176.24) rbinom.c cannot be compiled because of the casting problem. /opt/SUNWspro/bin/cc -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -g -c rbinom.c -o rbinom.o "rbinom.c", line 60: operand must have real floating type: op "isfinite" cc: acomp failed for rbinom.c Following patch may solve this problem. *** R-2.0.1.orig/src/nmath/rbinom.c Mon Nov 15 21:33:01 2004 --- R-2.0.1/src/nmath/rbinom.c Sun Apr 3 00:19:52 2005 *************** *** 57,63 **** n = floor(nin + 0.5); if (n != nin) ML_ERR_return_NAN;...
2016 Mar 14
2
LLVM-3.8.0 libcxx in-tree build fails with cmath error ::signbit has not been declared
...7.2 with (glibc-2.12.1, binutils-2.24, gcc-4.9.2) almost same set if CMake flags. However while building LLVM-3.8.0 using same CMake flags I am observing projects/libcxx/include/cmath errors... ...'::signbit' has not been declared ...'::fpclassify' has not been declared ...'::isfinite' has not been declared ... My environment is... Glibc-2.12.1 Binutils-2.24 Gcc-4.92. Llvm-3.8.0 Cmake flags... -DBUILD_SHARED_LIBS=ON \ -DCMAKE_BUILD_TYPE="Release" \ -DCMAKE_CXX_COMPILER=$GCC_ROOT/bin/g++ \ -DCMAKE_CXX_FLAGS="$CXXFLAGS&quot...
2007 Oct 11
0
2 commits - libswfdec/swfdec_text_format.c libswfdec/swfdec_xml.c libswfdec/swfdec_xml.h
...,7 +337,11 @@ swfdec_xml_set_status (SwfdecAsContext * if (SWFDEC_AS_VALUE_IS_OBJECT (&argv[0])) swfdec_as_value_to_string (cx, &argv[0]); - SWFDEC_XML (object)->status = swfdec_as_value_to_number (cx, &argv[0]); + d = swfdec_as_value_to_number (cx, &argv[0]); + if (!isfinite (d)) + SWFDEC_XML (object)->status = G_MININT32; + else + SWFDEC_XML (object)->status = (int) d; } static const char * diff --git a/libswfdec/swfdec_xml.h b/libswfdec/swfdec_xml.h index c06562d..e0e8cc8 100644 --- a/libswfdec/swfdec_xml.h +++ b/libswfdec/swfdec_xml.h @@ -55,7 +55,7...
2005 Feb 08
0
Compiling R as a shared library
..."2.0.1" | #define R_PLATFORM "x86_64-unknown-linux-gnu" | #define R_CPU "x86_64" | #define R_VENDOR "unknown" | #define R_OS "linux-gnu" | #define Unix 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:29307: checking whether isfinite is declared configure:29340: gcc -c -g -O2 -I/usr/local/include conftest.c >&5 conftest.c: In function `main': conftest.c:122: error: `isfinite' undeclared (first use in this function) conftest.c:122: error: (Each undeclared identifier is reported only once conftest.c:122: error: for...
2007 May 31
0
Branch 'as' - 8 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_string.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c test/trace
...| 12 34 files changed, 1458 insertions(+), 8 deletions(-) New commits: diff-tree 3c0a7a24da1aa0e7f87c65deb3872b6e95dfa5e4 (from 41b2667964b52d329563d8dc1416159db3fc8fe4) Author: Benjamin Otte <otte at gnome.org> Date: Thu May 31 12:35:57 2007 +0200 add simple test for isNaN and isFinite diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am index a4df73a..273b70b 100644 --- a/test/trace/Makefile.am +++ b/test/trace/Makefile.am @@ -166,6 +166,13 @@ EXTRA_DIST = \ height3.swf.trace \ height4.swf \ height4.swf.trace \ + isnan.as \ + isnan-5.swf \ + isnan-5.swf.trace \ +...
2006 Oct 24
2
Unable to load foreign after upgrade on ubuntu
...2.3.1. However, when I try to load the library 'foreign', I get the following error: Error in dyn.load(x, as.logical(local), as.logical(now)): Unable to load shared library '/usr/lib/R/library/foreign/libs/foreign.so': /usr/lib/R/library/foreign/libs/foreign.so: undefined symbol: isfinite Error: package/namespace load failed for 'foreign' What is going wrong? Bjorn Bjorn Van Campenhout Institute of Development Policy and Management (IDPM) University of Antwerp Venusstraat 35 2000 Antwerp - Belgium ++32 3 220 4648 www.ua.ac.be/bjorn.vancampenhout
2006 Apr 03
2
Build failure with this morning's R-alpha
...6/src/main' make[4]: Entering directory `/tmp/buildd/r-base-2.2.1.svn37626/src/main' gcc -I. -I../../src/include -I../../src/include -DHAVE_CONFIG_H -fpic -O2 -c Rmain.c -o Rmain.o gcc -Wl,--export-dynamic -o R.bin Rmain.o -L../../lib -lR ../../lib/libR.so: undefined reference to `isfinite' collect2: ld returned 1 exit status make[4]: *** [R.bin] Error 1 make[4]: Leaving directory `/tmp/buildd/r-base-2.2.1.svn37626/src/main' make[3]: *** [R] Error 2 make[3]: Leaving directory `/tmp/buildd/r-base-2.2.1.svn37626/src/main' make[2]: *** [R] Error 1 make[2]: Leaving directory...
2007 Aug 02
0
Package portability issues
...were available was done using the C compiler with particular flags, and glibc has a habit of hiding features depending on the flags set. So a C header called from the C++ compiler may not declare things that the same header called from the C compiler does. This means that C99 features such as isfinite may not be seen from the C++ compiler. (I have since modified R-devel not to use isfinite in packages.) Another example (from MSBVAR) "/usr/include/stdbool.h", line 42: Error: #error "Use of<stdbool.h> is valid only in a c99 compilation environment.". In a Linux env...
2007 Aug 22
0
3 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_function.c test/trace
...napshot; +_global.Video = Video; +_global.XML = XML; +_global.XMLNode = XMLNode; +_global.XMLSocket = XMLSocket; +_global.clearInterval = clearInterval; +_global.clearTimeout = clearTimeout; +_global.enableDebugConsole = enableDebugConsole; +_global.escape = escape; +_global.flash = flash; +_global.isFinite = isFinite; +_global.isNaN = isNaN; +_global.o = o; +_global.parseFloat = parseFloat; +_global.parseInt = parseInt; +_global.setInterval = setInterval; +_global.setTimeout = setTimeout; +_global.showRedrawRegions = showRedrawRegions; +_global.textRenderer = textRenderer; +_global.trace = trace; +_g...
2018 May 01
3
Compiling CUDA with clang on Windows
Dear all, In the official document <https://llvm.org/docs/CompileCudaWithLLVM.html>, it is mentioned that CUDA compilation is supported on Windows as of 2017-01-05. I used msys2 to install clang 5.0.1. Then I installed cuda 8.0. However, I basically could not compile any code of cuda by the prescribed setting. I wounder if anyone can successfully compile cuda code by the clang on Windows.
2007 Aug 23
0
10 commits - libswfdec/swfdec_as_function.c libswfdec/swfdec_as_object.c test/trace
...n-properties-6.swf.trace @@ -0,0 +1,21 @@ +_global.clearInterval = function + __proto__ (hp) = _global.Object.__proto__ + constructor (hp) = _global.Object.constructor +_global.escape = function + __proto__ (hp) = _global.Object.__proto__ + constructor (hp) = _global.Object.constructor +_global.isFinite = function + __proto__ (hp) = _global.Object.__proto__ + constructor (hp) = _global.Object.constructor +_global.isNaN = function + __proto__ (hp) = _global.Object.__proto__ + constructor (hp) = _global.Object.constructor +_global.parseInt = function + __proto__ (hp) = _global.Object.__proto__...
2023 Oct 14
1
Reported issues in nbdkit_parse_probability (was: Fwd: AUR Comment for nbdkit)
https://aur.archlinux.org/packages/nbdkit#comment-938282 ----- Forwarded message from notify at aur.archlinux.org ----- Date: Sat, 14 Oct 2023 12:40:02 +0000 Subject: AUR Comment for nbdkit dreieck [1] added the following comment to nbdkit [2]: `check()` fails for me, too: ``` [...] make check-TESTS make[3]: Entering directory '/tmp/makepkg/build/nbdkit/src/nbdkit-1.36.0/server'
2005 Oct 26
4
small patch for preprocess
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: preproc_patch_dth_10_26_05.patch Type: application/octet-stream Size: 8774 bytes Desc: not available Url : http://lists.xiph.org/pipermail/speex-dev/attachments/20051026/c27a3ed6/preproc_patch_dth_10_26_05.obj
2007 Jun 01
0
Branch 'as' - 2 commits - libswfdec/Makefile.am libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c libswfdec/swfdec_interval.c libswfdec/swfdec_interval.h libswfdec/swfdec_player_as.c libswfdec/swfdec_player.c
.../swfdec_as_strings.c b/libswfdec/swfdec_as_strings.c index a68b8e0..e59c69c 100644 --- a/libswfdec/swfdec_as_strings.c +++ b/libswfdec/swfdec_as_strings.c @@ -199,6 +199,8 @@ const char swfdec_as_strings[] = SWFDEC_AS_CONSTANT_STRING ("toUpperCase") SWFDEC_AS_CONSTANT_STRING ("isFinite") SWFDEC_AS_CONSTANT_STRING ("isNaN") + SWFDEC_AS_CONSTANT_STRING ("setInterval") + SWFDEC_AS_CONSTANT_STRING ("clearInterval") /* add more here */ ; diff --git a/libswfdec/swfdec_interval.c b/libswfdec/swfdec_interval.c new file mode 100644 index 00000...
2013 Dec 06
0
Wine release 1.7.8
...ian translation. Austin English (2): xcopy: Clarify a comment. apphelp: Add a stub for ShimFlushCache. Bruno Jesus (1): po: Update Brazilian Portuguese translation. Daniel Lehman (1): msvcrt: Return wall-clock time from clock(). Fran?ois Gouget (7): libport: Add an isfinite() implementation for Solaris. xcopy: Add tests to show that the /D option only accepts dates in the m-d-y format. comctl32: TTM_ADDTOOLW must refuse to set a tooltip text to NULL. msvcrt: Standardize on using a comparison operator to ensure we return 0 or 1. winecfg: Tweak t...