You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
568 B
19 lines
568 B
# MIPLearn: Extensible Framework for Learning-Enhanced Mixed-Integer Optimization
|
|
# Copyright (C) 2020-2021, UChicago Argonne, LLC. All rights reserved.
|
|
# Released under the modified BSD license. See COPYING.md for more details.
|
|
from typing import List
|
|
|
|
import pytest
|
|
|
|
from miplearn import InternalSolver, GurobiPyomoSolver, GurobiSolver
|
|
from miplearn.solvers.pyomo.xpress import XpressPyomoSolver
|
|
|
|
|
|
@pytest.fixture
|
|
def internal_solvers() -> List[InternalSolver]:
|
|
return [
|
|
GurobiPyomoSolver(),
|
|
GurobiSolver(),
|
|
XpressPyomoSolver(),
|
|
]
|