Skip to content

Commit d356349

Browse files
authored
Merge pull request #497 from YoheiKakiuchi/fix_pc_test2
[test, test-pointcloud] fix eps of significant figure for 32bit system
2 parents fb41597 + 9d55af3 commit d356349

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

irteus/test/test-pointcloud.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
(require :unittest "lib/llib/unittest.l")
22

33
#-(or :x86_64 :aarch64)
4-
(setq *temp-eps* 1e-5)
4+
(setq *temp-eps* 1e-2) ;; 5 significant figure of 1000mm
55

66
#+(or :x86_64 :aarch64)
7-
(setq *temp-eps* 1e-8)
7+
(setq *temp-eps* 1e-9) ;; 12 significant figure of 1000mm
88

99
(init-unit-test)
1010

0 commit comments

Comments
 (0)