Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dr. Ajay Kumar PHD
qanal
Commits
4875a32b
Commit
4875a32b
authored
Nov 14, 2021
by
Dr. Ajay Kumar PHD
Browse files
clarify comment
parent
96c1fb2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/qx_z.erl
View file @
4875a32b
...
...
@@ -95,8 +95,10 @@ gcd_accum([X | Xs], GCDAccum) ->
-
spec
gcdabs
(
znn
(),
znn
())
->
znn
().
% @private gcd where the arguments can be assumed to be non-negative,
% but not necessarily in the correct order (the argument on the left
% should be bigger than or equal to the argument on the right).
% but not necessarily in the correct order
%
% This function is responsible for making sure the argument on the
% left is bigger than or equal to the argument on the right.
gcdabs
(
X
,
Y
)
when
X
<
Y
->
gcdplus
(
Y
,
X
);
...
...
Write
Preview
Supports
Markdown
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