loooot of fixes nad SSE enhacement

This commit is contained in:
2014-11-18 11:09:34 +01:00
parent 207e141cca
commit 0abc0d07dd
28 changed files with 246 additions and 280 deletions

View File

@@ -7,9 +7,9 @@
class X: public Shin::NeuronNetwork::Problem
{
protected:
std::vector<bool> representation() const
std::vector<float> representation() const
{
return std::vector<bool>({1,1});
return std::vector<float>({1,1});
}
};