Action #775

Updated by Knödlseder Jürgen over 11 years ago

The matrix classes should be renamed so that the general matrix class is named @GMatrix@ (for simplicity), and the special storage classes add the storage type as a suffix:
<pre>
GMatrixBase
|
+-- GMatrix
+-- GMatrixSymmetric
+-- GMatrixSparse
</pre>
The helper classes @GSparseNumeric@ and @GSparseSymbolic@ can keep their names as they are purely internal and will not be exposed by a user interface.

Methods should not be abbreviated anymore. For example, methods containing @cols@ should be renamed to @columns@.

Back