| 403 | |
| 404 | template<class T> |
| 405 | void Preprocessing<T>::fill(edabitvec<T>& res, bool strict, int n_bits) |
| 406 | { |
| 407 | edabit<T> eb; |
| 408 | while (res.size() < res.MAX_SIZE) |
| 409 | { |
| 410 | get_edabit_no_count(strict, n_bits, eb); |
| 411 | res.push_back(eb); |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | template<class T> |
| 416 | typename Sub_Data_Files<T>::part_type& Sub_Data_Files<T>::get_part() |
no test coverage detected