comp-library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub luzhiled1333/comp-library

:heavy_check_mark: src/geometry/R2/numbers/eps.hpp

Required by

Verified with

Code

#pragma once

#include <cmath>

namespace luz::R2 {

  long double &eps() {
    static long double EPS = 1e-10;
    return EPS;
  }

  void set_eps(long double EPS) {
    eps() = EPS;
  }

} // namespace luz::R2
#line 2 "src/geometry/R2/numbers/eps.hpp"

#include <cmath>

namespace luz::R2 {

  long double &eps() {
    static long double EPS = 1e-10;
    return EPS;
  }

  void set_eps(long double EPS) {
    eps() = EPS;
  }

} // namespace luz::R2
Back to top page