You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
doubleold_simple_dihedral_energy_gradient( double sinPhase, double cosPhase, double V, double DN, int IN, int I1, int I2, int I3, int I4, float* pos, float* deriv ) {
91
+
#defineUSE_EXPLICIT_DECLARES1
92
+
#defineDECLARE_FLOAT(VAR) double VAR;
93
+
#defineRealdouble
94
+
double EraseLinearDihedral;
95
+
double x1, y1, z1;
96
+
double x2, y2, z2;
97
+
double x3, y3, z3;
98
+
double x4, y4, z4;
99
+
#include"_Dihedral_termDeclares.cc"
100
+
#defineDIHEDRAL_SET_PARAMETER(VAR) {}
101
+
#defineDIHEDRAL_SET_POSITION(VAR,IDX,OFFSET) { VAR = pos[IDX+OFFSET]; }
102
+
#defineDIHEDRAL_ENERGY_ACCUMULATE(VAR) { result += VAR; }
doublesimple_dihedral_energy( double sinPhase, double cosPhase, double V, double DN, int IN, int I1, int I2, int I3, int I4, float* pos ) {
120
+
#defineUSE_EXPLICIT_DECLARES1
121
+
#defineDECLARE_FLOAT(VAR) double VAR;
122
+
#defineRealdouble
123
+
double EraseLinearDihedral;
124
+
double x1, y1, z1;
125
+
double x2, y2, z2;
126
+
double x3, y3, z3;
127
+
double x4, y4, z4;
128
+
#include"_DihedralEnergy_termDeclares.cc"
129
+
#defineDIHEDRAL_SET_PARAMETER(VAR) {}
130
+
#defineDIHEDRAL_SET_POSITION(VAR,IDX,OFFSET) { VAR = pos[IDX+OFFSET]; }
131
+
#defineDIHEDRAL_ENERGY_ACCUMULATE(VAR) { result += VAR; }
132
+
double result = 0.0;
133
+
double SinNPhi;
134
+
double CosNPhi;
135
+
#include"_DihedralEnergy_termCode.cc"
136
+
#undef Real
137
+
#undef DECLARE_FLOAT
138
+
#undef DIHEDRAL_SET_PARAMETER
139
+
#undef DIHEDRAL_SET_POSITION
140
+
#undef DIHEDRAL_ENERGY_ACCUMULATE
141
+
return result;
142
+
}
143
+
144
+
voidsimple_dihedral_gradient( double sinPhase, double cosPhase, double V, double DN, int IN, int I1, int I2, int I3, int I4, float* pos, float* grad ) {
0 commit comments