fixed a regression introduced while reviewing the class
I fixed a bug that I introduced while reviewing the AutoIndexer class.
I replaced
auto cell = std::shared_ptr<UnitCell>(new UnitCell(A,true));
by
auto cell = std::shared_ptr(new UnitCell(A,false));
and everything is OK back again