For example, mutating ```prolog brother(X,Y) :- male(X),child(X,Z),child(Y,Z),X\=Y. ``` to ```prolog brother(X,Y) :- male(X),child(X,Z),child(Y,Z). ```
For example, mutating
to