config.hpp 281 B

12345678910111213141516171819
  1. #ifndef CONFIG_HPP
  2. #define CONFIG_HPP
  3. #include <iostream>
  4. using namespace std;
  5. //! Maximal self avoiding polygon length to consider
  6. static const size_t max_len=16; // Must be less or equal tin [6,38]
  7. typedef double Reel;
  8. typedef int64_t Int;
  9. typedef int64_t int64;
  10. #endif