beercode20150806/src/cheapgmp.hpp

12 lines
221 B
C++

#include "compat.hpp"
#include <memory>
#include <list>
#include <algorithm>
namespace cheapgmp {
typedef std::list<ulong> lmrep;
typedef std::unique_ptr<lmrep> gmrep;
gmrep makepower(const ulong, const ulong);
}