In the Blocking2D.cpp of folder ig/src ,
- When we want to create a block using newBlock function, I think there is a mistake while updating the connectivities.
I think lines 95-96:
Node n3 = get<Node>(AN3); n1.add(b);
should be replace by
Node n3 = get<Node>(AN3); n3.add(b);
- I think there is a second mistake, at l. 898:
for(int j = 0; j<getNbDiscretizationI(); j++){
the limit should be on getNbDiscretizationJ()