Tagged Questions

3
votes
4answers
173 views

How to solve a system of inequalities?

I've reduced my problem (table layout algorithm) to the following problem: Imagine I have N variables X1, X2, ..., XN. I also have some (undetermined) number of inequalities, like …
8
votes
3answers
360 views

Testing for inequality in T-SQL

I've just come across this in a WHERE clause: AND NOT (t.id = @id) How does this compare with: AND t.id != @id I'd always write the latter myself, but clearly someone else th …
5
votes
16answers
825 views

Comparing IEEE floats and doubles for equality

What is the best method for comparing IEEE floats and doubles for equality? I have heard of several methods, but I wanted to see what the community thought.
2
votes
6answers
308 views

Solving an inequality for minimum value

I'm working on a programming problem which boils down to a set of an equation and inequality: x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] >= D x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = …