12345678910111213141516171819 |
- #ifndef CONFIG_HPP
- #define CONFIG_HPP
- #include <iostream>
- using namespace std;
- //! Maximal self avoiding polygon length to consider
- static const size_t max_len=16; // Must be less or equal tin [6,38]
- typedef double Reel;
- typedef int64_t Int;
- typedef int64_t int64;
- #endif
|