From: Gary P. <gpa...@cs...> - 2008-05-19 11:19:57
|
Hi again, >> Here it is: >> >> class PSOProblem : OptimisationProblem >> { >> public Problem getClone2() >> { >> return this.getClone; >> } >> >> public OptimisationProblem getClone() >> { >> return this.getClone; >> } >> >> public Cloneable getClone3() >> { >> return this.getClone; >> } >> >> } > > That does look strange. I don't know if it's an artifact off the Ikvm > integration or if it's something else. Gary, any ideas? Just looking at the methods, it looks like it's creating a "getClone" for every object in the hierarchy for OptimisationProblem. That's strange behaviour imho. |