class_group 0.6.0

Rust library for building IQC: cryptography based on class groups (Cl) of imaginary quadratic orders
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Function: msgetsign
Section: modular_symbols
C-Name: msgetsign
Prototype: lG
Help: msgetsign(M): M being a full modular symbol space, as given by msinit, return its sign.
Doc: $M$ being a full modular symbol space, as given by \kbd{msinit}, return
 its sign: $\pm1$ or 0 (unset).
 \bprog
 ? M = msinit(11,4, 1);
 ? msgetsign(M)
 %2 = 1
 ? M = msinit(11,4);
 ? msgetsign(M)
 %4 = 0
 @eprog