You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently constraints are implemented as a list which requires the user of a problem to set the problem dimension. For most benchmark functions the dimension is irrelevant.
It would be better to change List<Constraint> getDefaultConstraints to Constraint getDefaultConstraint. The notion of a ValueConstraint would simply change from one dimension to the whole search space. An additional MultidimensionalConstraint could be implemented to have different constraints per dimension.
The text was updated successfully, but these errors were encountered:
Currently constraints are implemented as a list which requires the user of a problem to set the problem dimension. For most benchmark functions the dimension is irrelevant.
It would be better to change
List<Constraint> getDefaultConstraints
toConstraint getDefaultConstraint
. The notion of a ValueConstraint would simply change from one dimension to the whole search space. An additional MultidimensionalConstraint could be implemented to have different constraints per dimension.The text was updated successfully, but these errors were encountered: