TTK
Loading...
Searching...
No Matches
InitDictRandomly.h
Go to the documentation of this file.
1#pragma once
2
4#include <Wrapper.h>
5
6namespace ttk {
7 using Matrix = std::vector<std::vector<double>>;
8
9 class InitRandomDict : public Debug {
10
11 public:
13 this->setDebugMsgPrefix("InitRandomDict");
14 };
15
16 void execute(std::vector<ttk::DiagramType> &DictDiagrams,
17 const std::vector<ttk::DiagramType> &datas,
18 const int nbAtoms,
19 const int seed);
20 };
21} // namespace ttk
void setDebugMsgPrefix(const std::string &prefix)
Definition Debug.h:364
void execute(std::vector< ttk::DiagramType > &DictDiagrams, const std::vector< ttk::DiagramType > &datas, const int nbAtoms, const int seed)
TTK base package defining the standard types.
std::vector< std::vector< double > > Matrix