Hello,
i have recently updated my libraries via sudo apt-get update and now I can't create any meshes with fenics. Before the update I was using
dolfin::CircleMesh mesh(dolfin::Point(0.0,0.0), radius, 0.03);
but this isn't working anymore. I can the error following error message
*** Error: Unable to generate ellipse mesh.
*** Reason: Generation of ellipse meshes requires DOLFIN to be configured with CGAL.
*** Where: This error was encountered inside EllipseMesh.cpp.
*** Process: unknown
*** DOLFIN version: 1.4.0
*** Git changeset: unknown
I found out that something has changed with the mesh creation with the last update, but I couldn't exactly find a c++ code sample how I have to change my code (only found python examples). I already reinstalled fenics to check if dependencies were destroyed or something like that, but it didn't help.
Can anyone help me to fix this problem? I assume it is still possible to create a simple circle mesh, if I would just know right lines of code. :)
Thank you!