| 15 | } |
| 16 | |
| 17 | __host__ __device__ inline bool is_I_low(float_type a, float_type y, float_type Cp, float_type Cn) { |
| 18 | return (y > 0 && a > 0) || (y < 0 && a < Cn); |
| 19 | } |
| 20 | |
| 21 | __host__ __device__ inline bool is_free(float_type a, float_type y, float_type Cp, float_type Cn) { |
| 22 | return a > 0 && (y > 0 ? a < Cp : a < Cn); |
no outgoing calls
no test coverage detected