diff options
author | Thomas White <taw@physics.org> | 2012-10-10 17:42:33 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-10-11 18:17:04 +0200 |
commit | cec863e72ad15da7553ef813f8fcc6c08dd292f8 (patch) | |
tree | a6bdb0bab8619beb7bda84934934d0cfd31e6274 /tests/symmetry_check.c | |
parent | 179d2c77e413bff38d46248ea88d7ab01005ad33 (diff) |
Tie off loose ends
This whole idea is rubbish. There's no way to communicate the setting information
via the H-M spacegroup symbol in this way, except in a few circumstances.
See ITA (2005) section 4.3.
This simplifies matters a lot. There's no need for any extra parsing, because
the "_uaX" system is sufficient, and is the best that can be done without
inventing a whole new system for point group symbols.
Diffstat (limited to 'tests/symmetry_check.c')
-rw-r--r-- | tests/symmetry_check.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/symmetry_check.c b/tests/symmetry_check.c index 648814d0..cfc68f08 100644 --- a/tests/symmetry_check.c +++ b/tests/symmetry_check.c @@ -403,12 +403,9 @@ int main(int argc, char *argv[]) check_pg_props( "4/m_uaa", 8, 1, &fail); check_pg_props( "4/m_uab", 8, 1, &fail); check_pg_props( "4/m_uac", 8, 1, &fail); - - /* Check "new style" parsing */ - STATUS("\nNew style:\n"); - check_pg_props( "2 1 1", 2, 0, &fail); - check_pg_props( "1 2 1", 2, 0, &fail); - check_pg_props( "1 1 2", 2, 0, &fail); + check_pg_props( "23_uaa", 12, 0, &fail); + check_pg_props( "23_uab", 12, 0, &fail); + check_pg_props( "23_uac", 12, 0, &fail); return fail; } |