aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/compile_snippet.cpp.in
blob: 561d5f6853d522f9f58b0dacafe8a690add8c72d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <Eigen/Core>
#include <Eigen/LU>
#include <Eigen/QR>
#include <Eigen/Cholesky>
#include <Eigen/Geometry>
#include <Eigen/Jacobi>
#include <iostream>

using namespace Eigen;
using namespace std;

int main(int, char**)
{
  cout.precision(3);
  ${snippet_source_code}
  return 0;
}