-
Notifications
You must be signed in to change notification settings - Fork 118
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
8 changed files
with
1,305 additions
and
1 deletion.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,34 @@ | ||
|
||
/* | ||
* This file is part of the micropython-ulab project, | ||
* | ||
* https://github.com/v923z/micropython-ulab | ||
* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2024 Harald Milz <[email protected]> | ||
* | ||
*/ | ||
|
||
#ifndef _SCIPY_INTEGRATE_ | ||
#define _SCIPY_INTEGRATE_ | ||
|
||
#include "../../ulab_tools.h" | ||
|
||
extern const mp_obj_module_t ulab_scipy_integrate_module; | ||
|
||
#if ULAB_INTEGRATE_HAS_TANHSINH | ||
MP_DECLARE_CONST_FUN_OBJ_KW(optimize_tanhsinh_obj); | ||
#endif | ||
#if ULAB_INTEGRATE_HAS_ROMBERG | ||
MP_DECLARE_CONST_FUN_OBJ_KW(optimize_romberg_obj); | ||
#endif | ||
#if ULAB_INTEGRATE_HAS_SIMPSON | ||
MP_DECLARE_CONST_FUN_OBJ_KW(optimize_simpson_obj); | ||
#endif | ||
#if ULAB_INTEGRATE_HAS_QUAD | ||
MP_DECLARE_CONST_FUN_OBJ_KW(optimize_quad_obj); | ||
#endif | ||
|
||
#endif /* _SCIPY_INTEGRATE_ */ | ||
|
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
Oops, something went wrong.