datafu-pig/src/main/java/datafu/pig/hash/lsh/L1PStableHash.java [167:174]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public L1PStableHash(String sDim, String sW, String sRepeat, String sNumHashes, String sSeed)
    {
      super(sSeed);
      dim = Integer.parseInt(sDim);
      w = Double.parseDouble(sW);
      repeat = Integer.parseInt(sRepeat); 
      numHashes = Integer.parseInt(sNumHashes);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



datafu-pig/src/main/java/datafu/pig/hash/lsh/L2PStableHash.java [168:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public L2PStableHash(String sDim, String sW, String sRepeat, String sNumHashes, String sSeed)
    {
      super(sSeed);
      dim = Integer.parseInt(sDim);
      w = Double.parseDouble(sW);
      repeat = Integer.parseInt(sRepeat);  
      numHashes = Integer.parseInt(sNumHashes);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



