Skip to content

Commit

Permalink
Rebuild all binaries on Windows using -static
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Nov 30, 2023
1 parent e52afac commit e46c4a5
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion global.properties → moeaframework.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ org.moeaframework.analysis.diagnostics.problems = GAA, HBV, \

## The Radar Waveform Design problem requires Matlab. By default, the command
## 'matlab' is used, but a custom path can be specified below if required.
#matlab.path = /usr/global/matlab/R2013a/bin/matlab
#matlab.path = /usr/global/matlab/R2013a/bin/matlab
Binary file modified native/HBV/bin/hbv.exe
Binary file not shown.
Binary file added native/LRGV/bin/lrgv.exe
Binary file not shown.
Binary file added native/LakeProblem/bin/lake.exe
Binary file not shown.
4 changes: 4 additions & 0 deletions native/Radar/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ SHARED_DIR = ../shared
C_FLAGS = -Wall -O3 -fPIC

ifeq ($(OS),Windows_NT)
<<<<<<< Updated upstream
=======
C_FLAGS += -static
>>>>>>> Stashed changes
EXT = dll
else
EXT = so
Expand Down
Binary file added native/Radar/bin/moeaframework.dll
Binary file not shown.
Binary file modified native/WDS/bin/BAK.exe
Binary file not shown.
Binary file modified native/WDS/bin/BIN.exe
Binary file not shown.
Binary file modified native/WDS/bin/BLA.exe
Binary file not shown.
Binary file modified native/WDS/bin/EXN.exe
Binary file not shown.
Binary file modified native/WDS/bin/FOS.exe
Binary file not shown.
Binary file modified native/WDS/bin/GOY.exe
Binary file not shown.
Binary file modified native/WDS/bin/HAN.exe
Binary file not shown.
Binary file modified native/WDS/bin/MOD.exe
Binary file not shown.
Binary file modified native/WDS/bin/NYT.exe
Binary file not shown.
Binary file modified native/WDS/bin/PES.exe
Binary file not shown.
Binary file modified native/WDS/bin/TLN.exe
Binary file not shown.
Binary file modified native/WDS/bin/TRN.exe
Binary file not shown.
Binary file added native/WDS/bin/epanet2.lib
Binary file not shown.
15 changes: 15 additions & 0 deletions src/main/java/org/moeaframework/benchmarks/Test.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.moeaframework.benchmarks;

import org.moeaframework.Executor;

public class Test {

public static void main(String[] args) {
new Executor()
.withProblem("HBV")
.withAlgorithm("NSGAII")
.withMaxEvaluations(10000)
.run();
}

}

0 comments on commit e46c4a5

Please sign in to comment.