Files
solver/MbDCode/FullMatrix.h
Aik-Siong Koh 43570d87cd Third commit
2023-04-28 17:42:51 -06:00

18 lines
384 B
C++

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