Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_io
Commits
14a7eed8
Commit
14a7eed8
authored
Aug 30, 2021
by
incardon
Browse files
Fixing IO
parent
d8ec1fd3
Pipeline
#3474
failed with stages
in 5 minutes and 13 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/VTKWriter/VTKWriter_grids_util.hpp
View file @
14a7eed8
...
...
@@ -531,7 +531,7 @@ struct meta_prop
// if there is the next element
while
(
it
.
isNext
())
{
prop_write_out
<
vtk_dims
<
T
>::
value
,
T
>::
template
write
<
decltype
(
vg
),
decltype
(
it
),
I
>(
stream_out
,
vg
,
k
,
it
,
ft
);
prop_write_out
<
vtk_dims
<
T
>::
value
!=
1
,
T
>::
template
write
<
decltype
(
vg
),
decltype
(
it
),
I
>(
stream_out
,
vg
,
k
,
it
,
ft
);
// increment the iterator and counter
++
it
;
...
...
@@ -773,7 +773,7 @@ struct meta_prop_new
// if there is the next element
while
(
it
.
isNext
())
{
prop_write_out_new
<
vtk_dims
<
T
>::
value
,
T
>::
template
write
<
decltype
(
vg
),
decltype
(
it
),
I
>(
v_outToEncode_
,
vg
,
k
,
it
,
ft
);
prop_write_out_new
<
vtk_dims
<
T
>::
value
!=
1
,
T
>::
template
write
<
decltype
(
vg
),
decltype
(
it
),
I
>(
v_outToEncode_
,
vg
,
k
,
it
,
ft
);
// increment the iterator and counter
++
it
;
...
...
src/VTKWriter/is_vtk_writable.hpp
View file @
14a7eed8
...
...
@@ -54,7 +54,7 @@ struct vtk_dims
//! dimensionality of the vtk property (scalar)
enum
{
value
=
0
value
=
1
};
};
...
...
Write
Preview
Markdown
is supported
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