Refactor library structure
This commit is contained in:
15
pyclfs/RandomForest.h
Normal file
15
pyclfs/RandomForest.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef RANDOMFOREST_H
|
||||
#define RANDOMFOREST_H
|
||||
#include "PyClassifier.h"
|
||||
|
||||
namespace pywrap {
|
||||
class RandomForest : public PyClassifier {
|
||||
public:
|
||||
RandomForest();
|
||||
~RandomForest() = default;
|
||||
int getNumberOfEdges() const override;
|
||||
int getNumberOfStates() const override;
|
||||
int getNumberOfNodes() const override;
|
||||
};
|
||||
} /* namespace pywrap */
|
||||
#endif /* RANDOMFOREST_H */
|
Reference in New Issue
Block a user