procon

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

View the Project on GitHub mugen1337/procon

:warning: Geometry/Dot.hpp

Required by

Code

// Dot
Real dot(Point a,Point b) {
    return real(a)*real(b)+imag(a)*imag(b);
}
#line 1 "Geometry/Dot.hpp"
// Dot
Real dot(Point a,Point b) {
    return real(a)*real(b)+imag(a)*imag(b);
}
Back to top page