MCPcopy Create free account
hub / github.com/LucaFulchir/libRaptorQ / div_floor

Function div_floor

src/Precode_Matrix.cpp:32–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30float RAPTORQ_LOCAL div_ceil (const float a, const float b);
31
32float div_floor (const float a, const float b)
33{
34 return std::floor (a / b);
35}
36float div_ceil (const float a, const float b)
37{
38 return std::ceil (a / b);

Callers 2

addMethod · 0.70
existsMethod · 0.70

Calls 1

floorFunction · 0.85

Tested by

no test coverage detected