Skip to content
Snippets Groups Projects
RandomSolution.h 568 B
Newer Older
  • Learn to ignore specific revisions
  • /**
     * DESCRIPTION OF THE FILE
     *
     * @author Michal Kravčenko
     * @date 25.2.19 -
     */
    
    #ifndef LIB4NEURO_RANDOMSOLUTION_H
    #define LIB4NEURO_RANDOMSOLUTION_H
    
    #include "../settings.h"
    #include "../constants.h"
    #include "LearningMethod.h"
    
    namespace lib4neuro {
    
        class RandomSolution : public lib4neuro::LearningMethod {
    
        protected:
        public:
    
            RandomSolution();
    
            ~RandomSolution();
    
    
    Martin Beseda's avatar
    Martin Beseda committed
            void optimize(lib4neuro::ErrorFunction& ef,
                          std::ofstream* ofs = nullptr) override;