use default typename for distrib, correct constructor superclass init
This commit is contained in:
parent
2bc68f94a6
commit
c1d49d7bd2
3 changed files with 9 additions and 9 deletions
|
|
@ -34,13 +34,13 @@ Authors:
|
|||
|
||||
//! edoSamplerNormalMulti< EOT >
|
||||
|
||||
template< class EOT >
|
||||
class edoSamplerNormalMulti : public edoSampler< edoNormalMulti< EOT > >
|
||||
template< class EOT, typename D = edoNormalMulti< EOT > >
|
||||
class edoSamplerNormalMulti : public edoSampler< D >
|
||||
{
|
||||
public:
|
||||
typedef typename EOT::AtomType AtomType;
|
||||
|
||||
edoSamplerNormalMulti( edoRepairer<EOT> & repairer ) : edoSampler( repairer) {}
|
||||
edoSamplerNormalMulti( edoRepairer<EOT> & repairer ) : edoSampler< D >( repairer) {}
|
||||
|
||||
class Cholesky
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue