-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Python] adding Vector #118
Conversation
I managed to get it to work with basically this disables the automatic copy of the specified types and allows to use the by reference, exactly what we need! unfortunately this breaks the old Import/ExportMesh tests where I still use them by copy. Hence I need to update those first TODO for this PR to go in:
|
I would go for |
This PR adds the
CoSimIO.Vector
this object is a tiny wrapper around
std::vector<double>
to be used in Python. The goals are:ImportData
we will not need to return a tuple (ofCoSimIO.Info
& the data (apy::list
)) any more but now only theInfo
=> the Interface will be updated in a follow up PR