Skip to content

Commit

Permalink
fix tests once more
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgen-lentz committed Oct 12, 2024
1 parent 130feb8 commit d1a6f8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rampl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,15 +310,15 @@ bool RAMPL::isRunning() const {
return _impl.isRunning();
}

/*.. method:: AMPL.solve()
/*.. method:: AMPL.solve(problem, solver)
Solve the current model.
:param string problem: The problem that will be solved.
: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
}
Expand Down

0 comments on commit d1a6f8a

Please sign in to comment.