reordering test works but refactoring neccessary

This commit is contained in:
Christian Zimmermann 2017-02-22 13:34:32 +01:00
parent 1cc96663a4
commit 678db24003
6 changed files with 90 additions and 23 deletions

View file

@ -3,6 +3,8 @@
#ifndef __base_def_h__ #ifndef __base_def_h__
#define __base_def_h__ #define __base_def_h__
#include <cassert>
#define DEFAULT_MEMBERS(__class_name__) __class_name__() = default; \ #define DEFAULT_MEMBERS(__class_name__) __class_name__() = default; \
__class_name__(const __class_name__& in) = default; \ __class_name__(const __class_name__& in) = default; \
__class_name__& operator=(const __class_name__& in) = default; \ __class_name__& operator=(const __class_name__& in) = default; \

View file

@ -66,8 +66,11 @@ namespace MultiArrayTools
void IndefinitIndexBase::setPos(size_t pos) void IndefinitIndexBase::setPos(size_t pos)
{ {
mPos = pos; mPos = pos;
//VCHECK(mName);
if(linked()){ if(linked()){
mLinked->setPos(pos); mLinked->setPos(pos);
mLinked->evalMajor();
//VCHECK(mLinked->name());
} }
} }
@ -78,7 +81,7 @@ namespace MultiArrayTools
size_t IndefinitIndexBase::outOfRange() const size_t IndefinitIndexBase::outOfRange() const
{ {
int res = pos() - max(); int res = pos() - max() + 1;
return res > 0 ? static_cast<size_t>(res) : 0; return res > 0 ? static_cast<size_t>(res) : 0;
} }
@ -87,6 +90,23 @@ namespace MultiArrayTools
return true; return true;
} }
void IndefinitIndexBase::evalMajor()
{
if(not master()){
mMajor->eval();
}
}
bool IndefinitIndexBase::master()
{
return mMajor == nullptr;
}
void IndefinitIndexBase::subOrd(IndefinitIndexBase* major)
{
mMajor = major;
}
/************** /**************
* IndexBase * * IndexBase *
**************/ **************/
@ -113,4 +133,10 @@ namespace MultiArrayTools
mRange = range; mRange = range;
} }
} }
template <class Index>
void IndexBase<Index>::eval()
{
setPos( evaluate(*dynamic_cast<Index const*>( this )) );
}
} }

View file

@ -51,12 +51,19 @@ namespace MultiArrayTools
virtual bool toNull() const; virtual bool toNull() const;
virtual void eval() = 0;
virtual void evalMajor();
virtual bool master();
virtual void subOrd(IndefinitIndexBase* major);
protected: protected:
std::string mName; std::string mName;
size_t mPos; size_t mPos;
IndefinitIndexBase* mLinked = nullptr; IndefinitIndexBase* mLinked = nullptr;
IndefinitIndexBase* mMajor = nullptr;
}; };
template <class Index> template <class Index>
@ -73,6 +80,8 @@ namespace MultiArrayTools
virtual void assignRange(RangeBase<Index> const* range); virtual void assignRange(RangeBase<Index> const* range);
virtual void eval() override;
protected: protected:
// translate index into position // translate index into position

View file

