Skip to content

Commit

Permalink
make sure types are defined after change in def.h
Browse files Browse the repository at this point in the history
  • Loading branch information
pfetsch committed Jan 6, 2024
1 parent 47e62f8 commit daaac6b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/sdpi/sdpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@
#include <assert.h>
#include <math.h>

#include "sdpi/sdpisolver.h"
#include "sdpi/sdpi.h"
#include "sdpi/sdpisolver.h"
#include "scipsdp/SdpVarfixer.h"
#include "sdpi/lapack_interface.h" /* to check feasibility if all variables are fixed during preprocessing */
#include "sdpi/sdpiclock.h"
Expand Down
1 change: 1 addition & 0 deletions src/sdpi/sdpi.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#include "blockmemshell/memory.h"
#include "scip/type_retcode.h"
#include "sdpi/type_sdpi.h"
#include "scip/type_message.h"

#ifdef __cplusplus
extern "C" {
Expand Down
1 change: 1 addition & 0 deletions src/sdpi/sdpisolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
#include "scip/def.h"
#include "blockmemshell/memory.h"
#include "scip/type_retcode.h"
#include "scip/type_message.h"
#include "sdpi/type_sdpi.h"
#include "sdpi/sdpiclock.h"

Expand Down
1 change: 1 addition & 0 deletions src/sdpi/sdpsolchecker.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

#include "scip/def.h"
#include "blockmemshell/memory.h"
#include "scip/type_retcode.h"

#ifdef __cplusplus
extern "C" {
Expand Down
3 changes: 2 additions & 1 deletion src/sdpi/solveonevarsdp.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@
* @author Marc Pfetsch
*/

#include "scip/pub_misc.h"
#include "sdpi/solveonevarsdp.h"
#include "scip/pub_misc.h"
#include "scip/pub_message.h"
#include "sdpi/lapack_interface.h"
#include "sdpi/arpack_interface.h"

Expand Down

0 comments on commit daaac6b

Please sign in to comment.