-
-
Notifications
You must be signed in to change notification settings - Fork 356
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
WIP: Gaussian elimination in Fortran90 #638
WIP: Gaussian elimination in Fortran90 #638
Conversation
… how to put data in the proper way Comments and test outputs will be deleted or condensed in the final commit.
Executing results in boundary exception while looping through the re-evaluation of row elements.
Further debugging necessary.
Maybe to document the progress: I am struggling with initialisation of the array. Fortran has a different approach on how to fill up an array with values. Internal functions, like finding the index of max_val element, are row based. Therefore I tried to solve it with transponation of the array/matrix. Did not work out that good and created more bugs in the process. So still WIP. |
If there is a more fortran-esque way of doing this, I don't mind working with you to make that possible. Gaussian Elimination must be doable in Fortran. It's Fortran! |
Perhaps you should try wearing a blue tie? |
[lang: fortran] |
@depate Since this PR has not been updated significantly for 2 years, I will close this PR for now. Feel free to re-open it if you wish to continue working on it, though 😃 |
Initial commit. based on upstream master. intended to replace PR gaussian_fortran