Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivordir committed Mar 10, 2023
1 parent 3cf187b commit acc514f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/YALPS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ export type SolutionStatus =

/**
* The solution object returned by the solver.
* It includes a status, the final objective result, and the variable amounts.
*/
export type Solution<VariableKey = string> = {
/**
Expand All @@ -180,7 +179,7 @@ export type Solution<VariableKey = string> = {
*
* `"timedout"` indicates that the solver exited early for an integer problem.
* This may happen if the solver takes too long and exceeds the `timeout` option.
* Similarly, the number of branch and cut iterations may exceeed `maxIterations` as set in the options.
* Similarly, the number of branch and cut iterations may exceed `maxIterations` as set in the options.
* In both of these cases, the current sub-optimal solution, if any, is returned.
* If `result` is `NaN`, then this means no integer solutions were found before the solver timed out.
*
Expand Down

0 comments on commit acc514f

Please sign in to comment.