Skip to content
Snippets Groups Projects
Commit fd425317 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixes #163

Properly instantiate templates when using high optimization flags
with gcc
parent 570a79ff
No related branches found
No related tags found
No related merge requests found
...@@ -1223,5 +1223,27 @@ Tensor RMSDCoreData::getRotationMatrixPositionsToReference(){ ...@@ -1223,5 +1223,27 @@ Tensor RMSDCoreData::getRotationMatrixPositionsToReference(){
} }
template double RMSD::optimalAlignment<true,true>(const std::vector<double> & align,
const std::vector<double> & displace,
const std::vector<Vector> & positions,
const std::vector<Vector> & reference ,
std::vector<Vector> & derivatives, bool squared)const;
template double RMSD::optimalAlignment<true,false>(const std::vector<double> & align,
const std::vector<double> & displace,
const std::vector<Vector> & positions,
const std::vector<Vector> & reference ,
std::vector<Vector> & derivatives, bool squared)const;
template double RMSD::optimalAlignment<false,true>(const std::vector<double> & align,
const std::vector<double> & displace,
const std::vector<Vector> & positions,
const std::vector<Vector> & reference ,
std::vector<Vector> & derivatives, bool squared)const;
template double RMSD::optimalAlignment<false,false>(const std::vector<double> & align,
const std::vector<double> & displace,
const std::vector<Vector> & positions,
const std::vector<Vector> & reference ,
std::vector<Vector> & derivatives, bool squared)const;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment