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
TurTLE
TurTLE
Commits
92fe4885
Commit
92fe4885
authored
Nov 02, 2017
by
Cristian Lalescu
Browse files
change MaxNbRhs to 10
We will never use AdamsBashforth with more than 10 steps.
parent
1e0c8cd2
Pipeline
#20948
passed with stage
in 10 minutes and 19 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bfps/cpp/particles/p2p_distr_mpi.hpp
View file @
92fe4885
...
...
@@ -19,7 +19,7 @@
template
<
class
partsize_t
,
class
real_number
>
class
p2p_distr_mpi
{
protected:
static
const
int
MaxNbRhs
=
10
0
;
static
const
int
MaxNbRhs
=
10
;
enum
MpiTag
{
TAG_NB_PARTICLES
,
...
...
bfps/cpp/particles/particles_distr_mpi.hpp
View file @
92fe4885
...
...
@@ -17,7 +17,7 @@
template
<
class
partsize_t
,
class
real_number
>
class
particles_distr_mpi
{
protected:
static
const
int
MaxNbRhs
=
10
0
;
static
const
int
MaxNbRhs
=
10
;
enum
MpiTag
{
TAG_LOW_UP_NB_PARTICLES
,
...
...
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