MCPcopy Create free account
hub / github.com/NVIDIA/SOL-ExecBench / __eq__

Method __eq__

src/sol_execbench/core/data/solution.py:368–371  ·  view source on GitHub ↗
(self, other: object)

Source from the content-addressed store, hash-verified

366 return hash(self._hash_cache)
367
368 def __eq__(self, other: object) -> bool: # pragma: no cover - trivial wrapper
369 if not isinstance(other, Solution):
370 return NotImplemented
371 return self._hash_cache == other._hash_cache

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected