2010-03-02 21:50:41 +08:00
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C"
|
|
|
|
|
{
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-07-17 04:27:24 +08:00
|
|
|
int xerbla_(const char * msg, int *info, int)
|
2010-03-02 21:50:41 +08:00
|
|
|
{
|
|
|
|
|
std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
|
2010-03-03 16:32:10 +08:00
|
|
|
return 0;
|
2010-03-02 21:50:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|