-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
[bugs] fixes for lgtm and improve docs #553
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This works too😂 I didn't see it this way.
There is another file numerical_methods/durand_kerner_roots.c
which has a similar issue on line 50 where the type of coeff
is double
instead of long double
.
rule of thumb: avoid typecasting and find and address the root-problem :) |
This pull request fixes 1 alert when merging f21f18e into 0f48961 - view on LGTM.com fixed alerts:
|
I can approve this if you want to create a separate PR for |
This pull request introduces 2 alerts and fixes 2 when merging cb99925 into 0f48961 - view on LGTM.com new alerts:
fixed alerts:
|
coeffs = (double *)malloc( | ||
degree * sizeof(double)); /* store all input coefficients */ | ||
coeffs = (long double *)malloc( | ||
degree * sizeof(long double)); /* store all input coefficients */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
printf might complain now on line 150 and 152
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh LGTM issued the alert
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, converted to draft. dont review until marked as ready for review.
This pull request fixes 2 alerts when merging 2150c35 into 0f48961 - view on LGTM.com fixed alerts:
|
This pull request fixes 3 alerts when merging ec57c8f into 0f48961 - view on LGTM.com fixed alerts:
|
This pull request fixes 7 alerts when merging ccd3f66 into 0f48961 - view on LGTM.com fixed alerts:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks good
Description of Change
double
andlong double
indurand_kerner_roots.c
bead_sort.c
References
Checklist
Notes: