Skip to content
Snippets Groups Projects
Commit 2026a561 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Fix construction of Dynamic[Matrix|Vector]

parent fd835749
No related branches found
No related tags found
No related merge requests found
Pipeline #77675 failed
...@@ -27,10 +27,10 @@ int main(int argc, char** argv) ...@@ -27,10 +27,10 @@ int main(int argc, char** argv)
auto dTensor32 = Dune::Tensor<double,Dune::dynamic,Dune::dynamic>{3,2}; auto dTensor32 = Dune::Tensor<double,Dune::dynamic,Dune::dynamic>{3,2};
auto dTensor234 = Dune::Tensor<double,Dune::dynamic,Dune::dynamic,Dune::dynamic>{2,3,4}; auto dTensor234 = Dune::Tensor<double,Dune::dynamic,Dune::dynamic,Dune::dynamic>{2,3,4};
auto dVector2 = Dune::DynamicVector<double>{2}; auto dVector2 = Dune::DynamicVector<double>(2);
auto dVector3 = Dune::DynamicVector<double>{3}; auto dVector3 = Dune::DynamicVector<double>(3);
auto dMatrix23 = Dune::DynamicMatrix<double>{2,3}; auto dMatrix23 = Dune::DynamicMatrix<double>(2,3);
auto dMatrix32 = Dune::DynamicMatrix<double>{3,2}; auto dMatrix32 = Dune::DynamicMatrix<double>(3,2);
auto fTensor = Dune::Tensor<double>{}; auto fTensor = Dune::Tensor<double>{};
auto fTensor2 = Dune::Tensor<double,2>{}; auto fTensor2 = Dune::Tensor<double,2>{};
......
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