Skip to content

Commit

Permalink
Add explicit instantiation for complex RankFourTensor operation Refs. #…
Browse files Browse the repository at this point in the history
  • Loading branch information
recuero committed Aug 7, 2020
1 parent 9937196 commit e348b62
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions framework/src/utils/RankFourTensor.C
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

template class RankFourTensorTempl<Real>;
template class RankFourTensorTempl<DualReal>;
template class RankTwoTensorTempl<Complex>;

namespace MathUtils
{
Expand Down Expand Up @@ -53,3 +54,6 @@ template RankFourTensor RankFourTensor::operator*(const RankFourTensor & a) cons
template ADRankFourTensor ADRankFourTensor::operator*(const RankFourTensor & a) const;
template ADRankFourTensor RankFourTensor::operator*(const ADRankFourTensor & a) const;
template ADRankFourTensor ADRankFourTensor::operator*(const ADRankFourTensor & a) const;

template RankTwoTensorTempl<Complex>
RankFourTensorTempl<Complex>::operator*(const RankTwoTensorTempl<Complex> & a) const;

0 comments on commit e348b62

Please sign in to comment.