The underflow tag has no wiki summary.
1
vote
0answers
38 views
What does “Context stack underflow” mean in gdb?
I'm running gdb inside Gentoo inside Interix on Windows XP. There is a C++ frame in my application that if I enter it, gdb gives the error Context stack underflow. Similarly, if I try to set a ...
2
votes
4answers
174 views
How to detect floating point underflow in C [duplicate]
I need help and sample code on how to detect floating point underflow in standard way with out using third party libraries and exceptions for both signed and unsigned. I googled and found that various ...
2
votes
3answers
52 views
Transparent Header overflown by main div
I have been looking for an answer to this question all over the interwebs, but I just can't find the answer.. I have a transparent header filled with a background image that is the same as my ...
1
vote
1answer
196 views
Can double's overflow to negative values?
Hi I am using the g++ compiler and am experiencing (what I think) is underflow of doubles, is this possible and if so how is the behaviour defined
I have uploaded the csv format of the covariance ...
4
votes
1answer
58 views
Why does the NSDecimalNumber 10^-65 squared result in 10^126 instead of resulting in an Underflow Exception?
So here's the code:
NSDecimalNumber *test=[[NSDecimalNumber alloc] initWithInt:65];
number3=[[NSDecimalNumber one] decimalNumberByDividingBy:[[[NSDecimalNumber alloc] initWithInt:10] ...
1
vote
0answers
241 views
Handling Underflow with HMM Forward-Algorithm
I'm trying to implement the Forward-Algorithm for a Hidden Markov Model (HMM) and I'm facing the underflow issue when filling the alpha table. I normalized the alpha values using the method described ...
0
votes
1answer
240 views
Underflow in Forward Algorithm for HMMs
I'm implementing the forward algorithm for HMMs to calculate the probability of a given HMM emitting a given observation sequence. I'd like my algorithm to be robust to underflow. I can't work in ...
7
votes
2answers
362 views
Exponential of very small number in python
I am trying to calculate the exponential of -1200 in python (it's an example, I don't need -1200 in particular but a collection of numbers that are around -1200).
>>> math.exp(-1200)
0.0
...
1
vote
1answer
244 views
Assitance with C++ using pseudocode code (overflow/underflow)
I'm barely into my 4th week of C++ in school and was looking to be guided in the right direction.
#include "std_lib_facilities_3.h"
class BadArea{};
int area(int length, int width){
if(length ...
2
votes
2answers
193 views
Avoiding underflow for joint probabilities using numpy
I face a problem of estimating a joint probability for independent variables in a simple setup. Currently I have an array of 100 random variables and I would like to obtain their joint probability ...
6
votes
6answers
341 views
Forms of constants for high performance addition and multiplication for double
I need to efficiently add or multiply some constants to a result of type double in a loop to prevent underflow. For example, if we have int, multiplying with a power of 2 will be fast as the compiler ...
1
vote
1answer
193 views
Dealing with underflow in C “ if ” condition - using boolean
I've a problem, i'm stuck with some underflow problem for my algorithm.
I'm basically dseisgning a path from a Bezier curve and to deal with this I had to work with some vector multiplication (cross ...
2
votes
4answers
194 views
C# Math.Max type handling
I was writing a piece of code that prevents an ushort from overflow/underflow'ing. Before that I try:
ushort a = 0; //ushort.MinValue
a -= 1; //returns 65535 (ushort.MaxValue)
Then I write the real ...
1
vote
5answers
128 views
Generate random double from random long
in Java I have a random generator that generates random number from -2^63 to 2^63 and that is NOT the java.util.Random.
I need to generate random double in (0,1), this is what I've done so far:
...
2
votes
1answer
484 views
Divide Underflow
Why is a divide underflow only caused when the divisor is much smaller than the dividend, shouldn't it occur anytime the denominator is close enough to zero regardless of the size of the dividend?
3
votes
5answers
122 views
How do I evaluate this equation?
I think its pretty self explanatory from the code. Obviously I'm no evaluating the same thing over and over, its just example numbers to explain my problem. I'm guessing its over/underflow but I don't ...
8
votes
3answers
491 views
How to judge an overflow when adding signed to unsigned
I'm trying to detect the overflow when adding a signed offset to an unsigned position
uint32 position;
int32 offset; // it could be negative
uint32 position = position+offset;
How can I check ...
1
vote
3answers
3k views
Overflow/underflow in unsigned numbers
So, if you have a carry out of 1 on addition with unsigned numbers, you have overflowed, and if you have a carry out of 0 with subtraction, you have underflowed. Does this work in every case, though?
...
-1
votes
2answers
60 views
Throwing an exception if, for example, int a = Integer.MIN_VALUE-1;
Do you know of any languages which would throw an Exception on Overflow or Underflow?
Thanks
0
votes
3answers
177 views
Adding two Double.NEGATIVE_INFINTIY objects in Java
Have a look at this snippet in Java:
double alpha = alphaFactors.get(0, q);
double beta = betaFactors.get(0, q);
if ((alpha + beta) > Double.NEGATIVE_INFINITY) {
...
2
votes
4answers
2k views
Learning C++: Example of Stack Underflow in C++
What can be a simple example in C++ that causes a stack-underflow in the case of invoking and returning from method calls. I am familiar with the calling convention, i.e thiscall, stdcall and the ...
5
votes
4answers
1k views
Dealing with very small numbers in R
I need to calculate a list of very small numbers such as
(0.1)^1000, 0.2^(1200),
and then normalize them so they will sum up to one
i.e.
a1 = 0.1^1000,
a2 = 0.2^1200
And I want to calculate
...
1
vote
2answers
435 views
How Java handle integer underflows and overflows?
I understand the overflows in java, but what is called underflows? and how can java handle it ?
1
vote
3answers
548 views
doing multiplication by adding logarithms---is zero the identity element? [closed]
Conceptually, I need to multiply the probabilities of each event in a coincidence. Since there may be very many events involved, I have the computer add the logarithms to avoid underflow.
But ...
0
votes
1answer
185 views
Underflow in the root of a B-Tree
I am trying to implement a 3-4-5-6 Tree. In the event that a merge causes the root to have only one key (underflow) and its children have a total number of key greater than 5 (so if all merged ...
4
votes
2answers
439 views
Explain Change to GNU C++ filebuf::underflow() interacting with filebuf::seekoff()
My company's products run on a number of qualified Linux hardware/software configurations. Historically, the compiler used has been GNU C++. For purposes of this post, let's consider version 3.2.3 the ...
8
votes
3answers
3k views
Question about C behaviour for unsigned integer underflow
I have read in many places that integer overflow is well-defined in C unlike the signed counterpart.
Is underflow the same?
For example:
unsigned int x = -1; // Does x == UINT_MAX?
Thanks.
I ...
3
votes
3answers
2k views
Binary Addition. Is it overflow?
Binary values are in 2s Complement form.
If I am to add 110001 (-15) and 101110 (-18), and the answer has to be stored in a 6-bit integer, is this an underflow/overflow.
7
votes
4answers
3k views
Checking for underflow/overflow in C++?
Is there a general way to check for an overflow or an underflow of a given data type (uint32, int etc.)?
I am doing something like this:
uint32 a,b,c;
... //initialize a,b,c
if(b < c) {
a -= ...
6
votes
2answers
5k views
Common underflow and overflow exceptions
I am trying to get a hold of overflow and underflow exceptions in java, but couldn't get any nice tutorial. Specifically I wish to learn
How are they different from each other?
What are the ...
10
votes
6answers
3k views
How to avoid reference count underflow in _NSCFURLProtocolBridge in custom NSURLProtocol in GC environment
The basics are I have a custom NSURLProtocol. In startLoading, [self client] is of type:
<_NSCFURLProtocolBridge> {NSURLProtocol, CFURLProtocol}
The problem is running this in a ...
1
vote
1answer
694 views
CSS Underflow fix
I'm wondering if there are any underflow fixes for css? The initial problem was an overflow which is easily fixed but has now become an underflow problem.I have set a specific height value but it just ...
0
votes
1answer
450 views
How can I prevent/detect an underflow in a Postgresql calculation that uses EXP()
I am receiving a value out of range: underflow error from pgsql, in a query that uses the EXP(x) function. What values of x trigger this? How do I prevent or detect it?
