Ayman Habib

Results 279 comments of Ayman Habib

@CVHammond this PR exercises the code you have in #3226, I will not merge it since it tests nothing now but it doesn't crash. If you agree, this points to...

Some ideas for troubleshooting: 1. print the version (opensimCommonJNI.GetVersionAndDate()) to make sure the wiring is to the latest build of 4.4. 2. Create objects and keep references to them in...

Outstanding! thanks for the update. The issue with double vs. java.lang.double was reported by another user earlier and we couldn't reproduce. If you can provide a minimal example that would...

What compiler/version are you using, as compared to ci? It's possible a more recent compiler is catching this now. My understanding is that size_t is unsigned, not sure why the...

@antoinefalisse version 4.1 of opensim didn't include or require numpy, so this's expected

@antoinefalisse I don't think we need a late version of numpy for OpenSim bindings, if we use 1.19.2 that may work out better for everybody. Not sure how to enforce...

https://github.com/opensim-org/opensim-core/commit/8acecf6aff5a98e7884b031dc9dae5f3afb711c3

Installing Anaconda with python 3.7 worked exactly as expected out of the box without touching PYTHONPATH. Now shifting to look into the differences between python 3.7 and 3.8

Official 4.2, python 3.7, no need for PYTHONPATH, just set PATH setup install works perfectly as expected

Per https://docs.python.org/3/whatsnew/3.8.html#bpo-36085-whatsnew PATH is not used to locate dll's on windows, instead an explicit call to e.g. ` os.add_dll_directory("D:/OpenSim 4.3-2021-06-15-d117ea6/bin")` does the trick. Now looking into automating the process This...