Skip to content

Commit

Permalink
Fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Heinlein committed Oct 18, 2019
1 parent 5bf106c commit 83b2afc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ namespace FROSch {
UN dimension,
ConstXMapPtr nodesMap,
ConstXMultiVectorPtr nodeList,
EntitySetPtr interior)
EntitySetConstPtr interior)
{
FROSCH_TIMER_START_LEVELID(computeVolumeFunctionsTime,"HarmonicCoarseOperator::computeVolumeFunctions");
// Process the parameter list
Expand Down Expand Up @@ -260,7 +260,7 @@ namespace FROSch {

template <class SC,class LO,class GO,class NO>
typename HarmonicCoarseOperator<SC,LO,GO,NO>::XMultiVectorPtrVecPtr HarmonicCoarseOperator<SC,LO,GO,NO>::computeTranslations(UN blockId,
EntitySetPtr entitySet)
EntitySetConstPtr entitySet)
{
FROSCH_TIMER_START_LEVELID(computeTranslationsTime,"HarmonicCoarseOperator::computeTranslations");
XMultiVectorPtrVecPtr translations(this->DofsPerNode_[blockId]);
Expand All @@ -287,7 +287,7 @@ namespace FROSch {
typename HarmonicCoarseOperator<SC,LO,GO,NO>::XMultiVectorPtrVecPtr HarmonicCoarseOperator<SC,LO,GO,NO>::computeRotations(UN blockId,
UN dimension,
ConstXMultiVectorPtr nodeList,
EntitySetPtr entitySet)
EntitySetConstPtr entitySet)
{
FROSCH_TIMER_START_LEVELID(computeRotationsTime,"HarmonicCoarseOperator::computeRotations");
FROSCH_ASSERT(nodeList->getNumVectors()==dimension,"FROSch::HarmonicCoarseOperator : ERROR: Dimension of the nodeList is wrong.");
Expand Down

0 comments on commit 83b2afc

Please sign in to comment.