This repository shows some research done for making a linear equation system solving algorithm.
The main file in the repo is article.pdf. It contains the article describing the solution I found and how I found it.
The article was written in LaTeX, and the source code is contained in the file article.tex.
To build the document, you may have to install some LaTeX packages, like hyperref
, listings
, xcolor
, or algorithm2e
.
The two Python files linear_system_solver.py and linear_systems_tests.py respectively contain the implementation of the solving algorithm and a testing program. The usage of these programs is explained in the main document.