Small compilation fixes
This commit is contained in:
parent
6422e08208
commit
bab3c3b111
@ -1,4 +1,5 @@
|
|||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
#include <cstdio>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include "miniargs.hpp"
|
#include "miniargs.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
@ -90,9 +90,9 @@ namespace CosmoTool {
|
|||||||
|
|
||||||
Cell *getNearestNeighbour(const coords& x);
|
Cell *getNearestNeighbour(const coords& x);
|
||||||
|
|
||||||
void getNearestNeighbours(const coords& x, uint32_t N,
|
void getNearestNeighbours(const coords& x, uint32_t NumCells,
|
||||||
Cell **cells);
|
Cell **cells);
|
||||||
void getNearestNeighbours(const coords& x, uint32_t N,
|
void getNearestNeighbours(const coords& x, uint32_t NumCells,
|
||||||
Cell **cells,
|
Cell **cells,
|
||||||
CoordType *distances);
|
CoordType *distances);
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ namespace CosmoTool {
|
|||||||
Cell **sortingHelper;
|
Cell **sortingHelper;
|
||||||
|
|
||||||
Node *buildTree(Cell **cell0,
|
Node *buildTree(Cell **cell0,
|
||||||
uint32_t N,
|
uint32_t NumCells,
|
||||||
uint32_t depth,
|
uint32_t depth,
|
||||||
coords minBound,
|
coords minBound,
|
||||||
coords maxBound);
|
coords maxBound);
|
||||||
|
Loading…
Reference in New Issue
Block a user