beercode20150806/src/cheapgmp.hpp

11 lines
199 B
C++
Raw Normal View History

2015-08-06 20:24:40 +00:00
#include <memory>
#include <list>
#include <algorithm>
namespace cheapgmp {
typedef std::list<ulong> lmrep;
typedef std::unique_ptr<lmrep> gmrep;
2015-08-06 20:24:40 +00:00
gmrep makepower(const ulong, const ulong);
}