Use numpy.loadtxt instead of newer numpy.genfromtxt in Hemingway driver.
authorW. Trevor King <wking@drexel.edu>
Fri, 18 Jun 2010 01:02:05 +0000 (21:02 -0400)
committerW. Trevor King <wking@drexel.edu>
Fri, 18 Jun 2010 01:02:05 +0000 (21:02 -0400)
commitcf7c32ae2c78e4abc2b5ce55596dc2f701736f98
treebb6fae6ad436a117e35fb0351db56ac7f29bfbe9
parent5facc3468601dd5d58f664bef5a20ccb5fb0d75f
Use numpy.loadtxt instead of newer numpy.genfromtxt in Hemingway driver.

From
  http://docs.scipy.org/doc/numpy/user/basics.io.genfromtxt.html
"In particular, genfromtxt is able to take missing data into account,
when other faster and simpler functions like loadtxt cannot"

We prefer loadtxt because:
  * It's faster and we don't need to handle missing data.
  * It's older (genfromtxt added in Numpy in 2009/01/19, released in
    v1.3.0), so it's more likely to be in the user's stock Numpy
    installation.
hooke/driver/hemingway.py