File: c-api-util.cc

package info (click to toggle)
libint2 2.7.2-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 63,792 kB
  • sloc: ansic: 842,934; cpp: 47,847; sh: 3,139; makefile: 1,017; f90: 676; perl: 482; python: 334
file content (6 lines) | stat: -rw-r--r-- 201 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
#include <libint2/boys.h>

/* computes F[0] .. F[max_m] */
extern "C" void calc_f(double* F, double T, unsigned int max_m) {
  libint2::FmEval_Chebyshev7<double>::instance(max_m)->eval(F, T, max_m);
}