isl-rs 0.3.1

Rust bindings for Integer Set Library
Documentation
1
2
3
4
5
6
7
8
9
if (d <= -1) {
  for (int c0 = 0; c0 < -(-d % 2) - d + w; c0 += 1) {
    A(c0);
    B(c0);
  }
} else {
  for (int c0 = 0; c0 < (d % 2) - d + w; c0 += 1)
    A(c0);
}