boolT ismalloc = False; /* True if qhull should free points in
qh_freeqhull() or reallocation */
int exitcode; /* 0 if no error from qhull */
//char flags[] = "qhull d QJ Pg Ft"; /* flags for qhull */
const Uint flagsize = 129;
char cflags[flagsize] = {"\0"};
if (flags.size() > flagsize - 1) {
std::stringstream error_stream ;
error_stream << "The flags you specified: '" << flags << "' are longer than the maximum size of " << flagsize - 1 << ". You probably fucked up and should reconsider your qhull options";
throw(std::out_of_range(error_stream.str()));
}
strcpy(cflags, flags.c_str()); /* flags for qhull */
this->permutation = new std::vector<int>(nb_points, -1);
this->remutation = new std::vector<int>(nb_points, -1);
Uint counter = 0;
// loop through elements
for (Uint i = 0; i < nb_elems ; ++i) {
Real center_gravity[DIM] = {0};
int * element_nodes;
try {
element_nodes = &connectivity.at(i*(DIM+1));
} catch (std::out_of_range & e) {
std::cout << "found the sucker. Tried to access element " << i*(DIM+1) << " but connectivity contains only " << connectivity.size() << "entries" << std::endl;
throw("scheisse");
}
Uint nb_pure_atoms = 0; // an element is invalid if all its nodes are free atoms
// loop through nodes of current element
for (Uint j = 0; j < DIM+1 ; ++j) {
// check for each node if it is valid
int point_id = element_nodes[j];
for (Uint k = 0; k < DIM ; ++k) {
center_gravity[k] += this->nodes[point_id][k];
}
if (atomistic_domain.is_inside(&this->nodes.getVector().at(DIM*point_id), 0.) ) {
nb_pure_atoms ++;
}
}
// if at least one node is not a pure atom, we're good to go
// also, if an element is valid, its nodes are (obviously) valid as well
if (nb_pure_atoms < DIM+1) {
// check the center of gravity
for (Uint k = 0; k < DIM ; ++k) {
center_gravity[k] /= (DIM+1);
}
if (!atomistic_domain.is_inside(center_gravity, 0.)) {