| 12 | void second_phase(string filename); |
| 13 | |
| 14 | int main() |
| 15 | { |
| 16 | for (int n_mults = 0; n_mults < 2; n_mults++) |
| 17 | for (int sec = 0; sec <= 120; sec += 40) |
| 18 | { |
| 19 | string filename = "mp-spdz-he"; |
| 20 | first_phase(filename, n_mults, sec); |
| 21 | second_phase(filename); |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | void first_phase(string filename, int n_mults, int circuit_sec) |
| 26 | { |
nothing calls this directly
no test coverage detected