Skip to content

Commit 59932a7

Browse files
committed
Update solver headers
1 parent 00fa5b7 commit 59932a7

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

thirdparty/solvers/copt/copt.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ extern "C" {
2121

2222
#define COPT_VERSION_MAJOR 7
2323
#define COPT_VERSION_MINOR 1
24-
#define COPT_VERSION_TECHNICAL 1
24+
#define COPT_VERSION_TECHNICAL 3
2525

2626

2727
/*
@@ -546,6 +546,7 @@ int COPT_CALL COPT_GetIndicator(copt_prob *prob,
546546

547547
int COPT_CALL COPT_GetElem(copt_prob *prob, int iCol, int iRow, double *p_elem);
548548
int COPT_CALL COPT_SetElem(copt_prob *prob, int iCol, int iRow, double newElem);
549+
int COPT_CALL COPT_SetElems(copt_prob *prob, int nelem, const int *cols, const int *rows, const double *elems);
549550

550551
int COPT_CALL COPT_GetPSDElem(copt_prob *prob, int iCol, int iRow, int *p_idx);
551552
int COPT_CALL COPT_SetPSDElem(copt_prob *prob, int iCol, int iRow, int newIdx);

thirdparty/solvers/gurobi/gurobi_c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ typedef struct _GRBenv GRBenv;
4242

4343
#define GRB_VERSION_MAJOR 11
4444
#define GRB_VERSION_MINOR 0
45-
#define GRB_VERSION_TECHNICAL 1
45+
#define GRB_VERSION_TECHNICAL 2
4646

4747
/* Default and max priority for Compute Server jobs */
4848

thirdparty/solvers/mosek/mosek_linux.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
#include <stdint.h>
2424

2525
#define MSK_VERSION_MAJOR 10
26-
#define MSK_VERSION_MINOR 1
27-
#define MSK_VERSION_REVISION 28
26+
#define MSK_VERSION_MINOR 2
27+
#define MSK_VERSION_REVISION 0
2828
#define MSK_VERSION_STATE ""
2929

3030
#define MSK_INFINITY 1.0e30

thirdparty/solvers/mosek/mosek_win.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/******************************************************************************
55
** Module : mosek.h
66
**
7-
** Generated 2023
7+
** Generated 2024
88
**
99
** Copyright (c) MOSEK ApS, Denmark.
1010
**
@@ -23,8 +23,8 @@
2323
#include <stdint.h>
2424

2525
#define MSK_VERSION_MAJOR 10
26-
#define MSK_VERSION_MINOR 1
27-
#define MSK_VERSION_REVISION 20
26+
#define MSK_VERSION_MINOR 2
27+
#define MSK_VERSION_REVISION 0
2828
#define MSK_VERSION_STATE ""
2929

3030
#define MSK_INFINITY 1.0e30

0 commit comments

Comments
 (0)