Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/itasc/WDLSSolver.hpp')
-rw-r--r--intern/itasc/WDLSSolver.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/itasc/WDLSSolver.hpp b/intern/itasc/WDLSSolver.hpp
index 4418e73675c..b56ad1ab2b8 100644
--- a/intern/itasc/WDLSSolver.hpp
+++ b/intern/itasc/WDLSSolver.hpp
@@ -14,12 +14,13 @@ namespace iTaSC {
class WDLSSolver: public iTaSC::Solver {
private:
- e_matrix m_AWq,m_WyAWq,m_U,m_V,m_WqV;
+ e_matrix m_AWq,m_WyAWq,m_WyAWqt,m_U,m_V,m_WqV;
e_vector m_S,m_temp,m_Wy_ydot;
double m_lambda;
double m_epsilon;
double m_qmax;
int m_ns;
+ bool m_transpose;
public:
WDLSSolver();
virtual ~WDLSSolver();