Skip to content
GitLab
Menu
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
8f2d45bc
Commit
8f2d45bc
authored
May 12, 2020
by
Thomas White
Browse files
Fix silly mistake in cell reduction
parent
32c4a7d9
Changes
1
Hide whitespace changes
Inline
Side-by-side
libcrystfel/src/cell-utils.c
View file @
8f2d45bc
...
...
@@ -1956,12 +1956,12 @@ IntegerMatrix *reduce_g6(struct g6 g, double epsrel)
}
if
(
GT
(
g
.
E
,
0
.
0
)
)
{
ijk
[
1
]
=
-
1
;
}
else
if
(
!
LT
(
g
.
D
,
0
.
0
)
)
{
}
else
if
(
!
LT
(
g
.
E
,
0
.
0
)
)
{
z
=
1
;
}
if
(
GT
(
g
.
F
,
0
.
0
)
)
{
ijk
[
2
]
=
-
1
;
}
else
if
(
!
LT
(
g
.
D
,
0
.
0
)
)
{
}
else
if
(
!
LT
(
g
.
F
,
0
.
0
)
)
{
z
=
2
;
}
if
(
ijk
[
0
]
*
ijk
[
1
]
*
ijk
[
2
]
<
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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