[
https://issues.apache.org/jira/browse/MATH-289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Benjamin McCann updated MATH-289:
---------------------------------
Attachment: SimplexTableau.patch
Good catch. We should get rid of the last argument to the function. Like you
said, it's not affecting the answer, but it's still a good code cleanup action
to take.
> SimplexTableau's arrayCopy could be wrong
> -----------------------------------------
>
> Key: MATH-289
> URL: https://issues.apache.org/jira/browse/MATH-289
> Project: Commons Math
> Issue Type: Improvement
> Affects Versions: 2.0
> Environment: Java 1.6.0_13 on Windows XP 32-bit
> Reporter: Andrea
> Priority: Minor
> Attachments: SimplexTableau.patch
>
>
> The private method copyArray in file SimplexTableau at line 329 takes 3
> parameters src, dest and destPos but the last one is never used/read.
> private void copyArray(final double[] src, final double[] dest, final int
> destPos) {
> System.arraycopy(src, 0, dest, getNumObjectiveFunctions(), src.length);
> }
> The behavior of this method doesn't reflect its JavaDoc description, and
> "misleads" createTableau at line 157 that passes 1 as destPos.
> I don't think this leads to a wrong result, but the method
> signature/implementation is misleading for a future reuse.
> I suggest either to remove the destPos argument or use it in the method body.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.