Skip to content

Commit 6d61f37

Browse files
committed
Fix gurobi doc links
1 parent 836b769 commit 6d61f37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/gurobi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ env.close()
6969

7070
### Parameter
7171

72-
For [solver-specific parameters](https://www.gurobi.com/documentation/current/refman/parameters.html#sec:Parameters), we provide `get_raw_parameter` and `set_raw_parameter` methods to get and set the parameters.
72+
For [solver-specific parameters](https://docs.gurobi.com/projects/optimizer/en/current/reference/parameters.html), we provide `get_raw_parameter` and `set_raw_parameter` methods to get and set the parameters.
7373

7474
```python
7575
model = gurobi.Model()
@@ -83,7 +83,7 @@ model.set_raw_parameter("TimeLimit", 10.0)
8383

8484
### Attribute
8585

86-
Gurobi supports a lot of [attributes](https://www.gurobi.com/documentation/current/refman/attributes.html#sec:Attributes) for the model, variable, and constraint. We provide methods to get or set the value of the attribute.
86+
Gurobi supports a lot of [attributes](https://docs.gurobi.com/projects/optimizer/en/current/reference/attributes.html) for the model, variable, and constraint. We provide methods to get or set the value of the attribute.
8787

8888
- Model attribute: `model.get_model_raw_attribute(name: str)` and `model.set_model_raw_attribute(name: str, value: Any)`
8989
- Variable attribute: `model.get_variable_raw_attribute(variable, name: str)` and `model.set_variable_raw_attribute(variable, name: str, value: Any)`

0 commit comments

Comments
 (0)