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

Function ceil_div_px

gecode/int/div.hpp:55–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53
54 template<class IntType>
55 forceinline IntType
56 ceil_div_px(IntType x, IntType y) {
57 assert(x >= 0);
58 return (y >= 0) ? ceil_div_pp(x,y) : -floor_div_pp(x,-y);
59 }
60 template<class IntType>
61 forceinline IntType
62 floor_div_px(IntType x, IntType y) {

Callers 2

ceil_div_xxFunction · 0.85
floor_div_xxFunction · 0.85

Calls 2

ceil_div_ppFunction · 0.85
floor_div_ppFunction · 0.85

Tested by

no test coverage detected