diff options
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/index.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index 9c90c164..e16fd9c3 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -1203,11 +1203,12 @@ char *detect_indexing_methods(UnitCell *cell) do_probe(mosflm_probe, cell, methods); do_probe(dirax_probe, cell, methods); - do_probe(asdf_probe, cell, methods); do_probe(xds_probe, cell, methods); do_probe(xgandalf_probe, cell, methods); - /* Don't automatically use TakeTwo, Felix or PinkIndexer (yet) */ + + /* The following methods are all too slow for general use */ //do_probe(taketwo_probe, cell, methods); + //do_probe(asdf_probe, cell, methods); //do_probe(felix_probe, cell, methods); //do_probe(pinkIndexer_probe, cell, methods); |