Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bp and salbp kernels #160

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e970084
Release 2.1.4 (#158)
Marvmann Feb 7, 2025
f16a04f
Added bin packing (BP) and simple assembly line balancing problem (SA…
Feb 12, 2025
49ddff8
Apply autopep8 formatting
actions-user Feb 12, 2025
c3a4a03
adjusted module and package names
Greeshmashaji Feb 17, 2025
fc0129e
Integrate Bin packing modules to quark
Greeshmashaji Feb 26, 2025
6b62031
Apply autopep8 formatting
actions-user Feb 26, 2025
ef84fe0
Integrate Bin packing modules to quark
Greeshmashaji Feb 26, 2025
36376cf
Apply autopep8 formatting
actions-user Feb 26, 2025
191c71d
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 26, 2025
a386973
Upgrading pyscipopt
Greeshmashaji Feb 26, 2025
c7905f3
Merge branch 'binpacking_and_mipsolver' of https://github.com/QUARK-f…
Greeshmashaji Feb 26, 2025
598f726
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 26, 2025
3d3ef36
adjusted test files
Greeshmashaji Feb 26, 2025
41c2a6b
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 26, 2025
9124571
Apply autopep8 formatting
actions-user Feb 26, 2025
004764c
Apply autopep8 formatting
actions-user Feb 26, 2025
609f1d4
removed issues from test files
Greeshmashaji Feb 27, 2025
34c67cd
Merge branch 'binpacking_and_mipsolver' of https://github.com/QUARK-f…
Greeshmashaji Feb 27, 2025
eada168
Apply autopep8 formatting
actions-user Feb 27, 2025
b956ee3
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 27, 2025
22cbcdc
Solved unitesting issues
Greeshmashaji Feb 27, 2025
dacd6d6
Merge branch 'binpacking_and_mipsolver' of https://github.com/QUARK-f…
Greeshmashaji Feb 27, 2025
b680f2d
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 27, 2025
dd85e17
Solved unitesting issues
Greeshmashaji Feb 27, 2025
b0f59db
Merge branch 'QUARK-framework:binpacking_and_mipsolver' into binpacki…
GreshmaShaji Feb 27, 2025
3aa04ae
merge conflict resolved
Feb 28, 2025
7f445ef
test
Feb 28, 2025
1f4d823
Apply autopep8 formatting
actions-user Feb 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,24 @@ jobs:
run: pip install -r .settings/requirements_full.txt

- name: Run Unit Tests
<<<<<<< HEAD
env:
PYTHONWARNINGS: "ignore::DeprecationWarning"
=======
<<<<<<< HEAD
run: python -m unittest discover . > unittest_results.log

- name: Upload Test Logs
if: always()
uses: actions/upload-artifact@v4
with:
name: unittest-logs
path: unittest_results.log

=======
env:
PYTHONWARNINGS: "ignore::DeprecationWarning"
>>>>>>> b0f59db31eecccbd83b1de2508c3f0b2db5290c5
>>>>>>> GreshmaShaji-binpacking_and_mipsolver

run: python -m unittest discover .
Loading
Loading