diff options
author | Thomas White <taw@physics.org> | 2009-11-19 14:45:03 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2009-11-19 14:45:03 +0100 |
commit | a90da1791f73b8b9ddcca28e1865c6ae17a78db2 (patch) | |
tree | 1aee00a15479e9331a460bcb0edaf03d00c5e71b /src/sfac.h | |
parent | 145eb787b1a59baaa8cc3f96bb28742786e68f49 (diff) |
Tidy up floating-point precision
Diffstat (limited to 'src/sfac.h')
-rw-r--r-- | src/sfac.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,11 +24,11 @@ struct mol_species char species[4]; /* Species name */ int n_atoms; /* Number of atoms of this species */ - float x[32*1024]; - float y[32*1024]; - float z[32*1024]; - float occ[32*1024]; - float B[32*1024]; + double x[32*1024]; + double y[32*1024]; + double z[32*1024]; + double occ[32*1024]; + double B[32*1024]; }; |