Skip to content

Commit 9a907a7

Browse files
committed
Merge pull request #6 from RainerKuemmerle/csm_eigen
fix linking of debug build (Rainer Kuemmerle)
2 parents abfb636 + 62450a2 commit 9a907a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/csm/math_utils_gsl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
/** Returns Fisher's information matrix. You still have to multiply
3535
it by (1/sigma^2). */
36-
val ld_fisher0(LDP ld);
36+
//val ld_fisher0(LDP ld);
3737

3838

3939
#endif

src/icp/icp.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ void sm_icp(struct sm_params*params, struct sm_result*res) {
155155
res->dx_dy1_m = egsl_v2gslm(dx_dy1);
156156
res->dx_dy2_m = egsl_v2gslm(dx_dy2);
157157

158-
if(0) {
158+
//if(0) {
159159
//egsl_print("cov0_x", cov0_x);
160160
//egsl_print_spectrum("cov0_x", cov0_x);
161161

162-
val fim = ld_fisher0(laser_ref);
163-
egsl_print("fim", fim);
162+
//val fim = ld_fisher0(laser_ref);
163+
//egsl_print("fim", fim);
164164
//val ifim = inv(fim);
165165
//egsl_print_spectrum("ifim", ifim);
166-
}
166+
//}
167167
}
168168

169169
res->error = best_error;

0 commit comments

Comments
 (0)