Skip to content
GitLab
Menu
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
7cd89b3c
Commit
7cd89b3c
authored
Dec 15, 2016
by
James Willis
Browse files
Removed entry struct from runner.h and placed it in its own header file.
parent
babb5691
Changes
3
Show whitespace changes
Inline
Side-by-side
src/Makefile.am
View file @
7cd89b3c
...
...
@@ -44,7 +44,7 @@ include_HEADERS = space.h runner.h queue.h task.h lock.h cell.h part.h const.h \
common_io.h single_io.h multipole.h map.h tools.h partition.h clocks.h parser.h
\
physical_constants.h physical_constants_cgs.h potential.h version.h
\
hydro_properties.h riemann.h threadpool.h cooling.h cooling_struct.h sourceterms.h
\
sourceterms_struct.h statistics.h memswap.h cache.h runner_doiact_vec.h
sourceterms_struct.h statistics.h memswap.h cache.h runner_doiact_vec.h
sort.h
# Common source files
AM_SOURCES
=
space.c runner.c queue.c task.c cell.c engine.c
\
...
...
src/runner.h
View file @
7cd89b3c
...
...
@@ -24,6 +24,7 @@
#define SWIFT_RUNNER_H
#include
"cache.h"
#include
"sort.h"
extern
const
double
runner_shift
[
13
][
3
];
extern
const
char
runner_flip
[
27
];
...
...
@@ -52,18 +53,6 @@ struct runner {
struct
cache
par_cache
;
};
/**
* @brief Entry in a list of sorted indices.
*/
struct
entry
{
/*! Distance on the axis */
float
d
;
/*! Particle index */
int
i
;
};
/* Function prototypes. */
void
runner_do_ghost
(
struct
runner
*
r
,
struct
cell
*
c
,
int
timer
);
void
runner_do_extra_ghost
(
struct
runner
*
r
,
struct
cell
*
c
,
int
timer
);
...
...
src/sort.h
0 → 100644
View file @
7cd89b3c
/*******************************************************************************
* This file is part of SWIFT.
* Copyright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
* Matthieu Schaller (matthieu.schaller@durham.ac.uk)
* 2015 Peter W. Draper (p.w.draper@durham.ac.uk)
* 2016 John A. Regan (john.a.regan@durham.ac.uk)
* Tom Theuns (tom.theuns@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
******************************************************************************/
#ifndef SWIFT_SORT_H
#define SWIFT_SORT_H
/**
* @brief Entry in a list of sorted indices.
*/
struct
entry
{
/*! Distance on the axis */
float
d
;
/*! Particle index */
int
i
;
};
#endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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