Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions swig/amici.i
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,9 @@ wrap_unique_ptr(ExpDataPtr, amici::ExpData)
%ignore amici::backtraceString;
%ignore amici::Logger;
%ignore amici::SimulationState;
%ignore amici::BLASLayout;
%ignore amici::SolutionState;
%ignore amici::ModelQuantity;

// Include before any other header which uses enums defined there
%include "amici/defines.h"
Expand Down
2 changes: 2 additions & 0 deletions swig/model.i
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ using namespace amici;

%newobject amici::Model::clone;

%rename(create_solver) amici::Model::getSolver;

%extend amici::Model {
%pythoncode %{
def __deepcopy__(self, memo):
Expand Down
Loading