| 184 | } |
| 185 | |
| 186 | bool check_norm(const Rq_Element& value, const bigint& bound) |
| 187 | { |
| 188 | bool res = (value.infinity_norm() > bound); |
| 189 | if (res) |
| 190 | cout << "out of bound by (log) " |
| 191 | << log2(value.infinity_norm().get_d() / bound.get_d()) << endl; |
| 192 | return res; |
| 193 | } |
| 194 | |
| 195 | template<class T,class FD,class S> |
| 196 | void EncCommit<T,FD,S>::Create_More() const |
no test coverage detected