Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
6afeba8b
Commit
6afeba8b
authored
Mar 23, 2016
by
Matthieu Schaller
Browse files
More const-correctness
parent
17295369
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/space.c
View file @
6afeba8b
...
...
@@ -305,8 +305,8 @@ void space_regrid(struct space *s, double cell_max, int verbose) {
*/
void
space_rebuild
(
struct
space
*
s
,
double
cell_max
,
int
verbose
)
{
ticks
tic
=
getticks
();
const
ticks
tic
=
getticks
();
/* Be verbose about this. */
// message( "re)building space..." ); fflush(stdout);
...
...
@@ -529,7 +529,7 @@ void space_rebuild(struct space *s, double cell_max, int verbose) {
*/
void
space_split
(
struct
space
*
s
,
struct
cell
*
cells
,
int
verbose
)
{
ticks
tic
=
getticks
();
const
ticks
tic
=
getticks
();
for
(
int
k
=
0
;
k
<
s
->
nr_cells
;
k
++
)
scheduler_addtask
(
&
s
->
e
->
sched
,
task_type_split_cell
,
task_subtype_none
,
k
,
...
...
@@ -555,7 +555,7 @@ void space_split(struct space *s, struct cell *cells, int verbose) {
void
space_parts_sort
(
struct
space
*
s
,
size_t
*
ind
,
size_t
N
,
int
min
,
int
max
,
int
verbose
)
{
ticks
tic
=
getticks
();
const
ticks
tic
=
getticks
();
/*Populate the global parallel_sort structure with the input data */
space_sort_struct
.
parts
=
s
->
parts
;
...
...
@@ -727,8 +727,8 @@ void space_do_parts_sort() {
*indices.
*
* @param s The #space.
* @param ind The indices with respect to which the parts are sorted.
* @param N The number of parts
* @param ind The indices with respect to which the
g
parts are sorted.
* @param N The number of
g
parts
* @param min Lowest index.
* @param max highest index.
* @param verbose Are we talkative ?
...
...
@@ -736,7 +736,7 @@ void space_do_parts_sort() {
void
space_gparts_sort
(
struct
space
*
s
,
size_t
*
ind
,
size_t
N
,
int
min
,
int
max
,
int
verbose
)
{
ticks
tic
=
getticks
();
const
ticks
tic
=
getticks
();
/*Populate the global parallel_sort structure with the input data */
space_sort_struct
.
gparts
=
s
->
gparts
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment