Barrier¶
-
template<typename T>
T ipc::barrier(const T &d, const double dhat)¶ Function that grows to infinity as x approaches 0 from the right.
\[ b(d) = -(d-\hat{d})^2\ln\left(\frac{d}{\hat{d}}\right) \]
-
double ipc::barrier_gradient(const double d, const double dhat)¶
Derivative of the barrier function.
\[ b'(d) = (\hat{d}-d) \left( 2\ln\left( \frac{d}{\hat{d}} \right) - \frac{\hat{d}}{d} + 1\right) \]