Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
84e676ef
Commit
84e676ef
authored
Oct 04, 2012
by
Thomas White
Browse files
Fix two more FIXMEs
parent
877543e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/get_hkl.c
View file @
84e676ef
...
...
@@ -167,8 +167,7 @@ static RefList *twin_reflections(RefList *in,
RefList
*
out
;
SymOpMask
*
m
;
/* FIXME: Check properly by coset decomposition */
if
(
num_equivs
(
holo
,
NULL
)
<
num_equivs
(
mero
,
NULL
)
)
{
if
(
!
is_subgroup
(
holo
,
mero
)
)
{
ERROR
(
"%s is not a subgroup of %s!
\n
"
,
symmetry_name
(
mero
),
symmetry_name
(
holo
));
return
NULL
;
...
...
@@ -255,8 +254,7 @@ static RefList *expand_reflections(RefList *in, const SymOpList *target,
RefList
*
out
;
SymOpMask
*
m
;
/* FIXME: Check properly */
if
(
num_equivs
(
target
,
NULL
)
>
num_equivs
(
initial
,
NULL
)
)
{
if
(
!
is_subgroup
(
target
,
initial
)
)
{
ERROR
(
"%s is not a subgroup of %s!
\n
"
,
symmetry_name
(
initial
),
symmetry_name
(
target
));
return
NULL
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment