diff options
author | Thomas White <taw@physics.org> | 2018-04-20 17:36:07 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2018-04-20 17:36:40 +0200 |
commit | ed2ce3add1a51bb7115747907a540d7705577b39 (patch) | |
tree | 02419d61c99b7e2c24c6010b0e9733ef47e3adb8 | |
parent | 8d9f9cc570a69780d3e3b2c271f03d055066a9be (diff) |
Remove TakeTwo from default indexing method probes
At least until it can be made faster.
-rw-r--r-- | libcrystfel/src/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index 20595604..a62dfcf1 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -1044,8 +1044,8 @@ char *detect_indexing_methods(UnitCell *cell) do_probe(dirax_probe, cell, methods); do_probe(asdf_probe, cell, methods); do_probe(xds_probe, cell, methods); - do_probe(taketwo_probe, cell, methods); - /* Don't automatically use Felix (yet) */ + /* Don't automatically use TakeTwo or Felix (yet) */ + //do_probe(taketwo_probe, cell, methods); //do_probe(felix_probe, cell, methods); if ( strlen(methods) == 0 ) { |