You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,13 @@ alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>
19
19
This repository includes the Matlab code that was used in the ICRA 2016 paper and the extended method in C++ that is presented in the RCIM journal.
20
20
21
21
The C++ implementation includes performance constraints in both translational and rotational axes. It also includes 3 ways of calculating them:
22
-
⋅⋅* Serial: Each direction is calculated after the other. It might take a while
23
-
⋅⋅* Parallel: Each direction is calculated in its own thread worker. Function returns when all calculations are over. This usually works in less than 1ms. Better have a multi-thread CPU.
24
-
⋅⋅* Parallel non-blocking: Same as above but the function returns immediately. This can work in slow computers. WARNING! Be very careful when you use it, synchronization issues of the constraint forces may arise.
22
+
* Serial: Each direction is calculated after the other. It might take a while
23
+
* Parallel: Each direction is calculated in its own thread worker. Function returns when all calculations are over. This usually works in less than 1ms. Better have a multi-thread CPU.
24
+
* Parallel non-blocking: Same as above but the function returns immediately. This can work in slow computers. WARNING! Be very careful when you use it, synchronization issues of the constraint forces may arise.
0 commit comments