Skip to content

Commit

Permalink
Fix some errors
Browse files Browse the repository at this point in the history
  • Loading branch information
williamfgc committed Aug 18, 2023
1 parent ec4be0b commit a9690c9
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions src/QMCWaveFunctions/ElectronGas/FreeOrbitalT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
namespace qmcplusplus
{

template<>
FreeOrbitalT<T>::FreeOrbitalT(const std::string& my_name, const std::vector<PosType>& kpts_cart) : SPOSetT<T>(my_name),
template<class T>
FreeOrbitalT<T>::FreeOrbitalT(const std::string& my_name, const std::vector<PosType>& kpts_cart) : SPOSetT<T>(my_name)
{}

//Explicit template specialization
Expand Down Expand Up @@ -177,14 +177,6 @@ void FreeOrbitalT<std::complex<double>>::evaluateVGL(const ParticleSet& P,
}
}

template<class T>
void FreeOrbitalT<T>::evaluateVGL(const ParticleSet& P,
int iat,
ValueVector& pvec,
GradVector& dpvec,
ValueVector& d2pvec)
{}


template<>
void FreeOrbitalT<float>::evaluateValue(const ParticleSet& P, int iat, ValueVector& pvec)
Expand Down

0 comments on commit a9690c9

Please sign in to comment.