MCPcopy Create free account
hub / github.com/Gecode/gecode / floor_div_px

Function floor_div_px

gecode/int/div.hpp:61–65  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59 }
60 template<class IntType>
61 forceinline IntType
62 floor_div_px(IntType x, IntType y) {
63 assert(x >= 0);
64 return (y >= 0) ? floor_div_pp(x,y) : -ceil_div_pp(x,-y);
65 }
66
67 template<class IntType>
68 forceinline IntType

Callers 3

ceil_div_xxFunction · 0.85
floor_div_xxFunction · 0.85
propagateMethod · 0.85

Calls 2

floor_div_ppFunction · 0.85
ceil_div_ppFunction · 0.85

Tested by

no test coverage detected