Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add C implementation for math/base/special/lcm #2276

Merged
merged 2 commits into from
May 29, 2024
Merged

feat: add C implementation for math/base/special/lcm #2276

merged 2 commits into from
May 29, 2024

Conversation

gunjjoshi
Copy link
Member

@gunjjoshi gunjjoshi commented May 29, 2024

Description

What is the purpose of this pull request?

This pull request:

double stdlib_base_lcm( const double a, const double b )

Related Issues

Does this pull request have any related issues?

This pull request:

Questions

Any questions for reviewers of this pull request?

No.

Other

Any other information relevant to this pull request? This may include screenshots, references, and/or implementation notes.

No.

Checklist

Please ensure the following tasks are completed before submitting this pull request.


@stdlib-js/reviewers

@stdlib-bot stdlib-bot added the Math Issue or pull request specific to math functionality. label May 29, 2024
@Planeshifter Planeshifter self-requested a review May 29, 2024 19:51
Copy link
Member

@Planeshifter Planeshifter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. Thanks, @gunjjoshi!

@Planeshifter Planeshifter merged commit 28e1548 into stdlib-js:develop May 29, 2024
8 checks passed
double bn;
double d;

if( a == 0.0 || b == 0.0 ) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing space.

Comment on lines +45 to +46
}
else {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for line break.

Comment on lines +51 to +52
}
else {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for linebreak.

/**
* Computes the least common multiple (lcm).
*
* @private
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't a private API. The @private tag should be removed.

@kgryte
Copy link
Member

kgryte commented Jun 2, 2024

@gunjjoshi Would you mind submitting a small follow-up PR addressing the comments above? Thanks!

@kgryte kgryte added the C Issue involves or relates to C. label Jun 2, 2024
@gunjjoshi
Copy link
Member Author

@gunjjoshi Would you mind submitting a small follow-up PR addressing the comments above? Thanks!

Sure, I've made a PR #2296.

aman-095 pushed a commit to aman-095/stdlib that referenced this pull request Jun 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C Issue involves or relates to C. Math Issue or pull request specific to math functionality.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants