| 41 | |
| 42 | template<class T> |
| 43 | SubProcessor<T>::~SubProcessor() |
| 44 | { |
| 45 | DataF.set_proc(0); |
| 46 | for (size_t i = 0; i < personal_bit_preps.size(); i++) |
| 47 | { |
| 48 | auto& x = personal_bit_preps[i]; |
| 49 | delete x; |
| 50 | } |
| 51 | #ifdef VERBOSE |
| 52 | if (not bit_usage.empty()) |
| 53 | { |
| 54 | cerr << "Mixed-circuit preprocessing cost:" << endl; |
| 55 | bit_usage.print_cost(); |
| 56 | } |
| 57 | #endif |
| 58 | } |
| 59 | |
| 60 | template<class sint, class sgf2n> |
| 61 | inline ofstream& Processor<sint, sgf2n>::get_public_output() |
nothing calls this directly
no test coverage detected