Browse Source

Removed superfluous operator.

tempestpy_adaptions
dehnert 12 years ago
parent
commit
b9d1eb28f1
  1. 2
      src/modelChecker/GmmxxDtmcPrctlModelChecker.h

2
src/modelChecker/GmmxxDtmcPrctlModelChecker.h

@ -236,7 +236,7 @@ public:
* Throws an exception of type InvalidSettings in case the selected method is illegal. * Throws an exception of type InvalidSettings in case the selected method is illegal.
*/ */
static void validateLeMethod(const std::string& lemethod) { static void validateLeMethod(const std::string& lemethod) {
if (lemethod.compare("bicgstab") != 0 && lemethod.compare("qmr") != 0 != 0) {
if (lemethod.compare("bicgstab") != 0 && lemethod.compare("qmr") != 0) {
throw exceptions::InvalidSettings() << "Argument " << lemethod << " for option 'lemethod' is invalid."; throw exceptions::InvalidSettings() << "Argument " << lemethod << " for option 'lemethod' is invalid.";
} }
} }

Loading…
Cancel
Save