Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding all the latest and gratest doc changes to master #239

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,5 @@ The code can be found on `GitHub <https://github.com/MRChemSoft/mrcpp>`_.

programmers_manual/overview
programmers_manual/clang_tidy.rst
programmers_manual/manual

2 changes: 1 addition & 1 deletion src/operators/IdentityConvolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

namespace mrcpp {

/** @brief Constructor of the IdentityConvolution object
/** @brief Constructor of the IdentityConvolution object
* @returns New IdentityConvolution object
* @param[in] mra: Which MRA the operator is defined
* @param[in] prec: Build precision, closeness to delta function
Expand Down
6 changes: 4 additions & 2 deletions src/trees/MWNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,9 @@ template <int D> void MWNode<D>::copyCoefsFromChildren() {
*
* @details If the node is a leafNode, it takes the scaling&wavelet
* coefficients of the parent and it generates the scaling
* coefficients for the children
* coefficients for the children and stores
* them consecutively in the corresponding block of the parent,
* following the usual bitwise notation.
*/
template <int D> void MWNode<D>::threadSafeGenChildren() {
if (tree->isLocal) { NOT_IMPLEMENTED_ABORT; }
Expand Down Expand Up @@ -879,7 +881,7 @@ template <int D> void MWNode<D>::getExpandedQuadPts(Eigen::MatrixXd &pts) const

/** @brief Returns the quadrature points in a given node
*
* @param[in,out] pts: expanded quadrature points in a \f$ d \times
* @param[in,out] pts: expanded quadrature points in a \f$ d \times
* 2^d(k+1)^d \f$ matrix form.
*
* @details The primitive quadrature points of the children are used to obtain a
Expand Down
Loading