Add Chromium-only Blender WebEngine parity work
This commit is contained in:
44
blender-5.2.0/intern/itasc/WSDLSSolver.hpp
Normal file
44
blender-5.2.0/intern/itasc/WSDLSSolver.hpp
Normal file
@@ -0,0 +1,44 @@
|
||||
/* SPDX-FileCopyrightText: 2009 Benoit Bolsee
|
||||
*
|
||||
* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup intern_itasc
|
||||
*/
|
||||
|
||||
#ifndef WSDLSSOLVER_HPP_
|
||||
#define WSDLSSOLVER_HPP_
|
||||
|
||||
#include "Solver.hpp"
|
||||
|
||||
namespace iTaSC {
|
||||
|
||||
class WSDLSSolver: public iTaSC::Solver {
|
||||
private:
|
||||
e_matrix m_AWq,m_WyAWq,m_WyAWqt,m_U,m_V,m_WqV;
|
||||
e_vector m_S,m_temp,m_Wy_ydot;
|
||||
std::vector<bool> m_ytask;
|
||||
e_scalar m_qmax;
|
||||
unsigned int m_ns, m_nc, m_nq;
|
||||
bool m_transpose;
|
||||
public:
|
||||
WSDLSSolver();
|
||||
virtual ~WSDLSSolver();
|
||||
|
||||
virtual bool init(unsigned int _nq, unsigned int _nc, const std::vector<bool>& gc);
|
||||
virtual bool solve(const e_matrix& A, const e_vector& Wy, const e_vector& ydot, const e_matrix& Wq, e_vector& qdot, e_scalar& nlcoef);
|
||||
virtual void setParam(SolverParam param, double value)
|
||||
{
|
||||
switch (param) {
|
||||
case DLS_QMAX:
|
||||
m_qmax = value;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif /* WSDLSSOLVER_HPP_ */
|
||||
Reference in New Issue
Block a user