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
c812010e
Commit
c812010e
authored
Jul 10, 2017
by
Matthieu Schaller
Browse files
No need to specify the cell_split_size if we use the default value.
parent
aa97dbed
Changes
2
Hide whitespace changes
Inline
Side-by-side
examples/EAGLE_12/eagle_12.yml
View file @
c812010e
...
...
@@ -12,9 +12,6 @@ TimeIntegration:
time_end
:
1e-2
# The end time of the simulation (in internal units).
dt_min
:
1e-10
# The minimal time-step size of the simulation (in internal units).
dt_max
:
1e-4
# The maximal time-step size of the simulation (in internal units).
Scheduler
:
cell_split_size
:
400
# Parameters governing the snapshots
Snapshots
:
...
...
src/runner.c
View file @
c812010e
...
...
@@ -464,7 +464,7 @@ void runner_do_sort(struct runner *r, struct cell *c, int flags, int cleanup,
if
(
c
->
sorted
==
0
)
{
#ifdef SWIFT_DEBUG_CHECKS
if
(
xparts
!=
NULL
&&
c
->
nodeID
!=
engine_rank
)
error
(
"Have non-NULL xparts in foreign cell"
);
error
(
"Have non-NULL xparts in foreign cell"
);
#endif
/* And the individual sort distances if we are a local cell */
...
...
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