Skip to content
Snippets Groups Projects
Commit 071956d3 authored by Rainer Kuemmerle's avatar Rainer Kuemmerle Committed by Christoph Sprunk
Browse files

fixed warnings

parent 2356ec02
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ using namespace std; ...@@ -25,7 +25,7 @@ using namespace std;
//New version: have static Eigen variables and use pointers to these for compatibility //New version: have static Eigen variables and use pointers to these for compatibility
#define TAGME(name, tag) name##tag #define TAGME(name, tag) name##tag
#define M(matrix, rows, col) static Eigen::MatrixXd TAGME(matrix,_mem)(rows, col); static gsl_matrix* matrix=&TAGME(matrix,_mem); #define M(matrix, rows, col) static Eigen::MatrixXd TAGME(matrix,_mem)(rows, col); static gsl_matrix* matrix=&TAGME(matrix,_mem);
#define MF(matrix) #define MF(matrix) (void)(matrix)
int gpc_solve(int K, const std::vector<gpc_corr>& c, int gpc_solve(int K, const std::vector<gpc_corr>& c,
......
...@@ -160,8 +160,8 @@ void sm_icp(struct sm_params*params, struct sm_result*res) { ...@@ -160,8 +160,8 @@ void sm_icp(struct sm_params*params, struct sm_result*res) {
//egsl_print_spectrum("cov0_x", cov0_x); //egsl_print_spectrum("cov0_x", cov0_x);
val fim = ld_fisher0(laser_ref); val fim = ld_fisher0(laser_ref);
val ifim = inv(fim);
egsl_print("fim", fim); egsl_print("fim", fim);
//val ifim = inv(fim);
//egsl_print_spectrum("ifim", ifim); //egsl_print_spectrum("ifim", ifim);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment