*/
Neural Networks in C++ v1.0
Submitted By:
paraschopra
Rating:





(
Rate It)
A basic back propagation algorithm written in c++ using classes.
File Details
NOTE: Some downloads must be obtained through publishers´s site.
Do you want to get your software listed on this site? Go to our
submissions area.
Screenshot
Details
File Name:
Neural Networks in C++
Number of downloads:
1960
Comments (2)
A mess that does the job
Posted by: Bilderbikkel on Wednesday, November 15, 2006
Yes, it works. It does use classes. And that is all the positive I can say. The code is a mix of C and C++, but as it uses classes it should be C++. It is not const-correct, badly indented, unnecessarily copies objects, unnecessarily uses macros (== C style), #includes non-standard header files, uses a method initialize() instead of using a constructor (== C style), uses plain pointers where smart pointers would have been preferred (== C style), uses void as a function argument (== C style).
A fine example how NOT to program. At least main() is of return type int.
Comment




Posted by: Bilderbikkel on Wednesday, November 15, 2006
Yes, it works. It does use classes. And that is all the positive I can say. The code is a mix of C and C++, but as it uses classes it should be C++. It is not const-correct, badly indented, unnecessarily copies objects, unnecessarily uses macros (== C style), #includes non-standard header files, uses a method initialize() instead of using a constructor (== C style), uses plain pointers where smart pointers would have been preferred (== C style), uses void as a function argument (== C style).
A fine example how NOT to program. At least main() is of return type int.
Add Your Rating