You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
252 B

  1. #include <StormEigen/Eigen>
  2. #include <iostream>
  3. #ifndef M_PI
  4. #define M_PI 3.1415926535897932384626433832795
  5. #endif
  6. using namespace StormEigen;
  7. using namespace std;
  8. int main(int, char**)
  9. {
  10. cout.precision(3);
  11. ${snippet_source_code}
  12. return 0;
  13. }