*** empty log message ***
This commit is contained in:
parent
457beea7e0
commit
db7044200a
@ -720,6 +720,7 @@ private:
|
|||||||
public:
|
public:
|
||||||
fourindex_dense(): NRMat<T>() {nocc=nvrt=ntri=0;};
|
fourindex_dense(): NRMat<T>() {nocc=nvrt=ntri=0;};
|
||||||
explicit fourindex_dense(const int noc, const int nvr): NRMat<T>(noc*(noc-1)/2,nvr*(nvr-1)/2) {nocc=noc; nvrt=nvr; ntri=nvr*(nvr-1)/2;};
|
explicit fourindex_dense(const int noc, const int nvr): NRMat<T>(noc*(noc-1)/2,nvr*(nvr-1)/2) {nocc=noc; nvrt=nvr; ntri=nvr*(nvr-1)/2;};
|
||||||
|
void resize(const int noc, const int nvr) {(*this).NRMat<T>::resize(noc*(noc-1)/2,nvr*(nvr-1)/2); nocc=noc; nvrt=nvr; ntri=nvr*(nvr-1)/2;};
|
||||||
|
|
||||||
//we cannot return reference due to the possible sign change
|
//we cannot return reference due to the possible sign change
|
||||||
//stored values are for i>j a>b
|
//stored values are for i>j a>b
|
||||||
|
Loading…
Reference in New Issue
Block a user