static inline
| 9095 | |
| 9096 | //static inline |
| 9097 | int MIN3(int a, int b, int c) |
| 9098 | { |
| 9099 | int d = MIN(a, b); |
| 9100 | return MIN(c, d); |
| 9101 | } |
| 9102 | |
| 9103 | // compute the bit-mismatch for a partitioning in 2-partition mode |
| 9104 | //# maybe an issue for GPU to work in 64bits |
no outgoing calls
no test coverage detected