Update gcovr config and fix some warnings

This commit is contained in:
2024-02-28 11:51:37 +01:00
parent 20669dd161
commit d6af1ffe8e
7 changed files with 11 additions and 9 deletions

View File

@@ -71,7 +71,7 @@ namespace bayesnet {
for (Node* child : nodes[nodeId]->getChildren()) {
if (visited.find(child->getName()) == visited.end() && isCyclic(child->getName(), visited, recStack))
return true;
else if (recStack.find(child->getName()) != recStack.end())
if (recStack.find(child->getName()) != recStack.end())
return true;
}
}