@ -81,7 +81,7 @@ namespace MultiArrayTools
size_t oor = si.outOfRange(); size_t oor = si.outOfRange();
if(oor and digit != 0){ if(oor and digit != 0){
plus(index, digit - 1, 1); plus(index, digit - 1, 1);
plus(index, digit, oor - si.max() - 1); plus(index, digit, -si.max());
} }
} }
@ -105,6 +105,27 @@ namespace MultiArrayTools
std::get<0>(iPack).name(name.get(0)); std::get<0>(iPack).name(name.get(0));
} }
}; };
template <size_t N>
struct IndexSubOrder
{
template <class IndexPack>
static void subOrd(IndexPack& iPack, IndefinitIndexBase* major)
{
std::get<N>(iPack).subOrd(major);
IndexSubOrder<N-1>::subOrd(iPack, major);
}
};
template <>
struct IndexSubOrder<0>
{
template <class IndexPack>
static void subOrd(IndexPack& iPack, IndefinitIndexBase* major)
{
std::get<0>(iPack).subOrd(major);
}
};
} }
template <class... Indices> template <class... Indices>
@ -112,6 +133,7 @@ namespace MultiArrayTools
Indices&&... inds) : IndexBase<MultiIndex<Indices...> >(range), Indices&&... inds) : IndexBase<MultiIndex<Indices...> >(range),
mIPack(std::make_tuple(inds...)) mIPack(std::make_tuple(inds...))
{ {
IndexSubOrder<sizeof...(Indices)-1>::subOrd(mIPack, this);
IIB::mPos = evaluate(*this); IIB::mPos = evaluate(*this);
} }
@ -120,10 +142,10 @@ namespace MultiArrayTools
const IndexPack& ipack) : IndexBase<MultiIndex<Indices...> >(range), const IndexPack& ipack) : IndexBase<MultiIndex<Indices...> >(range),
mIPack(ipack) mIPack(ipack)
{ {
IndexSubOrder<sizeof...(Indices)-1>::subOrd(mIPack, this);
IIB::mPos = evaluate(*this); IIB::mPos = evaluate(*this);
} }
template <class... Indices> template <class... Indices>
MultiIndex<Indices...>& MultiIndex<Indices...>::operator++() MultiIndex<Indices...>& MultiIndex<Indices...>::operator++()
{ {
@ -143,8 +165,8 @@ namespace MultiArrayTools
template <class... Indices> template <class... Indices>
MultiIndex<Indices...>& MultiIndex<Indices...>::operator+=(int n) MultiIndex<Indices...>& MultiIndex<Indices...>::operator+=(int n)
{ {
IIB::setPos( IIB::pos() + n ); plus(*this, sizeof...(Indices)-1, 1);
plus(*this, 0, n); IIB::setPos( evaluate(*this) );
return *this; return *this;
} }
@ -207,6 +229,7 @@ namespace MultiArrayTools
MultiIndex<Indices...>& MultiIndex<Indices...>::operator()(Indices&&... inds) MultiIndex<Indices...>& MultiIndex<Indices...>::operator()(Indices&&... inds)
{ {
mIPack = std::make_tuple(inds...); mIPack = std::make_tuple(inds...);
IndexSubOrder<sizeof...(Indices)-1>::subOrd(mIPack, this);
IIB::mPos = evaluate(*this); IIB::mPos = evaluate(*this);
return *this; return *this;
} }
@ -215,6 +238,7 @@ namespace MultiArrayTools
MultiIndex<Indices...>& MultiIndex<Indices...>::operator()(const Indices&... inds) MultiIndex<Indices...>& MultiIndex<Indices...>::operator()(const Indices&... inds)
{ {
mIPack = std::make_tuple(Indices(inds)...); mIPack = std::make_tuple(Indices(inds)...);
IndexSubOrder<sizeof...(Indices)-1>::subOrd(mIPack, this);
IIB::mPos = evaluate(*this); IIB::mPos = evaluate(*this);
return *this; return *this;
} }
@ -234,6 +258,7 @@ namespace MultiArrayTools
{ {
if(toLink->rangeType() != rangeType() and toLink->name() == IIB::name()){ if(toLink->rangeType() != rangeType() and toLink->name() == IIB::name()){
// throw !! // throw !!
assert(0);
} }
if(toLink->rangeType() == rangeType() and toLink->name() == IIB::name()){ if(toLink->rangeType() == rangeType() and toLink->name() == IIB::name()){
@ -249,7 +274,13 @@ namespace MultiArrayTools
} }
} }
else { else {
return linkLower(toLink); if(linkLower(toLink)){
IIB::mLinked = nullptr;
return true;
}
else {
return false;
}
} }
} }

View file

@ -56,9 +56,9 @@ namespace {
typedef MAT::MultiRange<Range1dAny,Range1dAny> Range2dAny; typedef MAT::MultiRange<Range1dAny,Range1dAny> Range2dAny;
typedef MAT::MultiArray<int,Range2dAny> MultiArray2dAny; typedef MAT::MultiArray<int,Range2dAny> MultiArray2dAny;
ReorderTest() : r1({'a','b','c'}), r2({'a','b'}), ReorderTest() : r1({'a','b','c'}), r2({'a','b','c','d'}),
ra(r1,r2), rb(r2,r1), ra(r1,r2), rb(r2,r1),
ma(ra, {-5,6,2,1,9,54}) {} ma(ra, {-5,6,2,1,9,54,27,-7,-13,32,90,-67}) {}
Range1dAny r1; Range1dAny r1;
Range1dAny r2; Range1dAny r2;
@ -117,23 +117,22 @@ namespace {
auto i2 = i.template getIndex<1>(); auto i2 = i.template getIndex<1>();
CHECK; CHECK;
ma2("alpha","beta") = ma("beta","alpha"); ma2("alpha","beta") = ma("beta","alpha");
VCHECK(i(i1 = 0,i2 = 0).pos());
EXPECT_EQ(ma2[i(i1 = 0,i2 = 0)],-5); EXPECT_EQ(ma2[i(i1 = 0,i2 = 0)],-5);
VCHECK(i(i1 = 1,i2 = 0).pos());
EXPECT_EQ(ma2[i(i1 = 1,i2 = 0)],6); EXPECT_EQ(ma2[i(i1 = 1,i2 = 0)],6);
EXPECT_EQ(ma2[i(i1 = 2,i2 = 0)],2);
EXPECT_EQ(ma2[i(i1 = 3,i2 = 0)],1);
VCHECK(i(i1 = 0,i2 = 1).pos());
EXPECT_EQ(ma2[i(i1 = 0,i2 = 1)],2);
VCHECK(i(i1 = 1,i2 = 1).pos()); EXPECT_EQ(ma2[i(i1 = 0,i2 = 1)],9);
EXPECT_EQ(ma2[i(i1 = 1,i2 = 1)],1); EXPECT_EQ(ma2[i(i1 = 1,i2 = 1)],54);
EXPECT_EQ(ma2[i(i1 = 2,i2 = 1)],27);
EXPECT_EQ(ma2[i(i1 = 3,i2 = 1)],-7);
VCHECK(i(i1 = 0,i2 = 2).pos()); EXPECT_EQ(ma2[i(i1 = 0,i2 = 2)],-13);
EXPECT_EQ(ma2[i(i1 = 0,i2 = 2)],9); EXPECT_EQ(ma2[i(i1 = 1,i2 = 2)],32);
EXPECT_EQ(ma2[i(i1 = 2,i2 = 2)],90);
VCHECK(i(i1 = 1,i2 = 2).pos()); EXPECT_EQ(ma2[i(i1 = 3,i2 = 2)],-67);
EXPECT_EQ(ma2[i(i1 = 1,i2 = 2)],54);
} }
} // end namespace } // end namespace