Add some empty lines

This commit is contained in:
Nikita Lisitsa 2022-01-21 12:11:14 +03:00
parent b47b6aa224
commit 6d40e4dd98

View file

@ -11,6 +11,7 @@ namespace psemek::ml
struct neural_net_evaluator
{
std::vector<T> apply(neural_net<T> const & nn, std::vector<T> input) const;
private:
mutable std::vector<T> temp_;
};
@ -46,4 +47,5 @@ namespace psemek::ml
return input;
}
}