I have a dense system of equations of type Ax=b to solve in my C++ program, and I was hoping to implement the solution using UBLAS in boost. In some other questions I found that people were using the extension LAPACK, but unfortunately it doesn't seem to be part of my standard boost installation (in Debian at least) and I am not allowed to add more dependencies.
Could someone paste a solution that doesn't use LAPACK or any other libraries?