Description
ConfigSpace.util.get_one_exchange_neighbourhood uses np.random to decide whether a new configuration is to be validated (see util.pyx:218). Using np.random for this decision makes the behavior of the function non-deterministic.
Solution proposal
Use the randomness generator random instantiated at util.pyx:130 instead of np.random.