Skip to content

Commit

Permalink
clang
Browse files Browse the repository at this point in the history
  • Loading branch information
akleeman committed Jun 4, 2019
1 parent 2549157 commit 19014e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions include/albatross/Common
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,8 @@
#include "src/utils/map_utils.hpp"
#include "src/cereal/eigen.hpp"

#include "src/details/traits.hpp"
#include "src/details/has_any_macros.hpp"
#include "src/details/error_handling.hpp"

#endif
4 changes: 3 additions & 1 deletion include/albatross/src/models/gp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,9 @@ class GaussianProcessBase : public ModelBase<ImplType> {
auto _predict_impl(const std::vector<FeatureType> &features,
const GPFitType<FitFeatureType> &gp_fit,
PredictTypeIdentity<PredictType> &&) const
ALBATROSS_FAIL(FeatureType, "CovFunc is not defined for FeatureType and FitFeatureType");
ALBATROSS_FAIL(
FeatureType,
"CovFunc is not defined for FeatureType and FitFeatureType");

CovFunc get_covariance() const { return covariance_function_; }

Expand Down

0 comments on commit 19014e8

Please sign in to comment.