removed some hacks

This commit is contained in:
toni
2017-04-19 14:59:04 +02:00
parent 99f282180e
commit 8e295e25af
3 changed files with 4 additions and 9 deletions

View File

@@ -56,8 +56,8 @@ namespace Divergence {
// calc PQratio
if(Q[i] == 0.0){
//Assert::doThrow("Division by zero is not allowed ;).");
PQratio = P[i] / 0.00001;
Assert::doThrow("Division by zero is not allowed ;).");
//PQratio = P[i] / 0.00001;
} else {
PQratio = P[i] / Q[i];
}