Am Mittwoch 25 Januar 2012, 19:13:25 schrieb Axel:
> To extend JAS with the commons-math methods the easiest way is to extend
> the
> edu.jas.structure.AbelianGroupElem like this:
> 
> public interface AbelianGroupElem<C extends AbelianGroupElem<C>>
>          extends Element<C>, FieldElement<C>
> 
> and add the methods:
> add() and
> getField() in all derived classes.
> 
> But there's already an add() method in the AbelianGroupElem interface which
> is called sum().
> This is probably to avoid the method name add() which is often used in the
> Java Collection framework.
> (see https://issues.apache.org/jira/browse/MATH-285)

may be the names are not so important at the moment. I have given one reason 
for choosing sum() as name - some protection against my own stupidity. There 
may be other reasons to choose other names. For JAS I would not bother to 
change names in the current 2.4 release. My plan is to have such things/issues 
resolved and fixed for the 3.0 release.

There are other methods which we have to discuss, e.g. the toScript() method 
in Element. As far as I can see this method is useless in the current setting 
of ACMath. Only if ACMAth would have some interest/future plans to provide a 
scripting frontend to the library, for example like Octave or Scilab, it would 
make sense. So we must face the problem that not all methods are equally 
important for the different libraries. What we should have is a minimal set 
which provides the best interoperability and has enough mathematical methods 
to be useful. So continuing with Axels example we would have the following:

edu.jas.structure would be revised and go to org.apache.commons.math.structure 
(or what ever package ACMath sees fit). I would then restructure 
edu.jas.structure to extend the interfaces from 
org.apache.commons.math.structure and add interfaces as required. For example 
with

public interface Scripting {
   String toScript();
}

it would be in JAS

public interface RingElem<C extends RingElem<C>> extends 
   org.apache.commons.math.structure.RingElem, Scripting {
}

JAS has already some of such explicit return value interfaces, e.g. Rational, 
Modular and ModularRingfactory in edu.jas.arith. (It only makes reading of the 
class definition a bit more difficult.)

One can do similar extensions for missing methods for ACMath usage if 
required.

Heinz

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to