Skip to content
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

Regular sparse matrix datatype #6

Open
jamesavery opened this issue Jul 11, 2023 · 0 comments
Open

Regular sparse matrix datatype #6

jamesavery opened this issue Jul 11, 2023 · 0 comments

Comments

@jamesavery
Copy link
Owner

Add regular sparse matrix datatype with data members

 size_t N; // Dimension NxN for matricen
 size_t nnz; // Antal af nz per raekke
 real_t *values; // Vaerdier i flad memory, N*nnz
 uint16_t *cols; // Søjleindices i flad memory, N*nnz

on which eigensolve, spectrum_ends, and (TODO) sparse linear solver acts.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant