Merged
Conversation
Added this method in arithmetic_analysis folder. This method is used to solve system of linear equations.
Contributor
Author
|
Hi @cclauss, I've made the necessary changes for tests are failing. Please review it again |
cclauss
reviewed
Oct 15, 2021
Contributor
Author
|
Hi @cclauss, made changes as suggested. Please review |
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
Contributor
Author
|
My bad, it's done @cclauss |
cclauss
reviewed
Oct 15, 2021
Co-authored-by: Christian Clauss <cclauss@me.com>
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
cclauss
reviewed
Oct 15, 2021
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
a53a48c to
e9c9f36
Compare
cclauss
reviewed
Oct 19, 2021
Contributor
Author
|
Hi @cclauss, the recent commit seems to be passing the workflows from my forked repo, do look into it. |
Contributor
Author
|
Hi @cclauss, all the bot checks have passed, could you have a look into this |
poyea
approved these changes
Nov 9, 2021
Member
poyea
left a comment
There was a problem hiding this comment.
Thank you for your pull request!🤩
poyea
approved these changes
Nov 9, 2021
poyea
reviewed
Nov 9, 2021
Comment on lines
+143
to
+156
| is_diagonally_dominant = True | ||
|
|
||
| for i in range(0, rows): | ||
| sum = 0 | ||
| for j in range(0, cols - 1): | ||
| if i == j: | ||
| continue | ||
| else: | ||
| sum += table[i][j] | ||
|
|
||
| if table[i][i] <= sum: | ||
| raise ValueError("Coefficient matrix is not strictly diagonally dominant") | ||
|
|
||
| return is_diagonally_dominant |
Member
There was a problem hiding this comment.
We can throw in jacobi_iteration_method and always return a boolean here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Describe your change:
Checklist:
Fixes: #{$ISSUE_NO}.