Technical Article

An Introduction to Genetic Programming: A System That Programs Itself?

October 04, 2021 by Greg Schmidt

Can a system author itself? Genetic programming may represent the next revolution for control systems, robot navigation, pattern recognition, and more.

Perhaps the "Holy Grail" of computer science will have been discovered the day our machines can write their own programs. Genetic programming (GP) is a relatively new machine learning paradigm representing a step in that direction. 

GP holds a great deal of promise in the realm of control engineering. In this article, we'll discuss what genetic programming is, how it can be represented, and take a look at an example program.

This article is the first in a series. To jump ahead to the next entries, select one below:

Genetic Programming and Genetic Algorithms

GP is essentially a variation of the genetic algorithm (GA) originally conceived by John Holland. Like a GA, GP is an evolutionary algorithm relying on genetic operators such as fitness proportionate reproduction, crossover, and mutation to drive a population of encoded programs, or "individuals," through successive generations toward a solution.

However, unlike a GA, which typically uses a fixed-length bit string encoding, GP employs a variable-size, tree-based representation of an actual program. Therefore, the result of a successful GP run produces a computer program that, when given appropriate input and executed, yields the desired result.

Nichael Cramer and John Koza are credited for laying the foundations of GP. John Koza (who also holds a patent on GP) has done a significant amount of research on GP and his landmark book, "Genetic Programming," is considered the seminal work on the subject. Current research has demonstrated some encouraging successes of GP in a wide range of applications, including robot navigation, game strategy acquisition, symbolic regression analysis, and control systems.
 

Genetic Programming Representation

The tree-based representation mentioned earlier is central to the GP theme as virtually any computer program may be represented in this way. In practice, a functional language such as LISP is well-suited to this form and it is easy to see how a LISP S-expression can be diagrammed as a tree (Figure 1). 

Below, you’ll find three separate representations of the same information:
 

A simple program fragment:
BEGIN
IF a < b THEN a := a + 1 ELSE b := b * b
      c := a * b * 2;

END


LISP equivalent:
      (progn (if (a < b)
            (setq a (+ a 1))
            (setq b (* b b))
      )
      (setq c (* (* a b) 2))
)

 

Figure 1. Tree representation of a program. Note that (progn arg1 arg2 arg3 ... argn) sequentially evaluates each argument. 

 

The interior nodes of the tree consist of functions whereas the leaf nodes consist of terminals. Functions must have an argument count (commonly referred to as arity) of at least one, letting them be connected to other functions or terminals, thus providing the "glue" for branches within the tree.

Terminals typically include such things as constants and variables. Since terminals form the leaves of the tree, they always have an arity of zero. You are required to choose the set of functions and terminals for the problem you are attempting to solve. For example, the logical functions AND, OR, and NOT and the terminals X1 and X2, representing two boolean input variables, are appropriate if you are attempting to discover a program capable of synthesizing the XOR boolean function. A fitness function is also required since you must provide the means for one program to be measured against another in the sense that one is better at solving a given problem.

For example, in the XOR case, we may test the fitness of a program by executing the program once for each fitness case corresponding to the four possible boolean inputs for X1 and X2 (0 0, 0 1, 1 0, 1 1) and adding up the number of correct responses (0, 1, 1, 0) respectively, for each test case. 

Obviously, a program yielding a perfect score of four is considered a solution to the XOR problem, as shown in Listing 1.

 

A perfect solution to the XOR problem discovered by GP:
(defun program ()
      (AND (OR X1 X2)
            (NOT (AND X1 X2) )
      )
)

Listing 1. XOR result

 

Next: Genetic Operators

In the next article, we'll take a look at the genetic operators that make evolutionary algorithms possible. We'll also use them in a more complex example algorithm.

 

Suggested Reading

  • Kinnear, Jr., K. E. (ed.). Advances in Genetic Programming. Cambridge, Mass.: The MIT Press, 1994.
  • Knuth, D. E. The Art of Computer Programming, Volume 3, Sorting and Searching. Reading, Mass.: Addison-Wesley, 1973
  • Koza, J. R. Genetic Programming. Cambridge, Mass.: The MIT Press, 1992.
  • Koza, J. R. Genetic Programming II. Cambridge, Mass.: The MIT Press, 1994.
  • Montana, D. J. “Strongly Typed Genetic Programming.” BBN Technical Report #7866, May 1993.
  • Mitchell, Melanie, An Introduction to Genetic Algorithms, The MIT Press, 1998.
3 Comments
  • pnachtwey October 09, 2021

    ” A fitness function is also required since you must provide the means for one program to be measured against another in the sense that one is better at solving a given problem.”
    This doesn’t make sense.  If you need to compare against another reference program that works then why not use the reference program?

    How is this done in an industrial environment?  Trial and error can be costly.

    Like. Reply
    • maddiebradshaw October 19, 2021
      Hi pnachtwey, Thank you for your comment! We always appreciate feedback from our audience, especially when it starts meaningful conversations. Would anyone else like to join the conversation and add another viewpoint? Best regards, Control Automation Editors
      Like. Reply
    • G
      gschmidt June 11, 2022
      Hi, the GP process itself generates the programs, there is no "reference program" that one must provide. The fitness function is simply a measure of error. As in the example given, if the goal is to produce a program capable of sorting, then the fitness function could simply count the number of correctly sorted entries of all test cases. In a process environment, one might have a process simulation model. In that case, the fitness could be determined by running the program and providing a measure of how well it did (accumulated error, and/or perhaps degree of overshoot). You're correct, it could be expensive to evolve programs in real time, I suppose it depends upon the time constants of the processes involved. Also, GP can be used effectively in an offline environment to evolve effective controllers. The result would be a high quality controller that could be employed and evaluated efficiently in real time. John Koza did exactly that. See the paper titled "Evolution of a Controller with a Free Variable using Genetic Programming".
      Like. Reply