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
bd963d8d
Commit
bd963d8d
authored
Nov 07, 2016
by
Peter W. Draper
Browse files
Fix call to hydro_end_density
Only one argument now
parent
50329fc8
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/test27cells.c
View file @
bd963d8d
...
...
@@ -167,7 +167,7 @@ void zero_particle_fields(struct cell *c) {
*/
void
end_calculation
(
struct
cell
*
c
)
{
for
(
int
pid
=
0
;
pid
<
c
->
count
;
pid
++
)
{
hydro_end_density
(
&
c
->
parts
[
pid
]
,
1
);
hydro_end_density
(
&
c
->
parts
[
pid
]);
}
}
...
...
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