Hello,
I am trying to initialise FESystem in a class called "Network" (definition present in a header file), however when i am getting the following error:
In constructor ‘Network::Network(const string&)’:
/home/Network.cpp:21:57: error: use of deleted function ‘dealii::FESystem<dim, spacedim>::FESystem() [with int dim = 1; int spacedim = 3]’
21 | Network::Network(const std::string ¶meter_file)
| ^
In file included from /home/Network.h:16,
from /home/Network.cpp:1:
/home/user/spack/opt/spack/linux-ubuntu20.04-icelake/gcc-9.4.0/dealii-9.4.2-4haiezd5dty7b537inhxmeebwxllx4gs/include/deal.II/fe/fe_system.h:215:3: note: declared here
215 | FESystem() = delete;
I am not able to figure out the error. Can someone help?
Thanks
Vinayak