| 1036 | { return int(floor(x+0.5)); } |
| 1037 | |
| 1038 | int ap::trunc(double x) |
| 1039 | { return int(x>0 ? floor(x) : ceil(x)); } |
| 1040 | |
| 1041 | int ap::ifloor(double x) |
| 1042 | { return int(floor(x)); } |
nothing calls this directly
no outgoing calls
no test coverage detected