Files
solver/MbDCode/FullMatrix.h
2023-04-29 11:19:31 -06:00

19 lines
462 B
C++

#pragma once
#include "RowTypeMatrix.h"
#include "FullRow.h"
namespace MbD {
template <typename T>
class FullMatrix : public RowTypeMatrix<std::shared_ptr<FullRow<T>>>
{
public:
FullMatrix() {
// constructor code here
}
FullMatrix(int m, int n);
//FullMatrix(std::initializer_list<T> list) : RowTypeMatrix<FullRow<T>>{ list } {}
};
}
typedef std::shared_ptr<MbD::FullMatrix<double>> FullMatDptr;