ABACUS develop
Atomic-orbital Based Ab-initio Computation at UStc
Loading...
Searching...
No Matches
batch.h
Go to the documentation of this file.
1#ifndef GRID_BATCH_H
2#define GRID_BATCH_H
3
4#include <vector>
5
6namespace Grid {
7namespace Batch {
8
49std::vector<int> maxmin(const double* grid, int* idx, int m, int m_thr);
50
51} // end of namespace Batch
52} // end of namespace Grid
53
54#endif
std::vector< int > maxmin(const double *grid, int *idx, int m, int m_thr)
Divide a set of points into batches by the "MaxMin" algorithm.
Definition batch.cpp:100
Definition batch.h:6