Skip to content

Commit

Permalink
feat: add configuration for python qubo solver
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasBerger committed Aug 24, 2023
1 parent ffae40e commit f11219f
Show file tree
Hide file tree
Showing 10 changed files with 116 additions and 7,749 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.DS_Store
/.vscode
/.vrp
/bin/LKH
/bin/LKH
**/__pycache__
8 changes: 8 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name":"QUBO Solver",
"type":"python",
"request":"launch",
"program":"python/qubo_solver/src/main.py",
"args": [".vrp/att48_0.coo", "sim"],
"console":"integratedTerminal"
},
{
"type": "lldb",
"request": "launch",
Expand Down
2 changes: 1 addition & 1 deletion python/lkh-interface/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
parser = argparse.ArgumentParser(
prog='LKH-3 Interface',
description='A CLI Program to initiate solving CVRP files with LKH-3',
epilog='Made from Lucas Berger for scientific purposes')
epilog='Made by Lucas Berger for scientific purposes')


parser.add_argument('tsplib_file')
Expand Down
1 change: 1 addition & 0 deletions python/qubo_solver/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qubo-solver
Loading

0 comments on commit f11219f

Please sign in to comment.