← Back to team overview

dolfin team mailing list archive

bug in vector summation???

 

Hello all,

I have a possible bug to report in the Vector class. The summation call,
sum(), causes my program to freeze. To test I use this little code

  Vector vec;
  vec.init(100);
  vec = 1.0;
  vec.disp();         // All seems fine
  real s = vec.sum(); // Does not return. 100% CPU load

Ideas??

/Dag Lindbo



Follow ups