MDStressLab++
MethodLdadConst.h
Go to the documentation of this file.
1 /*
2  * MethodLdadConst.h
3  *
4  * Created on: Aug 22, 2022
5  * Author: Nikhil
6  */
7 
8 #ifndef METHODLDADCONST_H_
9 #define METHODLDADCONST_H_
10 #include "Ldad.h"
11 #include "Constant.h"
12 
13 class MethodLdadConst : public Ldad<Constant>
14 {
15 public:
16  MethodLdadConst(const Matrix3d& ldadVectors) : Ldad(ldadVectors)
17  {
18  }
19  MethodLdadConst(const MethodLdadConst& method) : Ldad(method)
20  {
21  *this= method;
22  }
23  virtual ~MethodLdadConst(){}
24 };
25 #endif /* METHODLDADCONST_H_ */
MethodLdadConst(const MethodLdadConst &method)
virtual ~MethodLdadConst()
Eigen::Matrix< double, DIM, DIM, Eigen::RowMajor > Matrix3d
Definition: typedef.h:56
MethodLdadConst(const Matrix3d &ldadVectors)