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
Matthias Mayr
limbo
Commits
c9bfb6f0
Commit
c9bfb6f0
authored
Jun 28, 2018
by
Konstantinos Chatzilygeroudis
Browse files
Fix clang compilation issue
parent
2cd3a53c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/limbo/model/multi_gp.hpp
View file @
c9bfb6f0
...
...
@@ -315,7 +315,7 @@ namespace limbo {
}
for
(
int
i
=
0
;
i
<
_dim_out
;
i
++
)
{
_gp_models
[
i
].
save
<
A
>
(
archive
.
directory
()
+
"/gp_"
+
std
::
to_string
(
i
));
_gp_models
[
i
].
template
save
<
A
>(
archive
.
directory
()
+
"/gp_"
+
std
::
to_string
(
i
));
}
}
...
...
@@ -361,7 +361,7 @@ namespace limbo {
for
(
int
i
=
0
;
i
<
_dim_out
;
i
++
)
{
// do not recompute the individual GPs on their own
_gp_models
[
i
].
load
<
A
>
(
archive
.
directory
()
+
"/gp_"
+
std
::
to_string
(
i
),
false
);
_gp_models
[
i
].
template
load
<
A
>(
archive
.
directory
()
+
"/gp_"
+
std
::
to_string
(
i
),
false
);
}
if
(
recompute
)
...
...
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