diff options
author | Thomas White <taw@physics.org> | 2019-08-05 14:25:04 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-22 17:03:28 +0200 |
commit | 95cce19a7aeb6be7568ab73a5263913fe476591e (patch) | |
tree | d471cf35d79bc3a02b1bc686ea221be1532d41fb /tests | |
parent | 08a8430379c52cedb4e026285aa73dd9547be17e (diff) |
Remove match_cell and match_cell_ab
Diffstat (limited to 'tests')
-rw-r--r-- | tests/cellcompare_check.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/cellcompare_check.c b/tests/cellcompare_check.c index 107702c4..7aa59fe4 100644 --- a/tests/cellcompare_check.c +++ b/tests/cellcompare_check.c @@ -217,7 +217,7 @@ static void yaro_test() UnitCell *cell; UnitCell *reference; UnitCell *cmatch; - float tols[] = {5, 5, 5, 1.5}; + //float tols[] = {5, 5, 5, 1.5}; double dtols[] = {0.05, 0.05, 0.05, deg2rad(5.0), deg2rad(5.0), deg2rad(5.0)}; cell = cell_new_from_parameters(63.24e-10, 63.94e-10, 64.61e-10, @@ -236,10 +236,10 @@ static void yaro_test() cell_print(cell); STATUS("The reference:\n"); cell_print(reference); - cmatch = match_cell(cell, reference, 0, tols, 1); - STATUS("The match:\n"); - cell_print(cmatch); - cell_free(cmatch); + //cmatch = match_cell(cell, reference, 0, tols, 1); + //STATUS("The match:\n"); + //cell_print(cmatch); + //cell_free(cmatch); RationalMatrix *m = NULL; cmatch = compare_reindexed_cell_parameters(cell, reference, dtols, &m); |