dynare/dynare++/sylv/cc/KronVector.cc

106 lines
3.0 KiB
C++

/*
* Copyright © 2004-2011 Ondra Kamenik
* Copyright © 2019 Dynare Team
*
* This file is part of Dynare.
*
* Dynare is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Dynare is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Dynare. If not, see <http://www.gnu.org/licenses/>.
*/
#include "KronVector.hh"
#include "SylvException.hh"
#include "int_power.hh"
#include <utility>
KronVector::KronVector(int mm, int nn, int dp)
: Vector(power(mm, dp)*nn), m(mm), n(nn), depth(dp)
{
}
KronVector::KronVector(Vector &v, int mm, int nn, int dp)
: Vector(v), m(mm), n(nn), depth(dp)
{
if (length() != power(m, depth)*n)
throw SYLV_MES_EXCEPTION("Bad conversion KronVector from Vector.");
}
KronVector::KronVector(KronVector &v, int i)
: Vector(v, i*power(v.m, v.depth-1)*v.n, power(v.m, v.depth-1)*v.n), m(v.m), n(v.n),
depth(v.depth-1)
{
if (depth < 0)
throw SYLV_MES_EXCEPTION("Bad KronVector pick, depth < 0.");
}
KronVector::KronVector(const ConstKronVector &v)
: Vector(v), m(v.m), n(v.n), depth(v.depth)
{
}
KronVector &
KronVector::operator=(const ConstKronVector &v)
{
Vector::operator=(v);
m = v.m;
n = v.n;
depth = v.depth;
return *this;
}
KronVector &
KronVector::operator=(const Vector &v)
{
if (length() != v.length())
throw SYLV_MES_EXCEPTION("Wrong lengths for vector operator =.");
Vector::operator=(v);
return *this;
}
ConstKronVector::ConstKronVector(const KronVector &v)
: ConstVector(v), m(v.m), n(v.n), depth(v.depth)
{
}
ConstKronVector::ConstKronVector(const Vector &v, int mm, int nn, int dp)
: ConstVector(v), m(mm), n(nn), depth(dp)
{
if (length() != power(m, depth)*n)
throw SYLV_MES_EXCEPTION("Bad conversion KronVector from Vector.");
}
ConstKronVector::ConstKronVector(ConstVector v, int mm, int nn, int dp)
: ConstVector(std::move(v)), m(mm), n(nn), depth(dp)
{
if (length() != power(m, depth)*n)
throw SYLV_MES_EXCEPTION("Bad conversion KronVector from Vector.");
}
ConstKronVector::ConstKronVector(const KronVector &v, int i)
: ConstVector(v, i*power(v.getM(), v.getDepth()-1)*v.getN(),
power(v.getM(), v.getDepth()-1)*v.getN()),
m(v.getM()), n(v.getN()), depth(v.getDepth()-1)
{
if (depth < 0)
throw SYLV_MES_EXCEPTION("Bad KronVector pick, depth < 0.");
}
ConstKronVector::ConstKronVector(const ConstKronVector &v, int i)
: ConstVector(v, i*power(v.m, v.depth-1)*v.n, power(v.m, v.depth-1)*v.n),
m(v.getM()), n(v.getN()), depth(v.getDepth()-1)
{
if (depth < 0)
throw SYLV_MES_EXCEPTION("Bad KronVector pick, depth < 0.");
}