Skip to content

Commit 59f7184

Browse files
author
Fotis Dimeas
authored
Update README.md
1 parent 354fa8c commit 59f7184

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ alt="IMAGE ALT TEXT HERE" width="240" height="180" border="10" /></a>
1919
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.
2020

2121
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.
2525

2626
# Usage:
2727
## C++
28-
> g++ demo.cpp performanceConstraints.cpp Jacobian.cpp -o demo -larmadillo -lpthread -std=c++11
28+
> g++ demo.cpp performanceConstraints.cpp Jacobian.cpp -o demo -larmadillo -pthread -std=c++11
2929
3030
The Jacobian matrix that is provided in symbolic form is for the KUKA LWR 4+
3131

0 commit comments

Comments
 (0)