Skip to content
Snippets Groups Projects
Commit 8d13b822 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Matrix methods for coloring marked as deprecated, method Matrix::help was erased.

parent 939b17f9
No related branches found
No related tags found
1 merge request!48Segments
......@@ -84,16 +84,14 @@ public:
// TODO: method for symmetric matrices, should not be in general Matrix interface
[[deprecated]]
__cuda_callable__
const IndexType& getNumberOfColors() const;
// TODO: method for symmetric matrices, should not be in general Matrix interface
[[deprecated]]
void computeColorsVector(Containers::Vector<Index, Device, Index> &colorsVector);
// TODO: what is this supposed to do?!? There are redefinitions only in the
// EllpackSymmetricGraph and SlicedEllpackSymmetricGraph classes...
bool help( bool verbose = false ) { return true;};
// TODO: copy should be done in the operator= and it should work the other way too
void copyFromHostToCuda( Matrices::Matrix< Real, Devices::Host, Index >& matrix );
......@@ -103,7 +101,10 @@ public:
protected:
IndexType rows, columns, numberOfColors;
IndexType rows, columns;
// TODO: remove1
IndexType numberOfColors;
ValuesVectorType values;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment