Skip to content

v0.0-986-g24a8fe0: formatter: Fix constraints blocks formatting (PR #706)

Compare
Choose a tag to compare
@github-actions github-actions released this 29 Mar 20:20
· 2908 commits to master since this release
24a8fe0
Expands constraints blocks with more than one partition, e.g. if-statements
```
constraint xx {
  if (a) b;
}
```

But keeps constraints blocks with simple statements unexpanded, e.g.

```
constraint only_vec_instr_c {soft only_vec_instr == 0;}
```

Fixes #445