-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
YangTian
committed
Oct 24, 2016
1 parent
78edb2a
commit fc04bba
Showing
2 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
############################################### | ||
# apps/Lemke_Fix | ||
file(GLOB Lemke_Fix_srcs "*.cpp") | ||
file(GLOB Lemke_Fix_hdrs "*.h") | ||
add_executable(Lemke_Fix ${Lemke_Fix_srcs} ${Lemke_Fix_hdrs}) | ||
target_link_libraries(Lemke_Fix dart) | ||
set_target_properties(Lemke_Fix PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#include <iostream> | ||
|
||
#include "dart/dart.h" | ||
#include "dart/lcpsolver/Lemke.h" | ||
|
||
int main(int argc, char* argv[]) | ||
{ | ||
Eigen::MatrixXd testA; | ||
Eigen::VectorXd testb; | ||
Eigen::VectorXd* f; | ||
int err; | ||
|
||
f = new Eigen::VectorXd(1); | ||
testA.resize(1,1); | ||
testA << 1; | ||
testb.resize(1); | ||
testb<< -1.5; | ||
std::cout<<"Matrix A is"<<std::endl; | ||
std::cout<<testA<<std::endl; | ||
std::cout<<"Vector b is"<<std::endl; | ||
std::cout<<testb<<std::endl; | ||
err = dart::lcpsolver::Lemke(testA,testb,f); | ||
std::cout<<"Lemke solution z is"<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"Lemke error type is "<<err<<std::endl; | ||
|
||
std::cout<<std::endl<<std::endl; | ||
std::cout<<"-----Validation-----"<<std::endl; | ||
std::cout<<"z: "<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"A*z+b: "<<std::endl; | ||
std::cout<<testA*(*f) + testb<<std::endl; | ||
|
||
std::cout<<"=========================================="<<std::endl; | ||
f = new Eigen::VectorXd(2); | ||
testA.resize(2,2); | ||
testA << 3.12, 0.1877, 0.1877, 3.254; | ||
testb.resize(2); | ||
testb<< -0.00662, -0.006711; | ||
std::cout<<"Matrix A is"<<std::endl; | ||
std::cout<<testA<<std::endl; | ||
std::cout<<"Vector b is"<<std::endl; | ||
std::cout<<testb<<std::endl; | ||
err = dart::lcpsolver::Lemke(testA,testb,f); | ||
std::cout<<"Lemke solution z is"<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"Lemke error type is "<<err<<std::endl; | ||
|
||
std::cout<<std::endl<<std::endl; | ||
std::cout<<"-----Validation-----"<<std::endl; | ||
std::cout<<"z: "<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"A*z+b: "<<std::endl; | ||
std::cout<<testA*(*f) + testb<<std::endl; | ||
|
||
std::cout<<"=========================================="<<std::endl; | ||
f = new Eigen::VectorXd(2); | ||
testA.resize(2,2); | ||
testA <<4.001 , -2 ,-2,3.999 ; | ||
testb.resize(2); | ||
testb<< -0.009819, -0.009798; | ||
std::cout<<"Matrix A is"<<std::endl; | ||
std::cout<<testA<<std::endl; | ||
std::cout<<"Vector b is"<<std::endl; | ||
std::cout<<testb<<std::endl; | ||
err = dart::lcpsolver::Lemke(testA,testb,f); | ||
std::cout<<"Lemke solution z is"<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"Lemke error type is "<<err<<std::endl; | ||
|
||
std::cout<<std::endl<<std::endl; | ||
std::cout<<"-----Validation-----"<<std::endl; | ||
std::cout<<"z: "<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"A*z+b: "<<std::endl; | ||
std::cout<<testA*(*f) + testb<<std::endl; | ||
|
||
std::cout<<"=========================================="<<std::endl; | ||
f = new Eigen::VectorXd(4); | ||
testA.resize(4,4); | ||
testA << | ||
3.999,0.9985, 1.001, -2, | ||
0.9985, 3.998, -2,0.9995, | ||
1.001, -2, 4.002, 1.001, | ||
-2,0.9995, 1.001, 4.001; | ||
|
||
|
||
|
||
testb.resize(4); | ||
testb<< | ||
-0.01008, | ||
-0.009494, | ||
-0.07234, | ||
-0.07177; | ||
|
||
std::cout<<"Matrix A is"<<std::endl; | ||
std::cout<<testA<<std::endl; | ||
std::cout<<"Vector b is"<<std::endl; | ||
std::cout<<testb<<std::endl; | ||
err = dart::lcpsolver::Lemke(testA,testb,f); | ||
std::cout<<"Lemke solution z is"<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"Lemke error type is "<<err<<std::endl; | ||
|
||
std::cout<<std::endl<<std::endl; | ||
std::cout<<"-----Validation-----"<<std::endl; | ||
std::cout<<"z: "<<std::endl; | ||
std::cout<<(*f)<<std::endl; | ||
std::cout<<"A*z+b: "<<std::endl; | ||
std::cout<<testA*(*f) + testb<<std::endl; | ||
} |