Skip to content

Commit

Permalink
Merge pull request #800 from dartsim/ipopt_dart-5.1
Browse files Browse the repository at this point in the history
Increase minimum required Ipopt version to 3.11.9
  • Loading branch information
jslee02 authored Oct 17, 2016
2 parents 851d60a + d4c72bd commit c332ec7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ else()
endif()

# IPOPT
find_package(IPOPT 3.11.4 QUIET)
find_package(IPOPT 3.11.9 QUIET)
if(IPOPT_FOUND)
message(STATUS "Looking for IPOPT - ${IPOPT_VERSION} found")
set(HAVE_IPOPT TRUE)
Expand Down
3 changes: 0 additions & 3 deletions unittests/testOptimizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,6 @@ TEST(Optimizer, BasicNlopt)
#ifdef HAVE_IPOPT
TEST(Optimizer, BasicIpopt)
{
dterr << "Ipopt does not pass this test yet. Please see #153.";
return;

std::shared_ptr<Problem> prob = std::make_shared<Problem>(2);

prob->setLowerBounds(Eigen::Vector2d(-HUGE_VAL, 0));
Expand Down

0 comments on commit c332ec7

Please sign in to comment.