29 lines
318 B
C++
29 lines
318 B
C++
#ifndef HF_H
|
|
#define HF_H
|
|
|
|
class HFMultibody {
|
|
|
|
public:
|
|
|
|
void Init() {
|
|
/*
|
|
Build the tree
|
|
|
|
*/
|
|
}
|
|
|
|
void Compute() {
|
|
/*
|
|
Need to properly expand the nodes of the tree
|
|
Be able to store the results and errors
|
|
Responsible for allocating error?
|
|
*/
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif |