Hello ,

After painful debugging I found the following piece of code, which made me
confused.

  if(e->faces(0)) {
    g1 = e->faces(0)->g;
    del_face(e->faces(0));
  }

  // not a bug !!!
  if(e->faces(0)) {
    g2 = e->faces(0)->g;
    del_face(e->faces(0));
  }


Interestingly, commend say, it is not bug. Isn't it the duplication and
trying to remove the
same face twice.

I get segmenation fault  for the second {    }  execution.

Can Someone explain what is happening ?

csv
_______________________________________________
gmsh mailing list
[email protected]
http://www.geuz.org/mailman/listinfo/gmsh

Reply via email to