blob: 894cd526c2a08bcebce60d8f00a9c132bad984c5 [file] [log] [blame]
Brian Silverman72890c22015-09-19 14:37:37 -04001#include <Eigen/Dense>
2#include <iostream>
3
4using namespace Eigen;
5using namespace std;
6
7int main(int, char**)
8{
9 cout.precision(3);
10 ${snippet_source_code}
11 return 0;
12}