Method
Server_MJXT
(Map<BigInteger, ArrayList<tuple>> tset, Setup_JXT[] table)
Source from the content-addressed store, hash-verified
| 25 | private int table_num; |
| 26 | |
| 27 | public Server_MJXT(Map<BigInteger, ArrayList<tuple>> tset, Setup_JXT[] table){ |
| 28 | this.tset = tset; |
| 29 | table_num = table.length; |
| 30 | f = new Bloom[table_num]; |
| 31 | for (int i = 0; i < table_num; i++) { |
| 32 | f[i] = table[i].getF(); |
| 33 | } |
| 34 | } |
| 35 | /** |
| 36 | * Get the number of the both table's TSet entries |
| 37 | * @param stag the both table's stag |
Callers
nothing calls this directly
Tested by
no test coverage detected