#include "MatchBoxPC.h" /** * //TODO documentation * @param k * @param verLocInd * @param StartIndex * @param EndIndex * @param GMate * @param Mate * @param Ghost2LocalMap * @return */ bool isAlreadyMatched(MilanLongInt node, MilanLongInt StartIndex, MilanLongInt EndIndex, vector &GMate, MilanLongInt* Mate, map &Ghost2LocalMap ) { bool result = false; #pragma omp critical(Mate) { if ((node < StartIndex) || (node > EndIndex)) { //Is it a ghost vertex? result = GMate[Ghost2LocalMap[node]] >= 0;// Already matched } else { //A local vertex result = (Mate[node - StartIndex] >= 0); // Already matched } } return result; }