[
https://issues.apache.org/jira/browse/MATH-571?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13082504#comment-13082504
]
Luc Maisonobe commented on MATH-571:
------------------------------------
OK for WONT_FIX for both this issue and MATH-569
> make FieldVector generic
> ------------------------
>
> Key: MATH-571
> URL: https://issues.apache.org/jira/browse/MATH-571
> Project: Commons Math
> Issue Type: Improvement
> Reporter: Arne Plöse
> Priority: Minor
> Fix For: 3.0
>
>
> make FieldVector generic, so one can extend i.e. ArrayVieldVector<Complex> to
> ArrayComplexVector an introduce new methoids (getReal())...
> if one has an equation complexvector.copy the original type
> ArrayComplexVector is lost thus access to getReal() is not possible.
> solution:
> public class InheritationTest {
> public static interface FieldVector<T extends FieldElement<T>, R extends
> FieldVector> {
> R copy();
> }
> public abstract static class ArrayFieldVectorExtendable<T extends
> FieldElement<T>, R extends FieldVector> implements FieldVector<T, R>,
> Serializable {
> protected T[] data;
> @Override
> public R copy() {
> return createVector(data);
> }
> abstract protected R createVector(T[] data);
> }
> public static class ArrayFieldVector<T extends FieldElement<T>> extends
> ArrayFieldVectorExtendable<T, ArrayFieldVector> {
> @Override
> protected ArrayFieldVector<T> createVector(T[] data) {
> ArrayFieldVector<T> result = new ArrayFieldVector<T>();
> result.data = data;
> return result;
> }
> }
> public static class ArrayComplexVector extends
> ArrayFieldVectorExtendable<Complex, ArrayComplexVector> {
> @Override
> protected ArrayComplexVector createVector(Complex[] data) {
> ArrayComplexVector result = new ArrayComplexVector();
> result.data = data;
> return result;
> }
> public double[] getReal() {
> return null;
> }
> public double[] getImaginary() {
> return null;
> }
> }
> public void test() {
> ArrayComplexVector v = new ArrayComplexVector();
> ArrayComplexVector v1 = v.copy(); // FiledVector type survives ...
> }
> }
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira