Method
Server_JXTpp
(Map<BigInteger, ArrayList<byte[]>> tset, Setup_JXTpp[] table, BigInteger stag)
Source from the content-addressed store, hash-verified
| 25 | private BigInteger stag1; |
| 26 | |
| 27 | public Server_JXTpp(Map<BigInteger, ArrayList<byte[]>> tset, Setup_JXTpp[] table, BigInteger stag) { |
| 28 | int table_num = table.length; |
| 29 | this.tset = tset; |
| 30 | this.stag1 = stag; |
| 31 | f = new Bloom[table_num]; |
| 32 | xor = new Xor8[table_num]; |
| 33 | for (int i = 0; i < table_num; i++) { |
| 34 | f[i] = table[i].getF(); |
| 35 | xor[i] = table[i].getXor(); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * the server operations of the search algorithm for JXT++ |
Callers
nothing calls this directly
Tested by
no test coverage detected