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

Function eq

code/mathematics/berlekamp_massey.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<long double>(long double a,long double b){
3 return abs(a - b) < EPS; }
4template <class Num>

Callers 1

berlekamp_masseyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected