~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to Lib/sandbox/ga/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# ga - Genetic Algorithms
3
 
#
4
 
 
5
 
#from pre___init__ import __doc__
6
 
 
7
 
import tree
8
 
import algorithm
9
 
import ga_util
10
 
import ga_list
11
 
import gene
12
 
import genome
13
 
import language
14
 
import population
15
 
import scaling
16
 
import selection
17
 
import tree_opt
18
 
 
19
 
# need to look at ga_gnm, tree_opt to see if they really fit.