Skip to content
Snippets Groups Projects
Commit 416e16cb authored by Martin Beseda's avatar Martin Beseda
Browse files

[FIX] Added dummy methods for NormalizationStrategyACSF

parent ebdcbaf1
No related branches found
No related tags found
No related merge requests found
......@@ -121,3 +121,13 @@ lib4neuro::NormalizationStrategyACSF::NormalizationStrategyACSF(const std::vecto
this->outputs_min = outputs_min;
this->outputs_max = outputs_max;
}
double lib4neuro::NormalizationStrategyACSF::normalize(double n,
double max,
double min) {
return 0;
}
double lib4neuro::NormalizationStrategyACSF::de_normalize(double n) {
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment