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
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -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;
};