Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
1
template <class K> bool eq(K a, K b) { return a == b; }
2
template <> bool eq<double>(double a, double b) {
3
return abs(a - b) < EPS; }
4
template <class T> struct matrix {
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected