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

use new environment class

parent 94c2d834
Branches
No related tags found
1 merge request!44Resize abstraction for matrices and vectors
......@@ -25,7 +25,7 @@ struct NotResizable {};
int main(int argc, char** argv)
{
AMDiS::init(argc, argv);
Environment env(argc, argv);
Vec1 vec1;
Vec2 vec2;
......@@ -61,6 +61,5 @@ int main(int argc, char** argv)
static_assert(not Concepts::VectorResizable_t<NotResizable>::value, "");
static_assert(not Concepts::MatrixResizable_t<NotResizable>::value, "");
AMDiS::finalize();
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment