2007-12-29 00:20:00 +08:00
|
|
|
#include <Eigen/Core>
|
2008-05-29 11:12:30 +08:00
|
|
|
#include <Eigen/LU>
|
2009-01-28 17:45:53 +08:00
|
|
|
#include <Eigen/QR>
|
2008-07-20 06:59:05 +08:00
|
|
|
#include <Eigen/Cholesky>
|
|
|
|
#include <Eigen/Geometry>
|
2009-09-03 17:17:16 +08:00
|
|
|
#include <Eigen/Jacobi>
|
2008-07-16 07:56:17 +08:00
|
|
|
|
2008-07-20 06:59:05 +08:00
|
|
|
using namespace Eigen;
|
2007-12-21 17:30:32 +08:00
|
|
|
using namespace std;
|
2008-07-16 07:56:17 +08:00
|
|
|
|
2007-12-21 17:30:32 +08:00
|
|
|
int main(int, char**)
|
|
|
|
{
|
2008-07-16 07:56:17 +08:00
|
|
|
${snippet_source_code}
|
|
|
|
return 0;
|
2007-12-21 17:30:32 +08:00
|
|
|
}
|