Files
solver/OndselSolver/RowTypeMatrix.h
PaddleStroke 6f4fca7efb Werner compil warning (#32)
* Replace int by size_t in for loops.

* Various dtor missing and some other warning fixes.

* fixed size_t vs int

* fixed size_t vs int

---------

Co-authored-by: Paddle <PaddleStroke@users.noreply.github.com>
Co-authored-by: Aik-Siong Koh <askoh@askoh.com>
2023-11-16 13:32:13 -07:00

60 lines
1.7 KiB
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "Array.h"
#include "FullRow.ref.h"
namespace MbD {
template<typename T>
class RowTypeMatrix : public Array<T>
{
public:
RowTypeMatrix() {}
RowTypeMatrix(int m) : Array<T>(m) {}
RowTypeMatrix(std::initializer_list<T> list) : Array<T>{ list } {}
void copyFrom(std::shared_ptr<RowTypeMatrix<T>> x);
virtual void zeroSelf() override = 0;
//double maxMagnitude() override;
int numberOfElements() override;
int nrow() {
return (int) this->size();
}
int ncol() {
return this->at(0)->numberOfElements();
}
};
template<typename T>
inline void RowTypeMatrix<T>::copyFrom(std::shared_ptr<RowTypeMatrix<T>> x)
{
for (size_t i = 0; i < x->size(); i++) {
this->at(i)->copyFrom(x->at(i));
}
}
//template<typename T>
//inline double RowTypeMatrix<T>::maxMagnitude()
//{
// double max = 0.0;
// for (size_t i = 0; i < this->size(); i++)
// {
// double element = this->at(i)->maxMagnitude();
// if (max < element) max = element;
// }
// return max;
//}
template<typename T>
inline int RowTypeMatrix<T>::numberOfElements()
{
return this->nrow() * this->ncol();
}
}