aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/doc/examples/MatrixPower_failure.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unsupported/doc/examples/MatrixPower_failure.cpp')
-rw-r--r--unsupported/doc/examples/MatrixPower_failure.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/unsupported/doc/examples/MatrixPower_failure.cpp b/unsupported/doc/examples/MatrixPower_failure.cpp
deleted file mode 100644
index d20de78a0..000000000
--- a/unsupported/doc/examples/MatrixPower_failure.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <unsupported/Eigen/MatrixFunctions>
-#include <iostream>
-
-int main()
-{
- Eigen::Matrix4d A;
- A << 0, 0, 2, 3,
- 0, 0, 4, 5,
- 0, 0, 6, 7,
- 0, 0, 8, 9;
- std::cout << A.pow(0.37) << std::endl;
-
- // The 1 makes eigenvalue 0 non-semisimple.
- A.coeffRef(0, 1) = 1;
-
- // This fails if EIGEN_NO_DEBUG is undefined.
- std::cout << A.pow(0.37) << std::endl;
-
- return 0;
-}