| 1 | package com.github.dakusui.symfonion.song; | |
| 2 | ||
| 3 | public class Note { | |
| 4 | int key; | |
| 5 | int accent; | |
| 6 | public Note(int key, int accent) { | |
| 7 | this.key = key; | |
| 8 | this.accent = accent; | |
| 9 | } | |
| 10 | public int key() { | |
| 11 |
1
1. key : replaced int return with 0 for com/github/dakusui/symfonion/song/Note::key → KILLED |
return this.key; |
| 12 | } | |
| 13 | public int accent() { | |
| 14 |
1
1. accent : replaced int return with 0 for com/github/dakusui/symfonion/song/Note::accent → SURVIVED |
return this.accent; |
| 15 | } | |
| 16 | } | |
Mutations | ||
| 11 |
1.1 |
|
| 14 |
1.1 |