MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / eq

Function eq

code/data-structures/matrix.cpp:1–1  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1template <class K> bool eq(K a, K b) { return a == b; }
2template <> bool eq<double>(double a, double b) {
3 return abs(a - b) < EPS; }
4template <class T> struct matrix {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected