[jira] [Commented] (MATH-725) use initialized static final arrays, instead of initializing it in constructors

2012-02-02 Thread Gilles (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/MATH-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13199279#comment-13199279 ] Gilles commented on MATH-725: - Those arrays cannot be static since their size depends on a

[jira] [Commented] (MATH-725) use initialized static final arrays, instead of initializing it in constructors

2012-01-20 Thread Gilles (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/MATH-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13189860#comment-13189860 ] Gilles commented on MATH-725: - The problem is that arrays are _mutable_. If they are made

[jira] [Commented] (MATH-725) use initialized static final arrays, instead of initializing it in constructors

2012-01-20 Thread Sebb (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/MATH-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13189862#comment-13189862 ] Sebb commented on MATH-725: --- AFAIK, getters will be inlined by optimising compilers. So they

[jira] [Commented] (MATH-725) use initialized static final arrays, instead of initializing it in constructors

2012-01-20 Thread Gilles (Commented) (JIRA)
[ https://issues.apache.org/jira/browse/MATH-725?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13189872#comment-13189872 ] Gilles commented on MATH-725: - Fine then. Eldar, Would you provide a patch along those lines