Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
|
#include "utils/preconditions/preconditions.h"
#include <vector>
#include <utility>
#include <limits>
#include <map>
#include <stdexcept>
#include "math/primes/primes_fast.h"
#include "oracle_pollard.h"
#include "oracle_brent.h"
Go to the source code of this file.
Classes | |
class | math::factorize::FactorizeWithOracle_< CountType, Oracle, Primes > |
Namespaces | |
namespace | math |
namespace | math::factorize |
Typedefs | |
typedef FactorizeWithOracle_ < int, OraclePollard > | math::factorize::FactorizePollard |
typedef FactorizeWithOracle_ < int, OracleBrent > | math::factorize::FactorizeBrent |