-
Notifications
You must be signed in to change notification settings - Fork 78
Description
sometimes I get error:
/super_planner/src/super_core/corridor_generator.cpp", line 113, in SearchPolytopeOnPath [0x55b465146d81]
110: if ((path[first_id] - path[second_id]).norm() > seed_line_max_length_ * 1.5) {
111: fmt::print("first: {}\n second: {}\n seed line max: {}\n", path[first_id].transpose(),
112: path[second_id].transpose(), seed_line_max_length_);
> 113: throw std::runtime_error("seed line too long");
114: return false;
115: }
116: if (!GeneratePolytopeFromLine(seed_lines.back(), temp_poly)) {
#5 Object "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28", at 0x7f68f0eeb698, in __cxa_throw
#4 Object "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28", at 0x7f68f0eeb3e6, in std::terminate()
#3 Object "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28", at 0x7f68f0eeb37b, in
#2 Object "/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28", at 0x7f68f0edf8d0, in
#1 Source "/build/glibc-LcI20x/glibc-2.31/stdlib/abort.c", line 79, in abort [0x7f68f0b05858]
#0 Source "../sysdeps/unix/sysv/linux/raise.c", line 51, in raise [0x7f68f0b2600b]
Aborted (Signal sent by tkill() 1313467 1000)
why this error happen?