/** * @file Potentials.hpp * @author jun * @brief Potentials declarations * @version 0.1 * @date 2023-07-25 * * Copyright (c) 2023 jun * */ #pragma once class Potential { public: virtual double potential(double r) = 0; virtual double force(double r) = 0; };