Files
solver/MbDCode/EulerConstraint.h
Aik-Siong Koh 8ca8eb7122 Second commit
2023-04-28 16:29:43 -06:00

21 lines
327 B
C++

#pragma once
#include <memory>
#include <vector>
#include "Constraint.h"
#include "FullRow.h"
namespace MbD {
class EulerConstraint : public Constraint
{
public:
EulerConstraint() : Constraint() {
}
//pGpE iqE
FullRow<double> pGpE = FullRow<double>(4); //partial derivative of G wrt pE
int iqE = -1;
};
}