-
```boogie
procedure unsound() {
var x: int;
assume(x == 0);
if (true) {
goto Inside;
}
while (x < 10000) {
Inside: x := x + 1;
}
assert(x == -1);
…
-
I want to create a control flow graph for each arm program to find unreachable code, dead instructions, etc.
-
# Feature request
Copying from: https://github.com/phpstan/phpstan-src/pull/1330#issuecomment-1131888965
So, there are some related bugs/feature requests:
* The linked issue https://github.co…
-
Can this repo be extended to generate CFGs for COBOL?
-
Task ID : 3.6.2
Description: Based on the pseudocode, create a control flow graph that will visualize the possible paths within the method during execution.
Goals: Completion of control flow graph.
Su…
-
### 🐛 Describe the bug
```
import torch
import numpy as np
def test_controlflow():
def is_scaled(val: np.ndarray) -> bool:
return np.min(val) >= 0 and np.max(val) = 0 and np.max(va…
-
CFA could be even more powerful if it constructs a full control flow graph that users can inspect.
Ref: https://github.com/fimbullinter/wotan/issues/160
Ref: https://github.com/fimbullinter/wotan/…
-
We originally did not allow this for simplicity, but there a number of applications where this would be very convenient.
A motivating example: a "dagger" box that contains a unitary subgraph and m…
-
Hi everybody, the control flow graph generated with PRE::ControlFlowGraph class seems not accurate. It seems doesn't hand the if statement correctly. for example, for the follow code
```c
if (i < N)…
-
```
Description
I think that we could potentially improve the control flow graphs with some
normalization to condense normal blocks so that you don't have a long list of
normal blocks in succession …