In the genciwfn.cpp constructor, the use of nword2 leads to the incorrect indexing labeled with k.
Issue Details
- File: genciwfn.cpp - Line: 46
- Incorrect Variable:
nword2
- Correct Variable:
nword
Code Before Correction
k += wfn.nword2;
Code After Correction
k += wfn.nword;
In the genciwfn.cpp constructor, the use of
nword2leads to the incorrect indexing labeled withk.Issue Details
nword2nwordCode Before Correction
k += wfn.nword2;Code After Correction
k += wfn.nword;