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 SAS API interface #729

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
6 changes: 6 additions & 0 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,11 @@ jobs:
- name: Install coptpy
run: |
pip install coptpy
- name: Install saspy
run: |
pip install saspy
- name: Install swat
run: |
pip install swat
- name: Test with pulptest
run: pulptest
3 changes: 3 additions & 0 deletions pulp/apis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from .xpress_api import *
from .highs_api import *
from .copt_api import *
from .sas_api import *
from .core import *

_all_solvers = [
Expand All @@ -35,6 +36,8 @@
COPT,
COPT_DLL,
COPT_CMD,
SAS94,
SASCAS,
]

import json
Expand Down
Loading