Skip to content

Commit 4e62b7e

Browse files
committed
Rename include guards
1 parent e0114e1 commit 4e62b7e

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

include/bmm/bayesian_mixture_model.hpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
#ifndef BAYESIAN_BMM_H_
2-
#define BAYESIAN_BMM_H_
1+
#ifndef BAYESIAN_MIXTURE_MODEL_HPP_
2+
#define BAYESIAN_MIXTURE_MODEL_HPP_
33

44
#include <Eigen/Dense>
5-
#include <vector>
6-
#include <cmath>
7-
#include <ros/console.h>
5+
86
#include <geolib/datatypes.h>
97

8+
#include <cmath>
9+
#include <vector>
10+
1011
struct GMMParams
1112
{
1213
float alpha;
@@ -59,4 +60,4 @@ class MAPGMM
5960
void computeBoundingVolume(const Eigen::MatrixXd& data);
6061
};
6162

62-
#endif // BAYESIAN_BMM_H_
63+
#endif // BAYESIAN_MIXTURE_MODEL_HPP_

include/bmm/variational_gmm.hpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
#ifndef VARIATIONAL_GMM_H_
2-
#define VARIATIONAL_GMM_H_
1+
#ifndef VARIATIONAL_GMM_HPP_
2+
#define VARIATIONAL_GMM_HPP_
33

44
#include <Eigen/Dense>
5-
#include <vector>
6-
#include <cmath>
5+
76
#include <geolib/datatypes.h>
87

8+
#include <cmath>
9+
#include <vector>
10+
911
class VBGMM {
1012
public:
1113
VBGMM(int n_components = 2,
@@ -65,4 +67,4 @@ class VBGMM {
6567
double logGammaMultivariate(double a, int p) const;
6668
};
6769

68-
#endif // VARIATIONAL_GMM_H_
70+
#endif // VARIATIONAL_GMM_HPP_

package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<exec_depend>eigen</exec_depend>
2626
<exec_depend>libboost-math-dev</exec_depend>
2727
<exec_depend>libpcl-io</exec_depend>
28-
<exec_depend>rosconsole</exec_depend>
2928

3029
<test_depend>catkin_lint_cmake</test_depend>
3130

0 commit comments

Comments
 (0)