Open
Description
I have this sample code:
from ConfigSpace import ConfigurationSpace, ForbiddenEqualsRelation, Integer
cs = ConfigurationSpace()
x = Integer('x', (0,3))
y = Integer('y', (0,3))
cs.add(x)
cs.add(y)
cs.add(ForbiddenEqualsRelation(x, y))
which gives me an exception:
ConfigSpace.exceptions.ForbiddenValueError: Given vector violates forbidden clause: Forbidden: x == y
If I'm changing ForbiddenEqualsRelation
to ForbiddenGreaterThanRelation
the code works fine, generating configurations such that x
is always less than or equal to y
. I would expect ForbiddenEqualsRelation
to allow me to generate configurations such that x
is always different from y
. Am I misunderstanding the use of ForbiddenEqualsRelation
or is there a bug?
Metadata
Metadata
Assignees
Labels
No labels