File tree Expand file tree Collapse file tree 5 files changed +551
-326
lines changed Expand file tree Collapse file tree 5 files changed +551
-326
lines changed Original file line number Diff line number Diff line change 3
3
## Unreleased
4
4
### Added
5
5
- Added check for pt_PT locale in test_model.py
6
+ - Added methods for creating/adding/appending conjunction constraints
7
+ - Added methods for creating expression constraints without adding to problem
8
+ - Added methods for creating/adding/appending disjunction constraints
6
9
### Fixed
7
10
### Changed
8
11
### Removed
Original file line number Diff line number Diff line change @@ -1507,10 +1507,27 @@ cdef extern from "scip/cons_disjunction.h":
1507
1507
SCIP_Bool local,
1508
1508
SCIP_Bool modifiable,
1509
1509
SCIP_Bool dynamic)
1510
+
1510
1511
SCIP_RETCODE SCIPaddConsElemDisjunction(SCIP * scip,
1511
1512
SCIP_CONS * cons,
1512
1513
SCIP_CONS * addcons)
1513
1514
1515
+ cdef extern from " scip/cons_conjunction.h" :
1516
+ SCIP_RETCODE SCIPcreateConsConjunction(SCIP * scip,
1517
+ SCIP_CONS ** cons,
1518
+ const char * name,
1519
+ int nconss,
1520
+ SCIP_CONS ** conss,
1521
+ SCIP_Bool enforce,
1522
+ SCIP_Bool check,
1523
+ SCIP_Bool local,
1524
+ SCIP_Bool modifiable,
1525
+ SCIP_Bool dynamic)
1526
+
1527
+ SCIP_RETCODE SCIPaddConsElemConjunction(SCIP * scip,
1528
+ SCIP_CONS * cons,
1529
+ SCIP_CONS * addcons)
1530
+
1514
1531
cdef extern from " scip/cons_and.h" :
1515
1532
SCIP_RETCODE SCIPcreateConsAnd(SCIP* scip,
1516
1533
SCIP_CONS** cons,
You can’t perform that action at this time.
0 commit comments