Giter VIP home page Giter VIP logo

Comments (5)

peastman avatar peastman commented on June 10, 2024

Can you show your code? This is probably coming from SWIG. The C++ method declares its argument to be an int. If you call the Python wrapper for it and pass a value that can't be converted, SWIG will reasonably throw an exception.

from openmm.

nielskm avatar nielskm commented on June 10, 2024

Can you show your code? This is probably coming from SWIG. The C++ method declares its argument to be an int. If you call the Python wrapper for it and pass a value that can't be converted, SWIG will reasonably throw an exception.

I just updated the description with a minimal example of how to produce the error for LangevinMiddleIntegrator.

from openmm.

nielskm avatar nielskm commented on June 10, 2024

@peastman Wouldn't it make sense to make the C++ functions take a uint32_t instead of an int?

I know this is not critical bug, but it is at least surprising for developers to get overflow errors when using uint32 seeds. And the error messages could be more helpful.

from openmm.

peastman avatar peastman commented on June 10, 2024

As far as the C++ is concerned, it makes no difference. The seed is just a sequence of bits. It doesn't really interpret it as a number, so there's no difference between signed and unsigned.

If we changed the type to uint32_t, then SWIG would throw an exception if you passed in an int that happened to be negative.

from openmm.

nielskm avatar nielskm commented on June 10, 2024

I agree that it shouldn't make a difference. In any case, it seems like you can avoid the SWIG overflow error by converting the seed to a signed integer:

seed = int(seed.view(np.int32))

from openmm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.