ilupp icon indicating copy to clipboard operation
ilupp copied to clipboard

A C++/Python library for incomplete LU factorizations based on Jan Mayer's ILU++

Results 3 ilupp issues
Sort by recently updated
recently updated
newest added

Here is my attempt at implementing the two-module solution. It is almost entirely transparent to the user and does not require any upcasting. The only difficulty is supporting the iluplusplus_precond_parameter...

``` c++ template matrix_sparse matrix_sparse::transpose_in_place() { orientation = other_orientation(orientation); std::swap(number_rows, number_columns); return *this; } ``` Why transpose in place just swap number rows and columns and change orientation?. I can't...

When I want to install ilupp, I get the following error. We tried searching for a solution via Google, but to no avail. If you can provide some helpful suggestions,...