imsuck's library

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub imsuck/library

:warning: other/dbg.hpp

Code

#ifndef LOCAL
    #define dbg(...) (void(0))
    #define debug() if (false)
    #define DBG_FORMAT_STRUCT(...)
    #define DBG_PRETTY_STRUCT(...)
#else
namespace dbg::options {
    int _ = []() {
        fixed_float = true;
        float_precision = 6;
        trivial_string = true;
        max_container_elements = -1;
        return 0;
    }();
} // namespace dbg::options
#endif
#line 1 "other/dbg.hpp"

    #define dbg(...) (void(0))
    #define debug() if (false)
    #define DBG_FORMAT_STRUCT(...)
    #define DBG_PRETTY_STRUCT(...)
#else
namespace dbg::options {
    int _ = []() {
        fixed_float = true;
        float_precision = 6;
        trivial_string = true;
        max_container_elements = -1;
        return 0;
    }();
} // namespace dbg::options
#endif
Back to top page