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

Function ceil_div_xx

gecode/int/div.hpp:81–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79
80 template<class IntType>
81 forceinline IntType
82 ceil_div_xx(IntType x, IntType y) {
83 return (x >= 0) ? ceil_div_px(x,y) : -floor_div_px(-x,y);
84 }
85 template<class IntType>
86 forceinline IntType
87 floor_div_xx(IntType x, IntType y) {

Callers 3

propagateMethod · 0.85
propagateMethod · 0.85
ExecStatus edgefindingFunction · 0.85

Calls 2

ceil_div_pxFunction · 0.85
floor_div_pxFunction · 0.85

Tested by

no test coverage detected