/* ----------------------------------------------------------------------------- * Programmer(s): Cody J. Balos @ LLNL * ----------------------------------------------------------------------------- * SUNDIALS Copyright Start * Copyright (c) 2002-2024, Lawrence Livermore National Security * and Southern Methodist University. * All rights reserved. * * See the top-level LICENSE and NOTICE files for details. * * SPDX-License-Identifier: BSD-3-Clause * SUNDIALS Copyright End * ----------------------------------------------------------------------------- * C++ view of SUNDIALS SUNNonlinearSolver * ---------------------------------------------------------------------------*/ #ifndef _SUNDIALS_NONLINEARSOLVER_HPP #define _SUNDIALS_NONLINEARSOLVER_HPP #include #include #include namespace sundials { namespace impl { using BaseNonlinearSolver = BaseObject<_generic_SUNNonlinearSolver, _generic_SUNNonlinearSolver_Ops>; } // namespace impl namespace experimental { struct SUNNonlinearSolverDeleter { void operator()(SUNNonlinearSolver NLS) { if (NLS) { SUNNonlinSolFree(NLS); } } }; using SUNNonlinearSolverView = ClassView; } // namespace experimental } // namespace sundials #endif