-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
741 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: sundialr | ||
Type: Package | ||
Title: An Interface to 'SUNDIALS' Ordinary Differential Equation (ODE) Solvers | ||
Version: 0.1.5 | ||
Version: 0.1.6 | ||
Authors@R: c( | ||
person("Satyaprakash", "Nayak", "", "[email protected]", c("aut", "cre","cph"), comment = c(ORCID = "0000-0001-7225-1317")), | ||
person("Lawrence Livermore National Security", role = c("cph")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
YEAR: 2020 | ||
YEAR: 2024 | ||
COPYRIGHT HOLDER: Satyaprakash Nayak | ||
ORGANIZATION: Satyaprakash Nayak | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/*--------------------------------------------------------------- | ||
* Programmer(s): Steven B. Roberts @ 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 | ||
*--------------------------------------------------------------- | ||
* This is the header file for the ARKODE ForcingStep module. | ||
*--------------------------------------------------------------*/ | ||
|
||
#ifndef ARKODE_FORCINGINGSTEP_H_ | ||
#define ARKODE_FORCINGINGSTEP_H_ | ||
|
||
#include <sundials/sundials_nvector.h> | ||
#include <sundials/sundials_stepper.h> | ||
#include <sundials/sundials_types.h> | ||
|
||
#ifdef __cplusplus /* wrapper to enable C++ usage */ | ||
extern "C" { | ||
#endif | ||
|
||
SUNDIALS_EXPORT void* ForcingStepCreate(SUNStepper stepper1, | ||
SUNStepper stepper2, sunrealtype t0, | ||
N_Vector y0, SUNContext sunctx); | ||
|
||
SUNDIALS_EXPORT int ForcingStepReInit(void* arkode_mem, SUNStepper stepper1, | ||
SUNStepper stepper2, sunrealtype t0, | ||
N_Vector y0); | ||
|
||
SUNDIALS_EXPORT int ForcingStepGetNumEvolves(void* arkode_mem, int partition, | ||
long int* evolves); | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
|
||
#endif |
Oops, something went wrong.