start.hpp 299 B

1234567891011121314
  1. #ifndef __START_HPP__
  2. #define __START_HPP__
  3. #include "net.hpp"
  4. // Once all the networking is set up, start doing whatever we were asked
  5. // to do on the command line
  6. void start(NetIO &netio, char **args);
  7. extern int epoch_wait_time;
  8. extern int num_epochs;
  9. extern int num_WN_to_precompute;
  10. #endif