Skip to content

Commit

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

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

namespace MathUtils
{
Expand Down Expand Up @@ -53,3 +55,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 83aa2c7

Please sign in to comment.