OpenMC/include/openmc/external/quartic_solver.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
255 B
C
Raw Permalink Normal View History

#ifndef OPENMC_EXTERNAL_QUARTIC_SOLVER_H
#define OPENMC_EXTERNAL_QUARTIC_SOLVER_H
#include <complex>
2021-12-21 14:53:03 -05:00
namespace oqs {
void quartic_solver(double coeff[5], std::complex<double> roots[4]);
} // end namespace oqs
#endif // OPENMC_EXTERNAL_QUARTIC_SOLVER_H