diff options
Diffstat (limited to 'libcrystfel/src/cell-utils.c')
-rw-r--r-- | libcrystfel/src/cell-utils.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcrystfel/src/cell-utils.c b/libcrystfel/src/cell-utils.c index 31ba9d35..30744bd4 100644 --- a/libcrystfel/src/cell-utils.c +++ b/libcrystfel/src/cell-utils.c @@ -1332,8 +1332,7 @@ double lowest_reflection(UnitCell *cell) signed int h, k, l; double lowres = INFINITY; - /* FIXME: Inelegant and nasty. Anyone want to work out - * all the possible cases? */ + /* Boring brute-force approach */ for ( h=0; h<4; h++ ) { for ( k=0; k<4; k++ ) { for ( l=0; l<4; l++ ) { |