Skip to content

Commit

Permalink
Fixes typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ilfreddy committed Sep 26, 2023
1 parent 9af383a commit e5262aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/operators/IdentityConvolution.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

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
* @details This will project a kernel of a single gaussian with
* exponent sqrt(10/build_prec).
*/
Template <int D>
template <int D>
IdentityConvolution<D>::IdentityConvolution(const MultiResolutionAnalysis<D> &mra, double prec)
: ConvolutionOperator<D>(mra) {
int oldlevel = Printer::setPrintLevel(0);
Expand Down
2 changes: 1 addition & 1 deletion src/trees/MWNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ template <int D> void MWNode<D>::giveParentCoefs(bool overwrite) {
MWNode<D> &parent = getMWParent();
int kp1_d = this->getKp1_d();
if (node.getScale() == 0) {
Nodebox<D> &box = this->getMWTree().getRootBox();
NodeBox<D> &box = this->getMWTree().getRootBox();
auto reverse = getTDim() - 1;
for (auto i = 0; i < getTDim(); i++) { parent.setCoefBlock(i, kp1_d, &box.getNode(reverse - i).getCoefs()[0]); }
} else {
Expand Down

0 comments on commit e5262aa

Please sign in to comment.