@areb0s/scip.js 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -350,7 +350,7 @@ export async function solve(problem, options = {}) {
350
350
  }
351
351
  const initialSolutionFile = '/solutions/initial.sol';
352
352
  scipModule.FS.writeFile(initialSolutionFile, solLines.join('\n'));
353
- commands.push(`read ${initialSolutionFile}`);
353
+ commands.push(`read solution ${initialSolutionFile}`);
354
354
  }
355
355
  commands.push("optimize");
356
356
  commands.push("display solution");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@areb0s/scip.js",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "SCIP Optimization Solver compiled to WebAssembly - LP, MIP, and MINLP support",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",