Search:

Type: Posts; User: thewonderdude

Search: Search took 0.09 seconds.

  1. [SOLVED] Re: no response loop problem

    almost made it to 500000 in 3 minutes but gave an error;

    Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError: Java heap space

    after alive and well 474214,
    very fast and much...
  2. [SOLVED] Re: no response loop problem

    hello,
    i put notifiers to check what is happening and at the code which i wrote at my first post, the program processes quite quickly up to y= 5000 where i can see a definite slowdown of performance...
  3. [SOLVED] Re: no response loop problem

    int allPossibleGuesses[][] = new int[maxBuffer][7];
    int[][] holder = new int[7][750];

    holder is sent to the method;

    allPossibleCombinations(holder);

    holder has int values sorted....
  4. [SOLVED] Re: no response loop problem

    public void allPossibleCombinations(int array3[][]) {

    boolean yes = true;
    int cn[] = new int[7];
    Random generator = new Random();
    int z = 0, i = 1;

    ...
  5. [SOLVED] Java for loop problem and out put is not coming

    Hello everyone,
    I have a code bit where the program takes ages to complete for some reason and i have a quad processor.
    The code is below; "allPossibleCombinationsOutput" is a String and maxBuffer...
Results 1 to 5 of 5