- echo
- date
- sleep
- mkdir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# imports | |
import BBP | |
import numpy | |
import random | |
import time | |
import wx | |
from math import pi, sqrt, log10 | |
from deap import base | |
from deap import creator | |
from deap import tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
File name: gp_from_string_fix.py | |
Author: Thomas Macrina | |
Date created: 04/15/2014 | |
Python Version: 2.7 | |
Simple DEAP strongly-typed GP setup to demonstrate | |
difficulties with ephemerals and scoop. | |
""" |