-
Notifications
You must be signed in to change notification settings - Fork 92
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
<iostream> missing and UF_long no longer be used #2
Comments
@milkpku Hi milkpku, I met the same error: |
@tamarous did you add |
@milkpku Thank you for you repo! I tried it and errors mentioned above are solved. However, there raises other errors like I downloaded suiteparese and in its AMD/Lib directory I tried make, then the related *.o files were generated. But I don't know how to link these *.o files in Makefile. Any suggestions? |
@tamarous maybe you can use package manager (apt-get for Ubuntu or pacman for Arch ...) to install SuiteSparse rather than compiling by yourself |
@milkpku Hi, I edited the code using all your points, but I am having this error
I changed all |
Hi, dear contributers,
I downloaded this code in 2016 Sep 7, and find some error when compiling, maybe it is because the code is sort of old. I have fixed it by several adjustment:
My enviroment is Arch Linux
There is
<iostream>
missing ininclude/DenseMatrix.h
andinclude/SpraseMatrix.h
, just add#include <iostream>
can fix itUF_long
is no longer used and is replaced bySuiteSprase_long
, so I just replaceUF_long
insrc/SpraseMatrix.cpp
andsrc/SpraseMatrix.inl
all my SuiteSprase libs are .so file so there would be error undefined reffer to 'umfpack...' , simplily add
-lumfpack
to LIBFLAG can solve this problemsincerely
The text was updated successfully, but these errors were encountered: