Genetic programming: read this Lisp s-expression tree as one crossover subtree.
Genetic programming: read this Lisp s-expression tree as one crossover subtree.
Answer
(* 4 6)
In genetic programming a program is a Lisp tree; (* 4 6) is a subtree (apply * to 4 and 6 = 24). Crossover swaps such subtrees between two parent programs, always producing a valid program when the function/terminal sets satisfy closure.