This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
forked from BhallaLab/moose-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to seg-fault with moose.le #BhallaLab#423
moose.le('/elmenent_that_does_not_exists') now raises ValueError like version 3.1.x and does not fail with a seg-fault.
- Loading branch information
Dilawar Singh
committed
Sep 7, 2020
1 parent
eafa8b2
commit 53a7b59
Showing
4 changed files
with
23 additions
and
9 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
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,14 +1,11 @@ | ||
// ===================================================================================== | ||
// Description: Python bindings generated by pybind11. This binding replaces | ||
// binding generated in ../pymoose folder. | ||
// | ||
// Description: Python bindings generated by pybind11. This binding replaces | ||
// binding generated in ../pymoose folder. These bindings are easier to | ||
// maintain and more performant. The user API has not changed but the | ||
// internal working has changed. | ||
// These bindings are easier to maintain and more performant. The user API | ||
// is almost the same but the internal working has changed. | ||
// | ||
// Author: Dilawar Singh <[email protected]> | ||
// Organization: NCBS Bangalore | ||
// | ||
// ===================================================================================== | ||
// Author: Dilawar Singh <[email protected]> | ||
// Organization: NCBS Bangalore | ||
|
||
#include <map> | ||
#include <typeindex> | ||
|
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