cellular encoding

This commit is contained in:
2016-05-18 22:57:06 +02:00
parent 86def08f41
commit 237c7741d2
11 changed files with 1032 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include <exception>
#include <string>
namespace NeuralNetworks {
namespace ConstructiveAlgorithms {
namespace CelularEncoding {
class Exception : public std::exception {
public:
Exception (const std::string &e) : _what(e) {
}
virtual const char* what() const noexcept override {
return _what.c_str();
}
protected:
std::string _what;
};
}
}
}