traveling-salesman-bangkok/src/solvers/index.js
Narongpol Kijrangsan f1054502b0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
first and last commit
2025-03-10 17:06:16 +07:00

7 lines
208 B
JavaScript

import depthFirstSearch from "./exhaustive/depthFirstSearch.worker";
import nearestNeighbor from "./heuristic-construction/nearestNeighbor.worker";
export default {
depthFirstSearch,
nearestNeighbor,
};