Tagged Questions
5
votes
8answers
539 views
Choosing random numbers efficiently
I have a method, which uses random samples to approximate a calculation. This method is called millions of times, so its very important that the process of choosing the random numbers is efficient.
...
4
votes
6answers
298 views
float to double assignment
Consider the following code snippet
float num = 281.583f;
int amount = (int) Math.round(num*100f);
float rounded = amount/100.0f;
double dblPrecision = rounded;
double dblPrecision2 = num;
...
3
votes
5answers
822 views
Sum of decimal number in java
I have a problem for the managemente of decimal number in java (JDK 1.4).
I have two double numbers first and second (as output of formatted String). I do a sum between fist and second and I receive ...
3
votes
6answers
1k views
Is there a way to get the number of places after the decimal point in a java double?
I'm working on a Java/Groovy program. I have a double variable that holds a number that was typed in by a user. What I really want to know is how many numbers the user typed to the right of the ...
1
vote
2answers
526 views
Traveling salesman library using approximation algorithm
I'm currently doing a project that requires some fast TSP solving (about 50-100 nodes in 2 seconds). There are a lots of approximation algorithms out there, but I don't have time nor will to analyze ...