Hi,
First of all, happy holidays

I have ~1800 btRigidbody constrained with ~4000 constraints of type btGeneric6DofSpring2Constraint. When I remove some constraints , using tDiscreteDynamicsWorld::removeConstraint(btTypedConstraint* constraint), some distant rigidbodies start shaking/wiggling for about 3 seconds although they have constraints as well, however eventually they stabilize again and stop moving hence satisfying their constraints. It's important to say that these are distant rigidbodies, they are not connected directly by any rigidbody/constraint I am manipulating (but indirectly they are connected through intermediate rigidbodies and constraints)...
As a workaround I increase bullet substeps and the problem eventually disappeared, but I am wondering: why it happens in the first place (i.e. is it a numerical problem, my step size is too big to start with)? FYI, I set bullet fixed frame rate to 1/24 (i.e. each tick ~0.0417 sec) and to fix the problem I use 5 substeps in each tick such that effectively each tick would be ~0.0084 sec instead.
I know, this is a very generic question, but I hope someone would give me just some pointers...
Thanks,