diff options
author | Thomas White <taw@physics.org> | 2020-10-06 15:42:13 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-10-06 15:51:57 +0200 |
commit | 62183aacf906f4aff771295aa378cff039dd50ff (patch) | |
tree | 4ec60226b447e2d832b94c4a04fe4df467978db9 /libcrystfel | |
parent | 5edd5c1f3ced6063d4b0ecfd4e07a0c9bee29fa4 (diff) |
Move asdf out of set of indexers used by default
Sadly, it has the same fatal flaw as TakeTwo: taking forever on a
minority of patterns.
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); |