Skip to content

Commit

Permalink
minor bug fixes in the new p2p error eval and remove boost dep in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cheneyuwu committed Oct 27, 2021
1 parent 57795a1 commit 0326248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
16 changes: 0 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,6 @@ STEAM (Simultaneous Trajectory Estimation and Mapping) Engine is an optimization
sudo apt -q -y install build-essential cmake libomp-dev
```

### Install Boost

```bash
# using APT
sudo apt -q -y install libboost-all-dev

# OR from source
WORKSPACE=~/workspace # choose your own workspace directory
mkdir -p ${WORKSPACE}/boost && cd $_
wget --no-verbose https://boostorg.jfrog.io/artifactory/main/release/1.71.0/source/boost_1_71_0.tar.gz
tar xzf boost_1_71_0.tar.gz && cd boost_1_71_0
./bootstrap.sh --with-python=$(which python3)
./b2 cxxflags="-std=gnu++17" install
ldconfig
```

### Install Eigen (>=3.3.7)

```bash
Expand Down
4 changes: 2 additions & 2 deletions include/steam/evaluator/samples/PointToPointErrorEval2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ namespace steam {
class PointToPointErrorEval2 : public ErrorEvaluator<3, 6>::type {
public:
/// Convenience typedefs
typedef boost::shared_ptr<PointToPointErrorEval2> Ptr;
typedef boost::shared_ptr<const PointToPointErrorEval2> ConstPtr;
typedef std::shared_ptr<PointToPointErrorEval2> Ptr;
typedef std::shared_ptr<const PointToPointErrorEval2> ConstPtr;

//////////////////////////////////////////////////////////////////////////////////////////////
/// \brief Constructor
Expand Down

0 comments on commit 0326248

Please sign in to comment.