mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in LP solver call.
This commit is contained in:
parent
72ecdac71d
commit
63a703e708
@ -1,4 +1,4 @@
|
||||
import { Solve } from 'javascript-lp-solver';
|
||||
import solver from 'javascript-lp-solver';
|
||||
import { observable } from "mobx";
|
||||
import { Difficulties, Item, NpcType, SectionIds } from "../domain";
|
||||
import { huntMethodStore } from "./HuntMethodStore";
|
||||
@ -61,7 +61,7 @@ class HuntOptimizerStore {
|
||||
}
|
||||
}
|
||||
|
||||
const result = Solve({
|
||||
const result = solver.Solve({
|
||||
optimize: 'time',
|
||||
opType: 'min',
|
||||
constraints,
|
||||
|
Loading…
Reference in New Issue
Block a user