@@ -143,10 +143,6 @@ Return the value associated to a particular issue. The value is a number
143143with a different meaning depending on the type of issue. For example, for
144144some numerical issues, it can be the coefficient value.
145145"""
146- function value (issue:: AbstractIssue , :: Nothing )
147- return value (issue)
148- end
149-
150146function value (issue:: AbstractIssue , :: MOI.ModelLike )
151147 return value (issue)
152148end
156152
157153Return the values associated to a particular issue.
158154"""
159- function values (issue:: AbstractIssue , :: Nothing )
160- return values (issue)
161- end
162-
163155function values (issue:: AbstractIssue , :: MOI.ModelLike )
164156 return values (issue)
165157end
169161
170162Return the variable associated to a particular issue.
171163"""
172- function variable (issue:: AbstractIssue , :: Nothing )
173- return variable (issue)
174- end
175-
176164function variable (issue:: AbstractIssue , :: MOI.ModelLike )
177165 return variable (issue)
178166end
182170
183171Return the variables associated to a particular issue.
184172"""
185- function variables (issue:: AbstractIssue , :: Nothing )
186- return variables (issue)
187- end
188-
189173function variables (issue:: AbstractIssue , :: MOI.ModelLike )
190174 return variables (issue)
191175end
195179
196180Return the constraint associated to a particular issue.
197181"""
198- function constraint (issue:: AbstractIssue , :: Nothing )
199- return constraint (issue)
200- end
201-
202182function constraint (issue:: AbstractIssue , :: MOI.ModelLike )
203183 return constraint (issue)
204184end
208188
209189Return the constraints associated to a particular issue.
210190"""
211- function constraints (issue:: AbstractIssue , :: Nothing )
212- return constraints (issue)
213- end
214-
215191function constraints (issue:: AbstractIssue , :: MOI.ModelLike )
216192 return constraints (issue)
217193end
221197
222198Return the set associated to a particular issue.
223199"""
224- function set (issue:: AbstractIssue , :: Nothing )
225- return set (issue)
226- end
227-
228200function set (issue:: AbstractIssue , :: MOI.ModelLike )
229201 return set (issue)
230202end
0 commit comments