226 lines
6.3 KiB
C++
226 lines
6.3 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <sstream>
|
|
|
|
#include "FullVector.h"
|
|
#include "FullColumn.ref.h"
|
|
#include "FullRow.ref.h"
|
|
#include "FullColumn.h"
|
|
#include "FullRow.h"
|
|
|
|
namespace MbD {
|
|
// template<typename T>
|
|
// class FullColumn;
|
|
// using FColDsptr = std::shared_ptr<FullColumn<double>>;
|
|
// template<typename T>
|
|
// using FColsptr = std::shared_ptr<FullColumn<T>>;
|
|
// template<typename T>
|
|
// class FullRow;
|
|
// template<typename T>
|
|
// using FRowsptr = std::shared_ptr<FullRow<T>>;
|
|
class Symbolic;
|
|
|
|
template<typename T>
|
|
class FullColumn : public FullVector<T>
|
|
{
|
|
public:
|
|
FullColumn() : FullVector<T>() {}
|
|
FullColumn(std::vector<T> vec) : FullVector<T>(vec) {}
|
|
FullColumn(int count) : FullVector<T>(count) {}
|
|
FullColumn(int count, const T& value) : FullVector<T>(count, value) {}
|
|
FullColumn(typename std::vector<T>::iterator begin, typename std::vector<T>::iterator end) : FullVector<T>(begin, end) {}
|
|
FullColumn(std::initializer_list<T> list) : FullVector<T>{ list } {}
|
|
FColsptr<T> plusFullColumn(FColsptr<T> fullCol);
|
|
FColsptr<T> minusFullColumn(FColsptr<T> fullCol);
|
|
FColsptr<T> times(T a);
|
|
FColsptr<T> negated();
|
|
void atiputFullColumn(int i, FColsptr<T> fullCol);
|
|
void atiplusFullColumn(int i, FColsptr<T> fullCol);
|
|
void equalSelfPlusFullColumnAt(FColsptr<T> fullCol, int i);
|
|
void atiminusFullColumn(int i, FColsptr<T> fullCol);
|
|
void equalFullColumnAt(FColsptr<T> fullCol, int i);
|
|
FColsptr<T> copy();
|
|
FRowsptr<T> transpose();
|
|
void atiplusFullColumntimes(int i, FColsptr<T> fullCol, T factor);
|
|
T transposeTimesFullColumn(const FColsptr<T> fullCol);
|
|
void equalSelfPlusFullColumntimes(FColsptr<T> fullCol, T factor);
|
|
FColsptr<T> cross(FColsptr<T> fullCol);
|
|
FColsptr<T> simplified();
|
|
|
|
std::ostream& printOn(std::ostream& s) const override;
|
|
};
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::plusFullColumn(FColsptr<T> fullCol)
|
|
{
|
|
int n = (int) this->size();
|
|
auto answer = std::make_shared<FullColumn<T>>(n);
|
|
for (int i = 0; i < n; i++) {
|
|
answer->at(i) = this->at(i) + fullCol->at(i);
|
|
}
|
|
return answer;
|
|
}
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::minusFullColumn(FColsptr<T> fullCol)
|
|
{
|
|
int n = (int) this->size();
|
|
auto answer = std::make_shared<FullColumn<T>>(n);
|
|
for (int i = 0; i < n; i++) {
|
|
answer->at(i) = this->at(i) - fullCol->at(i);
|
|
}
|
|
return answer;
|
|
}
|
|
template<>
|
|
inline FColDsptr FullColumn<double>::times(double a)
|
|
{
|
|
int n = (int)this->size();
|
|
auto answer = std::make_shared<FullColumn<double>>(n);
|
|
for (int i = 0; i < n; i++) {
|
|
answer->at(i) = this->at(i) * a;
|
|
}
|
|
return answer;
|
|
}
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::times(T a)
|
|
{
|
|
assert(false);
|
|
}
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::negated()
|
|
{
|
|
return this->times(-1.0);
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::atiputFullColumn(int i, FColsptr<T> fullCol)
|
|
{
|
|
for (int ii = 0; ii < fullCol->size(); ii++)
|
|
{
|
|
this->at(i + ii) = fullCol->at(ii);
|
|
}
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::atiplusFullColumn(int i, FColsptr<T> fullCol)
|
|
{
|
|
for (int ii = 0; ii < fullCol->size(); ii++)
|
|
{
|
|
this->at(i + ii) += fullCol->at(ii);
|
|
}
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::equalSelfPlusFullColumnAt(FColsptr<T> fullCol, int ii)
|
|
{
|
|
//self is subcolumn of fullCol
|
|
for (int i = 0; i < this->size(); i++)
|
|
{
|
|
this->at(i) += fullCol->at(ii + i);
|
|
}
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::atiminusFullColumn(int i1, FColsptr<T> fullCol)
|
|
{
|
|
for (int ii = 0; ii < fullCol->size(); ii++)
|
|
{
|
|
int i = i1 + ii;
|
|
this->at(i) -= fullCol->at(ii);
|
|
}
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::equalFullColumnAt(FColsptr<T> fullCol, int i)
|
|
{
|
|
this->equalArrayAt(fullCol, i);
|
|
//for (int ii = 0; ii < this->size(); ii++)
|
|
//{
|
|
// this->at(ii) = fullCol->at(i + ii);
|
|
//}
|
|
}
|
|
template<>
|
|
inline FColDsptr FullColumn<double>::copy()
|
|
{
|
|
auto n = (int) this->size();
|
|
auto answer = std::make_shared<FullColumn<double>>(n);
|
|
for (int i = 0; i < n; i++)
|
|
{
|
|
answer->at(i) = this->at(i);
|
|
}
|
|
return answer;
|
|
}
|
|
template<typename T>
|
|
inline FRowsptr<T> FullColumn<T>::transpose()
|
|
{
|
|
return std::make_shared<FullRow<T>>(*this);
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::atiplusFullColumntimes(int i1, FColsptr<T> fullCol, T factor)
|
|
{
|
|
for (int ii = 0; ii < fullCol->size(); ii++)
|
|
{
|
|
int i = i1 + ii;
|
|
this->at(i) += fullCol->at(ii) * factor;
|
|
}
|
|
}
|
|
template<typename T>
|
|
inline T FullColumn<T>::transposeTimesFullColumn(const FColsptr<T> fullCol)
|
|
{
|
|
return this->dot(fullCol);
|
|
}
|
|
template<typename T>
|
|
inline void FullColumn<T>::equalSelfPlusFullColumntimes(FColsptr<T> fullCol, T factor)
|
|
{
|
|
this->equalSelfPlusFullVectortimes(fullCol, factor);
|
|
}
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::cross(FColsptr<T> fullCol)
|
|
{
|
|
auto a0 = this->at(0);
|
|
auto a1 = this->at(1);
|
|
auto a2 = this->at(2);
|
|
auto b0 = fullCol->at(0);
|
|
auto b1 = fullCol->at(1);
|
|
auto b2 = fullCol->at(2);
|
|
auto answer = std::make_shared<FullColumn<T>>(3);
|
|
answer->atiput(0, a1 * b2 - (a2 * b1));
|
|
answer->atiput(1, a2 * b0 - (a0 * b2));
|
|
answer->atiput(2, a0 * b1 - (a1 * b0));
|
|
return answer;
|
|
}
|
|
//template<>
|
|
//inline std::shared_ptr<FullColumn<Symsptr>> FullColumn<Symsptr>::simplified()
|
|
//{
|
|
// auto n = this->size();
|
|
// auto answer = std::make_shared<FullColumn<Symsptr>>(n);
|
|
// for (int i = 0; i < n; i++)
|
|
// {
|
|
// auto func = this->at(i);
|
|
// answer->at(i) = func->simplified(func);
|
|
// }
|
|
// return answer;
|
|
//}
|
|
template<typename T>
|
|
inline FColsptr<T> FullColumn<T>::simplified()
|
|
{
|
|
assert(false);
|
|
return FColsptr<T>();
|
|
}
|
|
template<typename T>
|
|
inline std::ostream& FullColumn<T>::printOn(std::ostream& s) const
|
|
{
|
|
s << "FullCol{";
|
|
s << this->at(0);
|
|
for (int i = 1; i < this->size(); i++)
|
|
{
|
|
s << ", " << this->at(i);
|
|
}
|
|
s << "}";
|
|
return s;
|
|
}
|
|
}
|
|
|