Java BigInteger is Prime primeProcessPart(BigInteger from)

Here you can find the source of primeProcessPart(BigInteger from)

Description

prime Process Part

License

Apache License

Declaration

public static Boolean primeProcessPart(BigInteger from) 

Method Source Code

//package com.java2s;
/**//from   w ww.  java 2  s .  c  o m
 * Copyright (c)2015-2016 https://github.com/javahuang/rp
 * <p/>
 * Licensed under Apache License,Version 1.0
 */

import java.math.BigInteger;

public class Main {

    public static Boolean primeProcessPart(BigInteger from) {

        return null;
    }
}

Related

  1. hasSqrtModPrime(BigInteger r, BigInteger p)
  2. isBigPrime(BigInteger number)
  3. isCoprime(BigInteger a, BigInteger b)
  4. isFermatPrime(BigInteger f)
  5. isPrime(BigInteger value)
  6. sqrtModPrime(BigInteger rSquare, BigInteger p)