posted Jan 21, 2015, 7:24 AM by Teng-Yok Lee
[
updated Jan 21, 2015, 6:42 PM
]
I plan to put my patches to ARPACK++(http://www.ime.unicamp.br/~chico/arpack++/) to my Google Code repo at the end of Jan. 2015. Here I manually list the fixes for my applications. Note that my applications only use ardsmat.h and ardssym.h so there could be more errors, but I guess that the fixes for other parts should be similar. arch.h Comment arcomp.h (Otherwise, arcomple<float> / arcomple<double> will be declared inside a extern "C" closure, which is not allowed since C does not understand C++ template). // #include "arcomp.h"
Also, replace the generic.h by the only needed macro name2: // REF: http://www-d0.fnal.gov/KAI/doc/migrate/gnu_generic.h
#define name2(a,b) gEnErIc2(a,b)
#define gEnErIc2(a,b) a ## b
ardssym.h Replace DefineParameters(A.ncols(), nevp, &A, ARdsSymMatrix<FLOAT>::MultMv,
by DefineParameters(A.ncols(), nevp, &A, &ARdsSymMatrix<FLOAT>::MultMv,
arerror.h Replace #include <iostream.h>
by #include <iostream>
arpackf.h Change the sentences at the end (Because arcomp.h is not included, '}' will be ignored and thus the entern closure is not completed). }
#endif // ARCOMP_H
to #endif // ARCOMP_H
} // extern "C" {
|
|