Package eu.stratosphere.pact.runtime.test.util.types

Examples of eu.stratosphere.pact.runtime.test.util.types.IntPair


  private static IntPair[] getRandomizedIntPairs(int num, Random rnd) {
    IntPair[] pairs = new IntPair[num];
   
    // create all the pairs, dense
    for (int i = 0; i < num; i++) {
      pairs[i] = new IntPair(i, i + KEY_VALUE_DIFF);
    }
   
    // randomly swap them
    for (int i = 0; i < 2 * num; i++) {
      int pos1 = rnd.nextInt(num);
      int pos2 = rnd.nextInt(num);
     
      IntPair tmp = pairs[pos1];
      pairs[pos1] = pairs[pos2];
      pairs[pos2] = tmp;
    }
   
    return pairs;
View Full Code Here

TOP

Related Classes of eu.stratosphere.pact.runtime.test.util.types.IntPair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.