From acc514f2c1aa23d5dfe02d935efa3a353435f084 Mon Sep 17 00:00:00 2001 From: Ivordir Date: Fri, 10 Mar 2023 18:54:06 -0500 Subject: [PATCH] Fix typo --- src/YALPS.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/YALPS.ts b/src/YALPS.ts index 70dfde0..0a5ae01 100644 --- a/src/YALPS.ts +++ b/src/YALPS.ts @@ -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 = { /** @@ -180,7 +179,7 @@ export type Solution = { * * `"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. *