// Description: Native types as a semi-group concept
// DocumentationOf: semigroup_concept.h
#ifndef PASTELSYS_NATIVE_SEMIGROUP_H
#define PASTELSYS_NATIVE_SEMIGROUP_H
#include <cmath>
namespace Pastel
{
// Multiplicative semi-group
using std::pow;
}
#endif