This documentation is automatically generated by online-judge-tools/verification-helper
#include "src/real-geometry/common/const/eps.hpp"
#pragma once
#include "src/real-geometry/common/float-alias.hpp"
namespace geometry {
inline static f80 &eps() {
static f80 EPS = 1e-10;
return EPS;
}
void set_eps(f80 EPS) {
eps() = EPS;
}
}
#line 2 "src/real-geometry/common/const/eps.hpp"
#line 2 "src/real-geometry/common/float-alias.hpp"
namespace geometry {
using f80 = long double;
using f64 = double;
}
#line 4 "src/real-geometry/common/const/eps.hpp"
namespace geometry {
inline static f80 &eps() {
static f80 EPS = 1e-10;
return EPS;
}
void set_eps(f80 EPS) {
eps() = EPS;
}
}