Package jgp

Source Code of jgp.HammingDist

package jgp;
import java.math.BigInteger;

public class HammingDist implements DistEval {
      /**
       * computes the Hamming distance between B an C
       */
       public final int distance(BigInteger B,BigInteger C) {
          BigInteger D=B.xor(C);
          return D.bitCount();
       }
}
TOP

Related Classes of jgp.HammingDist

TOP
Copyright © 2018 www.massapi.com. 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.