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)
commitbdb1fd5e614e714daf3fe86c55f4e6c4a073baee
treebb6fae6ad436a117e35fb0351db56ac7f29bfbe9
parent5dda7df10680fe3db6d0778cd4fda289ca6f51ce
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