From d1a6f8a18eb00a77b60da0aa8604001be957a63f Mon Sep 17 00:00:00 2001 From: Jurgen Lentz Date: Sat, 12 Oct 2024 15:29:22 +0200 Subject: [PATCH] fix tests once more --- src/rampl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rampl.cpp b/src/rampl.cpp index 06965a2..c655b9a 100644 --- a/src/rampl.cpp +++ b/src/rampl.cpp @@ -310,7 +310,7 @@ bool RAMPL::isRunning() const { return _impl.isRunning(); } -/*.. method:: AMPL.solve() +/*.. method:: AMPL.solve(problem, solver) Solve the current model. @@ -318,7 +318,7 @@ bool RAMPL::isRunning() const { :param string solver: The solver that will be used to solve the problem. :raises Error: If the underlying interpreter is not running. */ -void RAMPL::solve(std::string problem = "", std::string solver = "") { +void RAMPL::solve(std::string problem, std::string solver) { _impl.solve(problem, solver); //return _impl.solve(); // FIXME: does not print to stdout with R IDE on Windows }