/usr/include/cln/modinteger.h is in libcln-dev 1.3.3-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 | // Modular integer operations.
#ifndef _CL_MODINTEGER_H
#define _CL_MODINTEGER_H
#include "cln/object.h"
#include "cln/ring.h"
#include "cln/integer.h"
#include "cln/random.h"
#include "cln/malloc.h"
#include "cln/io.h"
#include "cln/proplist.h"
#include "cln/condition.h"
#include "cln/exception.h"
#undef random // Linux defines random() as a macro!
namespace cln {
// Representation of an element of a ring Z/mZ.
// To protect against mixing elements of different modular rings, such as
// (3 mod 4) + (2 mod 5), every modular integer carries its ring in itself.
// Representation of a ring Z/mZ.
class cl_heap_modint_ring;
class cl_modint_ring : public cl_ring {
public:
// Default constructor.
cl_modint_ring ();
// Constructor. Takes a cl_heap_modint_ring*, increments its refcount.
cl_modint_ring (cl_heap_modint_ring* r);
// Copy constructor.
cl_modint_ring (const cl_modint_ring&);
// Assignment operator.
cl_modint_ring& operator= (const cl_modint_ring&);
// Automatic dereferencing.
cl_heap_modint_ring* operator-> () const
{ return (cl_heap_modint_ring*)heappointer; }
};
// Z/0Z
extern const cl_modint_ring cl_modint0_ring;
// Default constructor. This avoids dealing with NULL pointers.
inline cl_modint_ring::cl_modint_ring ()
: cl_ring (as_cl_private_thing(cl_modint0_ring)) {}
class cl_MI_init_helper
{
static int count;
public:
cl_MI_init_helper();
~cl_MI_init_helper();
};
static cl_MI_init_helper cl_MI_init_helper_instance;
// Copy constructor and assignment operator.
CL_DEFINE_COPY_CONSTRUCTOR2(cl_modint_ring,cl_ring)
CL_DEFINE_ASSIGNMENT_OPERATOR(cl_modint_ring,cl_modint_ring)
// Normal constructor for `cl_modint_ring'.
inline cl_modint_ring::cl_modint_ring (cl_heap_modint_ring* r)
: cl_ring ((cl_private_thing) (cl_inc_pointer_refcount((cl_heap*)r), r)) {}
// Operations on modular integer rings.
inline bool operator== (const cl_modint_ring& R1, const cl_modint_ring& R2)
{ return (R1.pointer == R2.pointer); }
inline bool operator!= (const cl_modint_ring& R1, const cl_modint_ring& R2)
{ return (R1.pointer != R2.pointer); }
inline bool operator== (const cl_modint_ring& R1, cl_heap_modint_ring* R2)
{ return (R1.pointer == R2); }
inline bool operator!= (const cl_modint_ring& R1, cl_heap_modint_ring* R2)
{ return (R1.pointer != R2); }
// Condition raised when a probable prime is discovered to be composite.
struct cl_composite_condition : public cl_condition {
SUBCLASS_cl_condition()
cl_I p; // the non-prime
cl_I factor; // a nontrivial factor, or 0
// Constructors.
cl_composite_condition (const cl_I& _p)
: p (_p), factor (0)
{ print(std::cerr); }
cl_composite_condition (const cl_I& _p, const cl_I& _f)
: p (_p), factor (_f)
{ print(std::cerr); }
// Implement general condition methods.
const char * name () const;
void print (std::ostream&) const;
~cl_composite_condition () {}
};
// Representation of an element of a ring Z/mZ.
class _cl_MI /* cf. _cl_ring_element */ {
public:
cl_I rep; // representative, integer >=0, <m
// (maybe the Montgomery representative!)
// Default constructor.
_cl_MI () : rep () {}
public: /* ugh */
// Constructor.
_cl_MI (const cl_heap_modint_ring* R, const cl_I& r) : rep (r) { (void)R; }
_cl_MI (const cl_modint_ring& R, const cl_I& r) : rep (r) { (void)R; }
public:
// Conversion.
CL_DEFINE_CONVERTER(_cl_ring_element)
public: // Ability to place an object at a given address.
void* operator new (size_t size) { return malloc_hook(size); }
void* operator new (size_t size, void* ptr) { (void)size; return ptr; }
void operator delete (void* ptr) { free_hook(ptr); }
};
class cl_MI /* cf. cl_ring_element */ : public _cl_MI {
protected:
cl_modint_ring _ring; // ring Z/mZ
public:
const cl_modint_ring& ring () const { return _ring; }
// Default constructor.
cl_MI () : _cl_MI (), _ring () {}
public: /* ugh */
// Constructor.
cl_MI (const cl_modint_ring& R, const cl_I& r) : _cl_MI (R,r), _ring (R) {}
cl_MI (const cl_modint_ring& R, const _cl_MI& r) : _cl_MI (r), _ring (R) {}
public:
// Conversion.
CL_DEFINE_CONVERTER(cl_ring_element)
// Debugging output.
void debug_print () const;
public: // Ability to place an object at a given address.
void* operator new (size_t size) { return malloc_hook(size); }
void* operator new (size_t size, void* ptr) { (void)size; return ptr; }
void operator delete (void* ptr) { free_hook(ptr); }
};
// Representation of an element of a ring Z/mZ or an exception.
class cl_MI_x {
private:
cl_MI value;
public:
cl_composite_condition* condition;
// Constructors.
cl_MI_x (cl_composite_condition* c) : value (), condition (c) {}
cl_MI_x (const cl_MI& x) : value (x), condition (NULL) {}
// Cast operators.
//operator cl_MI& () { if (condition) throw runtime_exception(); return value; }
//operator const cl_MI& () const { if (condition) throw runtime_exception(); return value; }
operator cl_MI () const { if (condition) throw runtime_exception(); return value; }
};
// Ring operations.
struct _cl_modint_setops /* cf. _cl_ring_setops */ {
// print
void (* fprint) (cl_heap_modint_ring* R, std::ostream& stream, const _cl_MI& x);
// equality
bool (* equal) (cl_heap_modint_ring* R, const _cl_MI& x, const _cl_MI& y);
// random number
const _cl_MI (* random) (cl_heap_modint_ring* R, random_state& randomstate);
};
struct _cl_modint_addops /* cf. _cl_ring_addops */ {
// 0
const _cl_MI (* zero) (cl_heap_modint_ring* R);
bool (* zerop) (cl_heap_modint_ring* R, const _cl_MI& x);
// x+y
const _cl_MI (* plus) (cl_heap_modint_ring* R, const _cl_MI& x, const _cl_MI& y);
// x-y
const _cl_MI (* minus) (cl_heap_modint_ring* R, const _cl_MI& x, const _cl_MI& y);
// -x
const _cl_MI (* uminus) (cl_heap_modint_ring* R, const _cl_MI& x);
};
struct _cl_modint_mulops /* cf. _cl_ring_mulops */ {
// 1
const _cl_MI (* one) (cl_heap_modint_ring* R);
// canonical homomorphism
const _cl_MI (* canonhom) (cl_heap_modint_ring* R, const cl_I& x);
// x*y
const _cl_MI (* mul) (cl_heap_modint_ring* R, const _cl_MI& x, const _cl_MI& y);
// x^2
const _cl_MI (* square) (cl_heap_modint_ring* R, const _cl_MI& x);
// x^y, y Integer >0
const _cl_MI (* expt_pos) (cl_heap_modint_ring* R, const _cl_MI& x, const cl_I& y);
// x^-1
const cl_MI_x (* recip) (cl_heap_modint_ring* R, const _cl_MI& x);
// x*y^-1
const cl_MI_x (* div) (cl_heap_modint_ring* R, const _cl_MI& x, const _cl_MI& y);
// x^y, y Integer
const cl_MI_x (* expt) (cl_heap_modint_ring* R, const _cl_MI& x, const cl_I& y);
// x -> x mod m for x>=0
const cl_I (* reduce_modulo) (cl_heap_modint_ring* R, const cl_I& x);
// some inverse of canonical homomorphism
const cl_I (* retract) (cl_heap_modint_ring* R, const _cl_MI& x);
};
typedef const _cl_modint_setops cl_modint_setops;
typedef const _cl_modint_addops cl_modint_addops;
typedef const _cl_modint_mulops cl_modint_mulops;
// Representation of the ring Z/mZ.
// Currently rings are garbage collected only when they are not referenced
// any more and when the ring table gets full.
// Modular integer rings are kept unique in memory. This way, ring equality
// can be checked very efficiently by a simple pointer comparison.
class cl_heap_modint_ring /* cf. cl_heap_ring */ : public cl_heap {
SUBCLASS_cl_heap_ring()
private:
cl_property_list properties;
protected:
cl_modint_setops* setops;
cl_modint_addops* addops;
cl_modint_mulops* mulops;
public:
cl_I modulus; // m, normalized to be >= 0
public:
// Low-level operations.
void _fprint (std::ostream& stream, const _cl_MI& x)
{ setops->fprint(this,stream,x); }
bool _equal (const _cl_MI& x, const _cl_MI& y)
{ return setops->equal(this,x,y); }
const _cl_MI _random (random_state& randomstate)
{ return setops->random(this,randomstate); }
const _cl_MI _zero ()
{ return addops->zero(this); }
bool _zerop (const _cl_MI& x)
{ return addops->zerop(this,x); }
const _cl_MI _plus (const _cl_MI& x, const _cl_MI& y)
{ return addops->plus(this,x,y); }
const _cl_MI _minus (const _cl_MI& x, const _cl_MI& y)
{ return addops->minus(this,x,y); }
const _cl_MI _uminus (const _cl_MI& x)
{ return addops->uminus(this,x); }
const _cl_MI _one ()
{ return mulops->one(this); }
const _cl_MI _canonhom (const cl_I& x)
{ return mulops->canonhom(this,x); }
const _cl_MI _mul (const _cl_MI& x, const _cl_MI& y)
{ return mulops->mul(this,x,y); }
const _cl_MI _square (const _cl_MI& x)
{ return mulops->square(this,x); }
const _cl_MI _expt_pos (const _cl_MI& x, const cl_I& y)
{ return mulops->expt_pos(this,x,y); }
const cl_MI_x _recip (const _cl_MI& x)
{ return mulops->recip(this,x); }
const cl_MI_x _div (const _cl_MI& x, const _cl_MI& y)
{ return mulops->div(this,x,y); }
const cl_MI_x _expt (const _cl_MI& x, const cl_I& y)
{ return mulops->expt(this,x,y); }
const cl_I _reduce_modulo (const cl_I& x)
{ return mulops->reduce_modulo(this,x); }
const cl_I _retract (const _cl_MI& x)
{ return mulops->retract(this,x); }
// High-level operations.
void fprint (std::ostream& stream, const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
_fprint(stream,x);
}
bool equal (const cl_MI& x, const cl_MI& y)
{
if (!(x.ring() == this)) throw runtime_exception();
if (!(y.ring() == this)) throw runtime_exception();
return _equal(x,y);
}
const cl_MI random (random_state& randomstate = default_random_state)
{
return cl_MI(this,_random(randomstate));
}
const cl_MI zero ()
{
return cl_MI(this,_zero());
}
bool zerop (const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
return _zerop(x);
}
const cl_MI plus (const cl_MI& x, const cl_MI& y)
{
if (!(x.ring() == this)) throw runtime_exception();
if (!(y.ring() == this)) throw runtime_exception();
return cl_MI(this,_plus(x,y));
}
const cl_MI minus (const cl_MI& x, const cl_MI& y)
{
if (!(x.ring() == this)) throw runtime_exception();
if (!(y.ring() == this)) throw runtime_exception();
return cl_MI(this,_minus(x,y));
}
const cl_MI uminus (const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
return cl_MI(this,_uminus(x));
}
const cl_MI one ()
{
return cl_MI(this,_one());
}
const cl_MI canonhom (const cl_I& x)
{
return cl_MI(this,_canonhom(x));
}
const cl_MI mul (const cl_MI& x, const cl_MI& y)
{
if (!(x.ring() == this)) throw runtime_exception();
if (!(y.ring() == this)) throw runtime_exception();
return cl_MI(this,_mul(x,y));
}
const cl_MI square (const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
return cl_MI(this,_square(x));
}
const cl_MI expt_pos (const cl_MI& x, const cl_I& y)
{
if (!(x.ring() == this)) throw runtime_exception();
return cl_MI(this,_expt_pos(x,y));
}
const cl_MI_x recip (const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
return _recip(x);
}
const cl_MI_x div (const cl_MI& x, const cl_MI& y)
{
if (!(x.ring() == this)) throw runtime_exception();
if (!(y.ring() == this)) throw runtime_exception();
return _div(x,y);
}
const cl_MI_x expt (const cl_MI& x, const cl_I& y)
{
if (!(x.ring() == this)) throw runtime_exception();
return _expt(x,y);
}
const cl_I reduce_modulo (const cl_I& x)
{
return _reduce_modulo(x);
}
const cl_I retract (const cl_MI& x)
{
if (!(x.ring() == this)) throw runtime_exception();
return _retract(x);
}
// Miscellaneous.
sintC bits; // number of bits needed to represent a representative, or -1
int log2_bits; // log_2(bits), or -1
// Property operations.
cl_property* get_property (const cl_symbol& key)
{ return properties.get_property(key); }
void add_property (cl_property* new_property)
{ properties.add_property(new_property); }
// Constructor / destructor.
cl_heap_modint_ring (cl_I m, cl_modint_setops*, cl_modint_addops*, cl_modint_mulops*);
~cl_heap_modint_ring () {}
};
#define SUBCLASS_cl_heap_modint_ring() \
SUBCLASS_cl_heap_ring()
// Lookup or create a modular integer ring Z/mZ
extern const cl_modint_ring find_modint_ring (const cl_I& m);
static cl_MI_init_helper cl_MI_init_helper_instance2;
// Operations on modular integers.
// Output.
inline void fprint (std::ostream& stream, const cl_MI& x)
{ x.ring()->fprint(stream,x); }
CL_DEFINE_PRINT_OPERATOR(cl_MI)
// Add.
inline const cl_MI operator+ (const cl_MI& x, const cl_MI& y)
{ return x.ring()->plus(x,y); }
inline const cl_MI operator+ (const cl_MI& x, const cl_I& y)
{ return x.ring()->plus(x,x.ring()->canonhom(y)); }
inline const cl_MI operator+ (const cl_I& x, const cl_MI& y)
{ return y.ring()->plus(y.ring()->canonhom(x),y); }
// Negate.
inline const cl_MI operator- (const cl_MI& x)
{ return x.ring()->uminus(x); }
// Subtract.
inline const cl_MI operator- (const cl_MI& x, const cl_MI& y)
{ return x.ring()->minus(x,y); }
inline const cl_MI operator- (const cl_MI& x, const cl_I& y)
{ return x.ring()->minus(x,x.ring()->canonhom(y)); }
inline const cl_MI operator- (const cl_I& x, const cl_MI& y)
{ return y.ring()->minus(y.ring()->canonhom(x),y); }
// Shifts.
extern const cl_MI operator<< (const cl_MI& x, sintC y); // assume 0 <= y < 2^(intCsize-1)
extern const cl_MI operator>> (const cl_MI& x, sintC y); // assume m odd, 0 <= y < 2^(intCsize-1)
// Equality.
inline bool operator== (const cl_MI& x, const cl_MI& y)
{ return x.ring()->equal(x,y); }
inline bool operator!= (const cl_MI& x, const cl_MI& y)
{ return !x.ring()->equal(x,y); }
inline bool operator== (const cl_MI& x, const cl_I& y)
{ return x.ring()->equal(x,x.ring()->canonhom(y)); }
inline bool operator!= (const cl_MI& x, const cl_I& y)
{ return !x.ring()->equal(x,x.ring()->canonhom(y)); }
inline bool operator== (const cl_I& x, const cl_MI& y)
{ return y.ring()->equal(y.ring()->canonhom(x),y); }
inline bool operator!= (const cl_I& x, const cl_MI& y)
{ return !y.ring()->equal(y.ring()->canonhom(x),y); }
// Compare against 0.
inline bool zerop (const cl_MI& x)
{ return x.ring()->zerop(x); }
// Multiply.
inline const cl_MI operator* (const cl_MI& x, const cl_MI& y)
{ return x.ring()->mul(x,y); }
// Squaring.
inline const cl_MI square (const cl_MI& x)
{ return x.ring()->square(x); }
// Exponentiation x^y, where y > 0.
inline const cl_MI expt_pos (const cl_MI& x, const cl_I& y)
{ return x.ring()->expt_pos(x,y); }
// Reciprocal.
inline const cl_MI recip (const cl_MI& x)
{ return x.ring()->recip(x); }
// Division.
inline const cl_MI div (const cl_MI& x, const cl_MI& y)
{ return x.ring()->div(x,y); }
inline const cl_MI div (const cl_MI& x, const cl_I& y)
{ return x.ring()->div(x,x.ring()->canonhom(y)); }
inline const cl_MI div (const cl_I& x, const cl_MI& y)
{ return y.ring()->div(y.ring()->canonhom(x),y); }
// Exponentiation x^y.
inline const cl_MI expt (const cl_MI& x, const cl_I& y)
{ return x.ring()->expt(x,y); }
// Scalar multiplication.
inline const cl_MI operator* (const cl_I& x, const cl_MI& y)
{ return y.ring()->mul(y.ring()->canonhom(x),y); }
inline const cl_MI operator* (const cl_MI& x, const cl_I& y)
{ return x.ring()->mul(x.ring()->canonhom(y),x); }
// TODO: implement gcd, index (= gcd), unitp, sqrtp
// Debugging support.
#ifdef CL_DEBUG
extern int cl_MI_debug_module;
CL_FORCE_LINK(cl_MI_debug_dummy, cl_MI_debug_module)
#endif
} // namespace cln
#endif /* _CL_MODINTEGER_H */
|