Skip to content

Possible bug in ForbiddenEqualsRelation? #389

Open
@mdorier

Description

@mdorier

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions