Browse Source

Update min_quad_with_fixed.cpp

This `&& false` somehow appeared... I don't know/recall the origin of it. Current thinking is that it was debris from debugging that got accidentally committed.
Alec Jacobson 6 years ago
parent
commit
0320f239f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/igl/min_quad_with_fixed.cpp

+ 1 - 1
include/igl/min_quad_with_fixed.cpp

@@ -241,7 +241,7 @@ IGL_INLINE bool igl::min_quad_with_fixed_precompute(
       // Ideally we'd use LDLT but Eigen doesn't support positive semi-definite
       // Ideally we'd use LDLT but Eigen doesn't support positive semi-definite
       // matrices:
       // matrices:
       // http://forum.kde.org/viewtopic.php?f=74&t=106962&p=291990#p291990
       // http://forum.kde.org/viewtopic.php?f=74&t=106962&p=291990#p291990
-      if(data.Auu_sym && false)
+      if(data.Auu_sym)
       {
       {
         data.ldlt.compute(NA);
         data.ldlt.compute(NA);
         switch(data.ldlt.info())
         switch(data.ldlt.info())