Browse Source

Win needs template args spelled out

Alec Jacobson 4 years ago
parent
commit
a6550e6849
1 changed files with 4 additions and 2 deletions
  1. 4 2
      include/igl/quadprog.cpp

+ 4 - 2
include/igl/quadprog.cpp

@@ -25,7 +25,8 @@ IGL_INLINE Eigen::Matrix<Scalar,n,1> igl::quadprog(
   {
   {
     // For dual contouring 99% of the time the active set is empty.
     // For dual contouring 99% of the time the active set is empty.
     // Optimize for this common case.
     // Optimize for this common case.
-    x = min_quad_with_fixed(H,f,k,bc,A,b);
+    // Windows needs template arguments spelled out
+    x = min_quad_with_fixed<Scalar,n,m>(H,f,k,bc,A,b);
     //std::cout<<igl::matlab_format(x,"x")<<std::endl;
     //std::cout<<igl::matlab_format(x,"x")<<std::endl;
     // constraint violations 
     // constraint violations 
     VectorSn vl = lb-x;
     VectorSn vl = lb-x;
@@ -100,7 +101,8 @@ IGL_INLINE Eigen::Matrix<Scalar,n,1> igl::quadprog(
   const Eigen::Matrix<Scalar,n,1> & ub)
   const Eigen::Matrix<Scalar,n,1> & ub)
 {
 {
   const int m = n == Eigen::Dynamic ? Eigen::Dynamic : 0;
   const int m = n == Eigen::Dynamic ? Eigen::Dynamic : 0;
-  return quadprog(
+  // Windows needs template parameters spelled out
+  return quadprog<Scalar,n,m>(
     H,f,
     H,f,
     Eigen::Matrix<Scalar,m,n>(0,H.cols()),
     Eigen::Matrix<Scalar,m,n>(0,H.cols()),
     Eigen::Matrix<Scalar,m,1>(0,1),
     Eigen::Matrix<Scalar,m,1>(0,1),