Skip to content

Commit 5d85d44

Browse files
Update README.md
1 parent a10d8ed commit 5d85d44

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
# hyperBOB
22
Optimization using MPI parallel Latin hypercube sampling and BOBYQA
3+
4+
hyperBOB is a Fortran subroutine that uses MPI to run embarrassingly parallel instances of the derivative-free box-bounded optimizer BOBYQA. Each instance of BOBYQA will be called using a different initial condition, where the initial conditions are obtained from Latin hypersquares. All available processes in MPI_COMM_WORLD will be used, so the more MPI processes available, the greater the coverage. There is no guarantee it will locate a global optimum, which is highly dependent on the number of processes used, the dimension of the function being sampled, and the number of local optima in the hypersurface. It will return the best solution found, but all solutions are available in xMat_hyperBOB and fVal_hyperBOB.
5+
6+
hyperBOB_initialize must be called first to allocate xMat_hyperBOB and fVal_hyperBOB.
7+
8+
Once xMat_hyperBOB and fVal_hyperBOB are no longer needed, they can be deallocated by calling hyperBOB_cleanUp.
9+
10+
A simple test program is included in EggholderFcnTest.f90

0 commit comments

Comments
 (0)