Tagged Questions

5
votes
5answers
2k views

Does casting to an int after std::floor guarantee the right result?

I'd like a floor function with the syntax int floor(double x); but std::floor returns a double. Is static_cast <int> (std::floor(x)); guaranteed to give me the correct integer, or could I ...
4
votes
3answers
102 views

different values of std::floor function for arguments with same value but different types

Consider the following: #include <iostream> #include <cmath> int main() { using std::cout; using std::endl; const long double be2 = std::log(2); cout << std::log(8.0) / be2 ...
4
votes
7answers
630 views

Avoiding Calls to floor()

I am working on a piece of code where I need to deal with uvs (2D texture coordinates) that are not necessarily in the 0 to 1 range. As an example, sometimes I will get a uv with a u component that is ...
1
vote
2answers
521 views

efficient way to divide ignoring rest

there are 2 ways i found to get a whole number from a division in c++ question is which way is more efficient (more speedy) first way: Quotient = value1 / value2; // normal division haveing ...
1
vote
3answers
232 views

Optimization of Point to Voxel mapping

I used a profiler to look over some code which does not yet run fast enough. It found that the following function took most of the time, and half of the time in this function was spent in floor. Now, ...
0
votes
1answer
141 views

Floor function returning EXC_BAD_ACCESS

The cod that I am using contains these snippets of code. I am calling ThetaG_JD with the argument 2455343.50000 which is just a sample Julian date. Every time I run the program, I receive a ...