Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
693 views

what languages expose IEEE 754 traps to the developer?

I'd like to play with those traps for educational purpose. A common problem with the default behavior in numerical calculus is that we "miss" the Nan (or +-inf) that appeared in a wrong operation. ...
4
votes
1answer
65 views

An invalid floating point operation occurred. SQL Server 2008

I have weird problem with this code: if I run it like shown below I get error: An invalid floating point operation occurred. But if I change parameter @Longitude to -98.508730 (notice only last ...
4
votes
2answers
584 views

Floating Point Exception Caused By rand() In c++

I have an issue that I can't seem to solve. I am randomly generating numbers in order to determine if my numbers are relativity prime. Here is the function that gives me a Floating Point Exception: ...
2
votes
3answers
89 views

Why is this generating Floating point exception?

This is the second example of wikipedia SIGFPE page. #include <limits.h> int main(void) { volatile int x=INT_MIN; volatile int y=-1; x=x/y; return 0; } It is inverting the ...
2
votes
2answers
146 views

Subtracting close together numbers in php

Why does <?php echo 194.95-194.94; ?> output 0.0099999999999909 What am i missing here? This is php 5.2.
2
votes
1answer
428 views

Causes for NaN in C++ application that do no raise a floating point exception

To find the cause of floating point variables beeing set to NaN in my C++ program I enabled floating point exceptions like this: #include <fenv.h> feenableexcept(FE_INVALID | FE_OVERFLOW); I ...
2
votes
2answers
1k views

Enabling floating point interrupts on Mac OS X Intel

On Linux, feenableexcept and fedisableexcept can be used to control the generation of SIGFPE interrupts on floating point exceptions. How can I do this on Mac OS X Intel? Inline assembly for ...
1
vote
1answer
106 views

strange floating point exception

I've got a floating point exception in huge application after some changes. I tried to comment my changes and found that FPE happens when I enable one simple function call. api::getMaxSize(); which ...
1
vote
2answers
154 views

Are floating-point numbers used without an epsilon always a code-smell?

This question is very simple. It is related to but definitely not a dupe of: Most unpatched Tomcat webservers are vulnerable, who's at fault? Seen the amazing amount of things that can go wrong ...
0
votes
4answers
482 views

floating exception using icc compiler

I'm compiling my code via the following command: icc -ltbb test.cxx -o test Then when I run the program: time ./mp6 100 > output.modified Floating exception 4.871u 0.405s 0:05.28 99.8% 0+0k ...
-1
votes
2answers
2k views

Floating point exception on a int Array - C

int check_row; for (n=0; n<9; n++) { used_numbers[n] = n+1; } for (row=0; row<3; row++) { for (check_row=0; check_row<3; check_row++) { ...