| 342 | } |
| 343 | |
| 344 | void Rq_Element::input(istream& s) |
| 345 | { |
| 346 | s.read((char*)&lev, sizeof(lev)); |
| 347 | check_level(); |
| 348 | for (int i = 0; i <= lev; i++) |
| 349 | a[i].input(s); |
| 350 | } |
| 351 | |
| 352 | void Rq_Element::check(const FHE_Params& params) const |
| 353 | { |
no test coverage detected