Line data Source code
1 : /* 2 : * Driver for showing how to use the core basic and elementary 3 : * functionalities of the Number Theory module 4 : * 5 : */ 6 : #include <cstdint> 7 : #include <gtest/gtest.h> 8 : #include <iostream> 9 : #include <openGPMP/nt/logarithms.hpp> 10 : #include <openGPMP/nt/prime_test.hpp> 11 : 12 : namespace { 13 : // declare primality class object 14 : gpmp::PrimalityTest __TEST_PRIMES__; 15 : 16 4 : TEST(LogarithmsTest, PollardRho) { 17 : 18 1 : uint32_t i = 10; 19 1 : } 20 : } // namespace