29 lines
474 B
C
29 lines
474 B
C
/**
|
|
* @file thor.h
|
|
*
|
|
* Meta-include for all of Tree High-Order Reduce.
|
|
*/
|
|
|
|
#ifndef THOR_THOR_H
|
|
#define THOR_THOR_H
|
|
|
|
#include "gnp.h"
|
|
#include "dfs.h"
|
|
#include "rbfs.h"
|
|
#include "single.h"
|
|
#include "thor_utils.h"
|
|
#include "kdtree.h"
|
|
|
|
#include "tree/bounds.h"
|
|
|
|
/**
|
|
* @namespace thor
|
|
*
|
|
* THOR tree algorithm parallelization framework.
|
|
*
|
|
* THOR is a mechanism for parallelizing dual-tree algorithms.
|
|
* See the wiki or research papers for more information.
|
|
*/
|
|
|
|
#endif
|