diff --git a/miplearn/instance.py b/miplearn/instance.py index 1313f97..10157b3 100644 --- a/miplearn/instance.py +++ b/miplearn/instance.py @@ -78,9 +78,9 @@ class Instance(ABC): model to predict the values of both variables. If the returned category is None, ML models will ignore the variable. - By default, returns None. + By default, returns "default". """ - return None + return "default" def has_static_lazy_constraints(self): return False