Add namespace to Smoothing.h

This commit is contained in:
2025-03-09 11:21:31 +01:00
parent b987dcbcc4
commit a70ac3e883
2 changed files with 19 additions and 17 deletions

View File

@@ -6,10 +6,12 @@
#ifndef SMOOTHING_H
#define SMOOTHING_H
enum class Smoothing_t {
NONE = -1,
ORIGINAL = 0,
LAPLACE,
CESTNIK
};
namespace bayesnet {
enum class Smoothing_t {
NONE = -1,
ORIGINAL = 0,
LAPLACE,
CESTNIK
};
}
#endif // SMOOTHING_H