Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
soesau committed Oct 2, 2024
1 parent 0149af8 commit 506f362
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ using FT = K::FT;

namespace PMP = CGAL::Polygon_mesh_processing;

int main(int argc, char** argv) {
int main(int, char**) {
const std::string source_fn = CGAL::data_file_path("meshes/bear.off");
const std::string target_fn = CGAL::data_file_path("meshes/bear_bis.off");
const std::string corr_fn = "data/bear_bear_bis.corr";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#ifdef CGAL_EIGEN3_ENABLED
#include <Eigen/Core>
#include <Eigen/src/Core/ArithmeticSequence.h>
#include <Eigen/Dense>
#include <Eigen/SVD>
#include <Eigen/Sparse>
Expand Down Expand Up @@ -48,11 +49,10 @@ namespace registration {

#ifdef CGAL_EIGEN3_ENABLED
using ScalarType = double;
using Vertex = Eigen::Vector<ScalarType, 3>;
using Vertices = Eigen::Matrix<ScalarType, Eigen::Dynamic, 3>;
using Faces = Eigen::Matrix<int, Eigen::Dynamic, 3>;
using Matrix = Eigen::Matrix<ScalarType, Eigen::Dynamic, Eigen::Dynamic>;
using Vector = Eigen::Vector<ScalarType, Eigen::Dynamic>;
using Vector = Eigen::VectorXd;

using SparseMat = Eigen::SparseMatrix<ScalarType>;
using SparseTriplet = Eigen::Triplet<ScalarType>;
Expand Down

0 comments on commit 506f362

Please sign in to comment.