Skip to content
Snippets Groups Projects
Commit 5b8ae470 authored by patavirt's avatar patavirt
Browse files

common: some helper funcs

parent ba471593
No related branches found
No related tags found
No related merge requests found
...@@ -11,4 +11,14 @@ ...@@ -11,4 +11,14 @@
typedef CppAD::AD<double> ADDouble; typedef CppAD::AD<double> ADDouble;
typedef std::complex<ADDouble> ADComplex; typedef std::complex<ADDouble> ADComplex;
ADComplex adcomplex(const ADComplex& cpx)
{
return {cpx};
}
ADComplex adcomplex(const std::complex<double>& cpx)
{
return {cpx};
}
#endif #endif
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include "array.hpp" #include "array.hpp"
#include "action.hpp" #include "action.hpp"
using namespace std::complex_literals;
template <typename Scalar> template <typename Scalar>
void dump(Array<Scalar,3> Q) void dump(Array<Scalar,3> Q)
...@@ -34,7 +35,9 @@ int main() ...@@ -34,7 +35,9 @@ int main()
//auto mat = Q.to_matrix(); //auto mat = Q.to_matrix();
auto mat = Q.to_fixed_matrix<2,2>(); auto mat = Q.to_fixed_matrix<2,2>();
mat = mat * mat * mat; mat = mat * mat * mat * adcomplex(1j);
mat(0,0) = mat(1,1) = mat.trace();
dump(Q0); dump(Q0);
std::cout << mat << std::endl; std::cout << mat << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment