File tree Expand file tree Collapse file tree 3 files changed +1
-23
lines changed
Expand file tree Collapse file tree 3 files changed +1
-23
lines changed Original file line number Diff line number Diff line change @@ -574,10 +574,6 @@ class Problem:
574574 ----------
575575 Name : str
576576 Name of the model.
577- vars : list
578- List of variables in the problem.
579- constrs : list
580- List of constraints in the problem.
581577 ObjSense : sense
582578 Objective sense (MINIMIZE or MAXIMIZE).
583579 Obj : object
@@ -588,22 +584,6 @@ class Problem:
588584 Status of the problem after solving.
589585 IsMIP : bool
590586 Indicates if the problem is a Mixed Integer Program.
591- rhs : array-like
592- Right-hand side values for constraints.
593- row_sense : array-like
594- Senses for each constraint row.
595- row_pointers : array-like
596- Row pointers for constraint matrix.
597- column_indicies : array-like
598- Column indices for constraint matrix.
599- values : array-like
600- Values for constraint matrix.
601- lower_bound : array-like
602- Lower bounds for variables.
603- upper_bound : array-like
604- Upper bounds for variables.
605- var_type : array-like
606- Types of variables (continuous, integer, etc.).
607587 SolveTime : float
608588 Time taken to solve the problem.
609589 SolutionStats : dict
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ requires-python = ">=3.10"
3333dependencies = [
3434 " cudf==25.8.*,>=0.0.0a0" ,
3535 " cuopt-mps-parser==25.8.*,>=0.0.0a0" ,
36- " cupy-cuda12x>=12.0.0 " ,
36+ " cupy-cuda12x" ,
3737 " cuvs==25.8.*,>=0.0.0a0" ,
3838 " libcuopt==25.8.*,>=0.0.0a0" ,
3939 " numba-cuda>=0.14.0" ,
@@ -151,7 +151,6 @@ matrix-entry = "cuda_suffixed=true;use_cuda_wheels=true"
151151requires = [
152152 " cmake>=3.30.4" ,
153153 " cuopt-mps-parser==25.8.*,>=0.0.0a0" ,
154- " cupy-cuda12x>=12.0.0" ,
155154 " cython>=3.0.3" ,
156155 " libcuopt==25.8.*,>=0.0.0a0" ,
157156 " ninja" ,
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ license = { text = "Apache-2.0" }
3333requires-python = " >=3.10"
3434dependencies = [
3535 " cuopt==25.8.*,>=0.0.0a0" ,
36- " cupy-cuda12x>=12.0.0" ,
3736 " fastapi" ,
3837 " httpx" ,
3938 " jsonref==1.1.0" ,
You can’t perform that action at this time.
0 commit comments