config.hpp 441 B

12345678910111213141516171819
  1. #ifndef CONFIG_HPP
  2. #define CONFIG_HPP
  3. #include <cstddef>
  4. using namespace std;
  5. //#define DATA_DIR string("/home/fromentin/data/") //string("/workdir/lmpa/jfromentin/")
  6. #define SERVER_IP "127.0.0.1" //"10.1.0.104" //"192.168.1.3" //Orval 04
  7. #define SERVER_PORT 55555
  8. #define MAX_MSG_SIZE 65536
  9. #define MAX_CLIENTS 2048
  10. #define MAX_WORKERS 2048
  11. #define MAX_GENUS 80
  12. #define STACK_BOUND 20
  13. #define CILK_WORKERS "2"
  14. #define K_MANUEL 4
  15. #endif