public Solution getReferenceSolution(Problem p)
throws UnsupportedOperationException {
Solution result;
if (!haveReferenceSolution)
throw new UnsupportedOperationException("Domain.getReferenceSolution: A getReferenceSolution() method has not been specified for this domain. If its use is required, please specify one using setEquivalenceClasses() or by overriding Domain.getReferenceSolution().");
else {
if (haveBooleanSolutionCutoff)
result = findNearestEquivalenceClass(p).applyTo(p, booleanSolutionCutoff);
else
result = findNearestEquivalenceClass(p).applyTo(p);
}
result.setIsReferenceSolution(true);
return result;
}
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
Do you mean like this?
|
|||||||
|
|
If you only need one solution normally, but one place needs multiple solutions, I suggest you have two methods; something like this:
Note how it's now obvious from the method name whether you're looking for one solution or multiple ones; I wouldn't use overloading in this situation, as you're trying to do different things. |
|||
|
|
|
Maybe better to return a collection, e.g. an
Or maybe you want to pass the
|
|||
|
|