13 lines
173 B
C++
13 lines
173 B
C++
|
#include <Eigen/Dense>
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace Eigen;
|
||
|
using namespace std;
|
||
|
|
||
|
int main(int, char**)
|
||
|
{
|
||
|
cout.precision(3);
|
||
|
${snippet_source_code}
|
||
|
return 0;
|
||
|
}
|