mirror of
https://github.com/arnaucube/circom.git
synced 2026-02-07 03:06:42 +01:00
bigarray
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
const bigInt = require("big-integer");
|
||||
const BigArray = require("./bigarray.js");
|
||||
|
||||
|
||||
class TableName {
|
||||
@@ -103,11 +104,11 @@ module.exports = class Ctx {
|
||||
this.COUNTED = 0x20;
|
||||
|
||||
this.scopes = [{}];
|
||||
this.signals = [];
|
||||
this.signals = new BigArray();
|
||||
|
||||
this.currentComponent= -1;
|
||||
this.constraints= [];
|
||||
this.components= [];
|
||||
this.constraints= new BigArray();
|
||||
this.components= new BigArray();
|
||||
this.templates= {};
|
||||
this.functions= {};
|
||||
this.functionParams= {};
|
||||
|
||||
Reference in New Issue
Block a user