|
21 | 21 |
|
22 | 22 | #include "linearAlgebra/common.hpp" |
23 | 23 | #include "linearAlgebra/interfaces/LinearOperator.hpp" |
24 | | -//#include "LvArray/src/streamIO.hpp" |
25 | 24 |
|
26 | 25 | namespace geosx |
27 | 26 | { |
@@ -438,36 +437,6 @@ class MatrixBase : public virtual LinearOperator< VECTOR > |
438 | 437 | arraySlice1d< globalIndex const > const & colIndices, |
439 | 438 | arraySlice2d< real64 const, MatrixLayout::ROW_MAJOR > const & values ) = 0; |
440 | 439 |
|
441 | | - /** |
442 | | - * @brief Add a dense block of values. |
443 | | - * @param rowIndices Global row indices |
444 | | - * @param colIndices Global col indices |
445 | | - * @param values Dense local matrix of values |
446 | | - */ |
447 | | - virtual void add( arraySlice1d< globalIndex const > const & rowIndices, |
448 | | - arraySlice1d< globalIndex const > const & colIndices, |
449 | | - arraySlice2d< real64 const, MatrixLayout::COL_MAJOR > const & values ) = 0; |
450 | | - |
451 | | - /** |
452 | | - * @brief Set a dense block of values. |
453 | | - * @param rowIndices Global row indices |
454 | | - * @param colIndices Global col indices |
455 | | - * @param values Dense local matrix of values |
456 | | - */ |
457 | | - virtual void set( arraySlice1d< globalIndex const > const & rowIndices, |
458 | | - arraySlice1d< globalIndex const > const & colIndices, |
459 | | - arraySlice2d< real64 const, MatrixLayout::COL_MAJOR > const & values ) = 0; |
460 | | - |
461 | | - /** |
462 | | - * @brief Insert a dense block of values. |
463 | | - * @param rowIndices Global row indices |
464 | | - * @param colIndices Global col indices |
465 | | - * @param values Dense local matrix of values |
466 | | - */ |
467 | | - virtual void insert( arraySlice1d< globalIndex const > const & rowIndices, |
468 | | - arraySlice1d< globalIndex const > const & colIndices, |
469 | | - arraySlice2d< real64 const, MatrixLayout::COL_MAJOR > const & values ) = 0; |
470 | | - |
471 | 440 | /** |
472 | 441 | * @brief Add a dense block of values. |
473 | 442 | * @param rowIndices Global row indices |
|
0 commit comments