I have installed FEniCS 1.6.0 in a Linux environment (Ubuntu GNOME 14.04 LTC). FEniCS itself is working properly, but i am having trouble getting my IDE (PyCharm Community Edition 5.0) running "at full speed". If i type in (MWE),
from dolfin import *
e = Expression('0.0')
everything works as expected. The Expression class is recognized; tab completion works, i can jump to the implementation and so on. However if i type in (MWE),
from dolfin import *
p = Point(0,0,0)
my IDE lights up like a Christmas tree showing the error Unresolved reference 'Point'. The code still works, but all the nice features of my IDE are gone.
Now i know that this error means that the definition of the Point class was not found; but how come that the Expression class is recognized correctly and the Point class is not? And even more importantly; how can i fix it?
Cheers,
emher