package simpledb;

/**
 * HashFunction supply different hash functions 
 */

public class HashFunction {

    final static int coef = 17;
    final static int offset = 123456;

    public static int linearhash(int value) {
	return coef * value + offset;
    }

}
