Skip to content

Commit

Permalink
Rtd test (#242)
Browse files Browse the repository at this point in the history
Minor doc changes
  • Loading branch information
ilfreddy authored Apr 24, 2024
1 parent 75b4ebe commit 8349f34
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion docs/programmers_manual/MWTree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ algorithm/equation/structure reasoning for having this class or where it fits wi
:members:
:protected-members:
:private-members:

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
2 changes: 1 addition & 1 deletion src/trees/MWNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace mrcpp {
* translation index, the norm, pointers to parent node and child
* nodes, pointer to the corresponding MWTree etc... See member and
* data descriptions for details.
*
*
*/
template <int D> class MWNode {
public:
Expand Down
2 changes: 1 addition & 1 deletion src/trees/MWTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
namespace mrcpp {

class BankAccount;

/** @class MWTree
*
* @brief Base class for Multiwavelet tree structures, such as FunctionTree and OperatorTree
Expand Down

0 comments on commit 8349f34

Please sign in to comment.