bugfix in putext() in fourindex.h
This commit is contained in:
parent
ede670e719
commit
5b3dced5bb
10
fourindex.h
10
fourindex.h
@ -814,7 +814,9 @@ void fourindex_dense<twoelectronrealmullikanAB,T,I>::putext(int f, T thr)
|
||||
T y;
|
||||
for(int i=1; i<=nbas(); ++i) for(int j=1; j<=i; ++j)
|
||||
for(int k=1; k<=nbas(); ++k) for(int l=1; l<=k; ++l)
|
||||
if((y=abs((*this)(i,j,k,l))) > thr)
|
||||
{
|
||||
y=(*this)(i,j,k,l);
|
||||
if(abs(y)>thr)
|
||||
{
|
||||
matel4stored<I,T> x;
|
||||
x.elem= y;
|
||||
@ -826,6 +828,7 @@ for(int i=1; i<=nbas(); ++i) for(int j=1; j<=i; ++j)
|
||||
laerror("write error in putext");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
template<class T, class I>
|
||||
@ -916,7 +919,9 @@ void fourindex_dense<twoelectronrealmullikan,T,I>::putext(int f, T thr)
|
||||
T y;
|
||||
for(int i=1; i<=nbas(); ++i) for(int j=1; j<=i; ++j)
|
||||
for(int k=1; k<=i; ++k) for(int l=1; l<=(i==k?j:k); ++l)
|
||||
if((y=abs((*this)(i,j,k,l))) > thr)
|
||||
{
|
||||
y=(*this)(i,j,k,l);
|
||||
if(abs(y) > thr)
|
||||
{
|
||||
matel4stored<I,T> x;
|
||||
x.elem= y;
|
||||
@ -928,6 +933,7 @@ for(int i=1; i<=nbas(); ++i) for(int j=1; j<=i; ++j)
|
||||
laerror("write error in putext");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
template<class T, class I>
|
||||
|
Loading…
Reference in New Issue
Block a user