Skip to content
Snippets Groups Projects
Commit 5b894100 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Add zone descriptor and displace boundary descriptor to MeshModule

parent a5997486
No related branches found
No related tags found
1 merge request!137Feature/zone name and tag
This commit is part of merge request !137. Comments created here will be created in the context of that merge request.
......@@ -26,6 +26,8 @@
MeshModule::MeshModule()
{
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IMesh>>);
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IBoundaryDescriptor>>);
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IZoneDescriptor>>);
this->_addBuiltinFunction("readGmsh",
std::make_shared<BuiltinFunctionEmbedder<std::shared_ptr<const IMesh>(const std::string&)>>(
......
......@@ -45,7 +45,6 @@ SchemeModule::SchemeModule()
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IDiscreteFunctionDescriptor>>);
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IQuadratureDescriptor>>);
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IBoundaryDescriptor>>);
this->_addTypeDescriptor(ast_node_data_type_from<std::shared_ptr<const IBoundaryConditionDescriptor>>);
this->_addBuiltinFunction("P0", std::make_shared<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment