This commit is contained in:
Jordi Baylina
2019-06-04 13:40:15 +02:00
parent efc77065e7
commit 590d62a07c
13 changed files with 12606 additions and 266 deletions

View File

@@ -0,0 +1,16 @@
const Poseidon = require("./poseidon.js");
const C = Poseidon.getConstants();
let S = "[\n";
for (let i=0; i<C.length; i++) {
S = S + " " + C[i].toString();
if (i<C.length-1) S = S + ",";
S = S + "\n";
}
S=S+ "]\n";
console.log(S);