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