+ do files
This commit is contained in:
parent
d55182a8b0
commit
a038586edb
27 changed files with 1439 additions and 0 deletions
16
src/doNormal.h
Normal file
16
src/doNormal.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef _doNormal_h
|
||||
#define _doNormal_h
|
||||
|
||||
#include "doDistrib.h"
|
||||
#include "doNormalParams.h"
|
||||
|
||||
template < typename EOT >
|
||||
class doNormal : public doDistrib< EOT >, public doNormalParams< EOT >
|
||||
{
|
||||
public:
|
||||
doNormal(EOT mean, EOT variance)
|
||||
: doNormalParams< EOT >(mean, variance)
|
||||
{}
|
||||
};
|
||||
|
||||
#endif // !_doNormal_h
|
||||
Reference in a new issue