Browse Source

Fixed trailing whitespace error when applying the Eigen patch.

tempestpy_adaptions
Tim Quatmann 4 years ago
parent
commit
9ba293d760
  1. 4
      resources/3rdparty/patches/eigen.patch

4
resources/3rdparty/patches/eigen.patch

@ -159,7 +159,7 @@ index a86dac93f..2ad56531c 100644
+ if (!storm::utility::isZero(rtemp) && rtemp >= thresh) return true; + if (!storm::utility::isZero(rtemp) && rtemp >= thresh) return true;
+ return false; + return false;
+ } + }
+
+
+ template<typename Scalar, typename std::enable_if<!std::is_same<Scalar, double>::value, int>::type = 0> + template<typename Scalar, typename std::enable_if<!std::is_same<Scalar, double>::value, int>::type = 0>
+ bool diagonalElementCanBePivot(Scalar const* lu_col_ptr, Index const& diag, Scalar const& diagpivotthresh, Scalar const& pivmax) { + bool diagonalElementCanBePivot(Scalar const* lu_col_ptr, Index const& diag, Scalar const& diagpivotthresh, Scalar const& pivmax) {
+ if (!storm::utility::isZero(lu_col_ptr[diag])) return true; + if (!storm::utility::isZero(lu_col_ptr[diag])) return true;
@ -192,7 +192,7 @@ index a86dac93f..2ad56531c 100644
+ Index pivptr = nsupc; + Index pivptr = nsupc;
+ Index diag = emptyIdxLU; + Index diag = emptyIdxLU;
+ Index icol, itemp, k; + Index icol, itemp, k;
+
+
+ findLargestAbsolutePivotElement(nsupc, nsupr, lu_col_ptr, lsub_ptr, diagind, diag, pivptr, pivmax); + findLargestAbsolutePivotElement(nsupc, nsupr, lu_col_ptr, lsub_ptr, diagind, diag, pivptr, pivmax);
// Test for singularity // Test for singularity

Loading…
Cancel
Save