nx_autofix_mut_iseven_cp.nx
buildroot/runtime/nx_autofix_mut_iseven_cp.nx
about
nx_autofix_mut_iseven_cp.nx -- MUTATION-GENERATED FOREIGN BUG (class: comparison-constant
perturbation, ==0 became ==1 -- parity inverted). Target: iseven. Sibling max2 stays green.
dependencies 1 imports · 0 importers
imports: nx_syscalls.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 5 | func cw(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 6 | func cn(v: i64) -> i64 |
| 19 | func fncase1(fn: *u8, a: i64, want: i64, got: i64) -> i64 |
| 25 | func max2(a: i64, b: i64) -> i64 { if a > b { return a } return b } called by 1: main |
| 26 | func iseven(x: i64) -> i64 { if (x % 2) == 1 { return 1 } return 0 } called by 1: main |
| 28 | func main() -> i64 |