#include "daal.h"
#include "service.h"
using namespace std;
using namespace daal;
using namespace daal::algorithms;
using namespace daal::algorithms::engines;
using namespace daal::algorithms::distributions;
int main(int argc, char *argv[])
{
NumericTablePtr dataTable(new HomogenNumericTable<>(1, 10, NumericTable::doAllocate));
normal::Batch<> normal;
normal.input.set(distributions::tableToFill, dataTable);
normal.parameter.engine = mt19937::Batch<>::create(777);
normal.compute();
printNumericTable(dataTable, "Normal distribution output:");
return 0;
}