Superoptimized
This commit is contained in:
parent
a7ac0b5d18
commit
62a1dcfde1
358
src/bigint.js
358
src/bigint.js
@ -1,72 +1,133 @@
|
||||
/* global BigInt */
|
||||
const bigInt = require("big-integer");
|
||||
|
||||
let wBigInt;
|
||||
|
||||
console.log("XXX");
|
||||
|
||||
if (typeof(BigInt) != "undefined") {
|
||||
const wBigInt = BigInt;
|
||||
wBigInt = BigInt;
|
||||
|
||||
wBigInt.prototype.affine = function (q) {
|
||||
let aux = this;
|
||||
if (aux < 0) {
|
||||
if (aux <= -q) {
|
||||
aux = aux % q;
|
||||
// Affine
|
||||
wBigInt.genAffine = (q) => {
|
||||
const nq = -q;
|
||||
return (a) => {
|
||||
let aux = a;
|
||||
if (aux < 0) {
|
||||
if (aux <= nq) {
|
||||
aux = aux % q;
|
||||
}
|
||||
if (aux.isNegative()) {
|
||||
aux = aux.add(q);
|
||||
}
|
||||
} else {
|
||||
if (aux >= q) {
|
||||
aux = aux % q;
|
||||
}
|
||||
}
|
||||
if (aux.isNegative()) {
|
||||
aux = aux.add(q);
|
||||
return aux.valueOf();
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
// Inverse
|
||||
wBigInt.genInverse = (q) => {
|
||||
return (a) => {
|
||||
let t = wBigInt.zero;
|
||||
let r = q;
|
||||
let newt = wBigInt.one;
|
||||
let newr = wBigInt.affine(a, q);
|
||||
while (newr!=wBigInt.zero) {
|
||||
let q = r/newr;
|
||||
[t, newt] = [newt, t-q*newt];
|
||||
[r, newr] = [newr, r-q*newr];
|
||||
}
|
||||
if (t<wBigInt.zero) t += q;
|
||||
return t;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
// Add
|
||||
wBigInt.genAdd = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => (a+b) % q;
|
||||
} else {
|
||||
if (aux >= q) {
|
||||
aux = aux % q;
|
||||
}
|
||||
return (a,b) => a+b;
|
||||
}
|
||||
return aux;
|
||||
};
|
||||
|
||||
wBigInt.prototype.modInv = function (q) {
|
||||
let t = wBigInt.zero;
|
||||
let r = q;
|
||||
let newt = wBigInt.one;
|
||||
let newr = this.affine(q);
|
||||
while (newr!=wBigInt.zero) {
|
||||
let q = r/newr;
|
||||
[t, newt] = [newt, t-q*newt];
|
||||
[r, newr] = [newr, r-q*newr];
|
||||
// Sub
|
||||
wBigInt.genSub = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => (a-b) % q;
|
||||
} else {
|
||||
return (a,b) => a-b;
|
||||
}
|
||||
if (t<wBigInt.zero) t += q;
|
||||
return t;
|
||||
};
|
||||
|
||||
wBigInt.prototype.add = function(b) {
|
||||
return this+b;
|
||||
|
||||
// Neg
|
||||
wBigInt.genNeg = (q) => {
|
||||
if (q) {
|
||||
return (a) => (-a) % q;
|
||||
} else {
|
||||
return (a) => -a;
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.prototype.minus = function(b) {
|
||||
return this-b;
|
||||
// Mul
|
||||
wBigInt.genMul = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => (a*b) % q;
|
||||
} else {
|
||||
return (a,b) => a*b;
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.prototype.times = function(b) {
|
||||
return this*b;
|
||||
// Equals
|
||||
wBigInt.genEquals = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => (a.affine(q) == b.affine(q));
|
||||
} else {
|
||||
return (a,b) => a == b;
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.prototype.mod = function(q) {
|
||||
return this%q;
|
||||
// Square
|
||||
wBigInt.genSquare = (q) => {
|
||||
if (q) {
|
||||
return (a) => (a*a) %q;
|
||||
} else {
|
||||
return (a) => a*a;
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.prototype.square = function() {
|
||||
return this*this;
|
||||
|
||||
// Double
|
||||
wBigInt.genDouble = (q) => {
|
||||
if (q) {
|
||||
return (a) => (a+a) %q;
|
||||
} else {
|
||||
return (a) => a+a;
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.prototype.double = function() {
|
||||
return this+this;
|
||||
// IsZero
|
||||
wBigInt.genIsZero = (q) => {
|
||||
if (q) {
|
||||
return (a) => (a.affine(q) == wBigInt.zero);
|
||||
} else {
|
||||
return (a) => a != 0;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// Other minor functions
|
||||
wBigInt.prototype.isOdd = function() {
|
||||
return (this & wBigInt.one) == 1;
|
||||
};
|
||||
|
||||
wBigInt.prototype.isZero = function() {
|
||||
return (this == wBigInt.zero);
|
||||
};
|
||||
|
||||
wBigInt.prototype.isNegative = function() {
|
||||
return this < wBigInt.zero;
|
||||
};
|
||||
@ -83,46 +144,197 @@ if (typeof(BigInt) != "undefined") {
|
||||
return this <= b;
|
||||
};
|
||||
|
||||
wBigInt.prototype.equals = function(b) {
|
||||
/* console.log("..");
|
||||
console.log(this);
|
||||
console.log(b);
|
||||
console.log(this == b);
|
||||
console.log(".."); */
|
||||
return this.valueOf() == b.valueOf();
|
||||
};
|
||||
|
||||
wBigInt.prototype.mulMod = function(q, b) {
|
||||
return this * b % q;
|
||||
};
|
||||
|
||||
wBigInt.one = BigInt(1);
|
||||
wBigInt.zero = BigInt(0);
|
||||
|
||||
module.exports = wBigInt;
|
||||
} else {
|
||||
|
||||
bigInt.prototype.mulMod = function(q, b) {
|
||||
return this.times(b).mod(q);
|
||||
};
|
||||
wBigInt = bigInt;
|
||||
|
||||
bigInt.prototype.affine = function (q) {
|
||||
let aux = this;
|
||||
if (aux.isNegative()) {
|
||||
const nq = bigInt.zero.minus(q);
|
||||
if (aux.lesserOrEquals(nq)) {
|
||||
aux = aux.mod(q);
|
||||
}
|
||||
// Affine
|
||||
wBigInt.genAffine = (q) => {
|
||||
const nq = wBigInt.zero.minus(q);
|
||||
return (a) => {
|
||||
let aux = a;
|
||||
if (aux.isNegative()) {
|
||||
aux = aux.add(q);
|
||||
if (aux.lesserOrEquals(nq)) {
|
||||
aux = aux.mod(q);
|
||||
}
|
||||
if (aux.isNegative()) {
|
||||
aux = aux.add(q);
|
||||
}
|
||||
} else {
|
||||
if (aux.greaterOrEquals(q)) {
|
||||
aux = aux.mod(q);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (aux.greaterOrEquals(q)) {
|
||||
aux = aux.mod(q);
|
||||
}
|
||||
}
|
||||
return aux;
|
||||
return aux;
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = bigInt;
|
||||
|
||||
// Inverse
|
||||
wBigInt.genInverse = (q) => {
|
||||
return (a) => a.affine(q).modInv(q);
|
||||
};
|
||||
|
||||
// Add
|
||||
wBigInt.genAdd = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => {
|
||||
const r = a.add(b);
|
||||
return r.greaterOrEquals(q) ? r.minus(q) : r;
|
||||
};
|
||||
} else {
|
||||
return (a,b) => a.add(b);
|
||||
}
|
||||
};
|
||||
|
||||
// Sub
|
||||
wBigInt.genSub = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => a.greaterOrEquals(b) ? a.minus(b) : a.minus(b).add(q);
|
||||
} else {
|
||||
return (a,b) => a.minus(b);
|
||||
}
|
||||
};
|
||||
|
||||
wBigInt.genNeg = (q) => {
|
||||
if (q) {
|
||||
return (a) => a.isZero() ? a : q.minus(a);
|
||||
} else {
|
||||
return (a) => wBigInt.zero.minus(a);
|
||||
}
|
||||
};
|
||||
|
||||
// Mul
|
||||
wBigInt.genMul = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => a.times(b).mod(q);
|
||||
} else {
|
||||
return (a,b) => a.times(b);
|
||||
}
|
||||
};
|
||||
|
||||
// Square
|
||||
wBigInt.genSquare = (q) => {
|
||||
if (q) {
|
||||
return (a) => a.square().mod(q);
|
||||
} else {
|
||||
return (a) => a.square();
|
||||
}
|
||||
};
|
||||
|
||||
// Double
|
||||
wBigInt.genDouble = (q) => {
|
||||
if (q) {
|
||||
return (a) => a.add(a).mod(q);
|
||||
} else {
|
||||
return (a) => a.add(a);
|
||||
}
|
||||
};
|
||||
|
||||
// Equals
|
||||
wBigInt.genEquals = (q) => {
|
||||
if (q) {
|
||||
return (a,b) => a.affine(q).equals(b.affine(q));
|
||||
} else {
|
||||
return (a,b) => a.equals(b);
|
||||
}
|
||||
};
|
||||
|
||||
// IsZero
|
||||
wBigInt.genIsZero = (q) => {
|
||||
if (q) {
|
||||
return (a) => (a.affine(q).isZero());
|
||||
} else {
|
||||
return (a) => a.isZero();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
wBigInt.affine = function(a, q) {
|
||||
return wBigInt.genAffine(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.affine = function (q) {
|
||||
return wBigInt.affine(this, q);
|
||||
};
|
||||
|
||||
wBigInt.inverse = function(a, q) {
|
||||
return wBigInt.genInverse(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.inverse = function (q) {
|
||||
return wBigInt.genInverse(this, q);
|
||||
};
|
||||
|
||||
wBigInt.add = function(a, b, q) {
|
||||
return wBigInt.genAdd(q)(a,b);
|
||||
};
|
||||
|
||||
wBigInt.prototype.add = function (a, q) {
|
||||
return wBigInt.genAdd(q)(this, a);
|
||||
};
|
||||
|
||||
wBigInt.sub = function(a, b, q) {
|
||||
return wBigInt.genSub(q)(a,b);
|
||||
};
|
||||
|
||||
wBigInt.prototype.sub = function (a, q) {
|
||||
return wBigInt.genSub(q)(this, a);
|
||||
};
|
||||
|
||||
wBigInt.neg = function(a, q) {
|
||||
return wBigInt.genNeg(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.neg = function (q) {
|
||||
return wBigInt.genNeg(q)(this);
|
||||
};
|
||||
|
||||
wBigInt.mul = function(a, b, q) {
|
||||
return wBigInt.genMul(q)(a,b);
|
||||
};
|
||||
|
||||
wBigInt.prototype.mul = function (a, q) {
|
||||
return wBigInt.genMul(q)(this, a);
|
||||
};
|
||||
|
||||
wBigInt.equals = function(a, b, q) {
|
||||
return wBigInt.genEquals(q)(a,b);
|
||||
};
|
||||
|
||||
wBigInt.prototype.equals = function (a, q) {
|
||||
return wBigInt.genEquals(q)(this, a);
|
||||
};
|
||||
|
||||
wBigInt.square = function(a, q) {
|
||||
return wBigInt.genSquare(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.square = function (a, q) {
|
||||
return wBigInt.genSquare(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.double = function(a, q) {
|
||||
return wBigInt.genDouble(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.double = function (a, q) {
|
||||
return wBigInt.genDouble(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.isZero = function(a, q) {
|
||||
return wBigInt.genIsZero(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.prototype.isZero = function (a, q) {
|
||||
return wBigInt.genIsZero(q)(a);
|
||||
};
|
||||
|
||||
wBigInt.one = wBigInt(1);
|
||||
wBigInt.zero = wBigInt(0);
|
||||
|
||||
module.exports = wBigInt;
|
||||
|
||||
|
@ -4,59 +4,28 @@ const fUtils = require("./futils.js");
|
||||
class ZqField {
|
||||
constructor(q) {
|
||||
this.q = q;
|
||||
this.nq = bigInt.zero.minus(q);
|
||||
this.zero = bigInt.zero;
|
||||
this.one = bigInt.one;
|
||||
this.add = bigInt.genAdd();
|
||||
this.double = bigInt.genDouble();
|
||||
this.sub = bigInt.genSub();
|
||||
this.neg = bigInt.genNeg();
|
||||
this.mul = bigInt.genMul(q);
|
||||
this.inverse = bigInt.genInverse(q);
|
||||
this.square = bigInt.genSquare(q);
|
||||
this.equals = bigInt.genEquals(q);
|
||||
this.affine = bigInt.genAffine(q);
|
||||
this.isZero = bigInt.genIsZero(q);
|
||||
}
|
||||
|
||||
copy(a) {
|
||||
return bigInt(a);
|
||||
}
|
||||
|
||||
add(a, b) {
|
||||
return a.add(b);
|
||||
}
|
||||
|
||||
double(a) {
|
||||
return this.add(a,a);
|
||||
}
|
||||
|
||||
sub(a, b) {
|
||||
return a.minus(b);
|
||||
}
|
||||
|
||||
neg(a) {
|
||||
return bigInt.zero.minus(a);
|
||||
}
|
||||
|
||||
mul(a, b) {
|
||||
return a.mulMod(this.q, b);
|
||||
}
|
||||
|
||||
inverse(a) {
|
||||
return a.modInv(this.q);
|
||||
}
|
||||
|
||||
div(a, b) {
|
||||
return this.mul(a, this.inverse(b));
|
||||
}
|
||||
|
||||
square(a) {
|
||||
return a.square().mod(this.q);
|
||||
}
|
||||
|
||||
isZero(a) {
|
||||
return a.isZero();
|
||||
}
|
||||
|
||||
equals(a, b) {
|
||||
return this.affine(a).equals(this.affine(b));
|
||||
}
|
||||
|
||||
affine(a) {
|
||||
return a.affine(this.q);
|
||||
}
|
||||
|
||||
mulEscalar(base, e) {
|
||||
return fUtils.mulEscalar(this, base, e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user