10#if defined(_WIN32) && !defined(_WIN64)
11#define dec_directives_win32
15 Integer,
Parameter :: NP = 150
16 Integer,
Parameter :: NV = 2*np
17 Integer,
Parameter :: NO = np-1
18 Integer,
Parameter :: ND = np*(np-1)/2
19 Integer,
dimension(ND) :: Rowmapi, RowmapJ
20 Integer,
dimension(NP,NP) :: rowmapk
42#ifdef dec_directives_win32
53 INTEGER,
Dimension(:),
Pointer :: cntvect
56 real*8 time0, time1, time2
57 Integer :: iter1, iter2
117 coi_error = max( coi_error,
coidef_optfile( cntvect,
'mp_polygon.opt' ) )
128#if defined(CONOPT_LICENSE_INT_1) && defined(CONOPT_LICENSE_INT_2) && defined(CONOPT_LICENSE_INT_3) && defined(CONOPT_LICENSE_TEXT)
129 coi_error = max( coi_error,
coidef_license( cntvect, conopt_license_int_1, conopt_license_int_2, conopt_license_int_3, conopt_license_text) )
132 If ( coi_error .ne. 0 )
THEN
134 write(*,*)
'**** Fatal Error while loading CONOPT Callback routines.'
136 call flog(
"Skipping Solve due to setup errors", 1 )
138 coi_error = max( coi_error,
coidef_itlim( cntvect, 50 ) )
142 time0 = omp_get_wtime()
144 time1 = omp_get_wtime() - time0
147 write(*,*)
'End of Polygon example with one thread. Return code=',coi_error
149 If ( coi_error /= 0 )
then
150 call flog(
"One thread: Errors encountered during solution", 1 )
151 elseif ( stacalls == 0 .or. solcalls == 0 )
then
152 call flog(
"One thread: Status or Solution routine was not called", 1 )
161 time0 = omp_get_wtime()
163 time2 = omp_get_wtime() - time0
166 write(*,*)
'End of Polygon example with multiple threads. Return code=',coi_error
168 If ( coi_error /= 0 )
then
169 call flog(
"Multi thread: Errors encountered during solution", 1 )
170 elseif ( stacalls == 0 .or. solcalls == 0 )
then
171 call flog(
"Multi thread: Status or Solution routine was not called", 1 )
177 if (
coi_free( cntvect ) /= 0 )
call flog(
"Error while freeing control vector", 1 )
180 write(*,
"('Time for single thread',f10.3)") time1
181 write(*,
"('Time for multi thread',f10.3)") time2
182 write(*,
"('Speedup ',f10.3)") time1/time2
183 write(*,
"('Efficiency ',f10.3)") time1/time2/omp_get_max_threads()
184 write(*,
"('Speedup/iteration ',f10.3)") time1/time2/iter1*iter2
185 write(*,
"('Efficiency/iteration ',f10.3)") time1/time2/iter1*iter2/omp_get_max_threads()
187 call flog(
"Successful Solve", 0 )
198Integer Function poly_readmatrix( lower, curr, upper, vsta, type, rhs, esta, &
199 colsta, rowno, value, nlflag, n, m, nz, &
201#ifdef dec_directives_win32
206 integer,
intent (in) :: n
207 integer,
intent (in) :: m
208 integer,
intent (in) :: nz
209 real*8,
intent (in out),
dimension(n) :: lower
210 real*8,
intent (in out),
dimension(n) :: curr
211 real*8,
intent (in out),
dimension(n) :: upper
212 integer,
intent (in out),
dimension(n) :: vsta
214 integer,
intent (out),
dimension(m) ::
type
215 integer,
intent (in out),
dimension(m) :: esta
217 real*8,
intent (in out),
dimension(m) :: rhs
218 integer,
intent (in out),
dimension(n+1) :: colsta
219 integer,
intent (out),
dimension(nz) :: rowno
220 integer,
intent (in out),
dimension(nz) :: nlflag
221 real*8,
intent (in out),
dimension(nz) ::
value
225 real*8,
parameter :: pi = 3.141592
245 curr(i) = 4.d0*i*(
np+1-i)/(1+
np)**2
382Integer Function poly_fdeval( x, g, jac, rowno, jcnm, mode, ignerr, errcnt, &
383 n, nz, thread, usrmem )
384#ifdef dec_directives_win32
389 integer,
intent (in) :: n
390 integer,
intent (in) :: rowno
391 integer,
intent (in) :: nz
392 real*8,
intent (in),
dimension(n) :: x
393 real*8,
intent (in out) :: g
394 real*8,
intent (in out),
dimension(n) :: jac
395 integer,
intent (in),
dimension(nz) :: jcnm
397 integer,
intent (in) :: mode
399 integer,
intent (in) :: ignerr
401 integer,
intent (in out) :: errcnt
403 integer,
intent (in) :: thread
414 if ( rowno ==
no+
nd+1 )
then
419 if ( mode .eq. 1 .or. mode .eq. 3 )
then
422 g = g + x(i+1)*x(i)*sin(x(
np+i+1)-x(
np+i))
429 if ( mode .eq. 2 .or. mode .eq. 3 )
then
435 s = 0.5d0*sin(x(
np+i+1)-x(
np+i))
436 jac(i+1) = jac(i+1) + x(i)*s
437 jac(i) = jac(i) + x(i+1)*s
438 c = 0.5d0*x(i+1)*x(i)*cos(x(
np+i+1)-x(
np+i))
439 jac(
np+i+1) = jac(
np+i+1) + c
440 jac(
np+i) = jac(
np+i) - c
444 Else if ( rowno >
no )
then
451 if ( mode .eq. 1 .or. mode .eq. 3 )
then
452 g = x(i)**2 + x(j)**2 -2.d0*x(i)*x(j)*cos(x(j+
np)-x(i+
np))
457 if ( mode .eq. 2 .or. mode .eq. 3 )
then
458 c = cos(x(j+
np)-x(i+
np))
459 jac(i) = 2.d0*(x(i)-x(j)*c)
460 jac(j) = 2.d0*(x(j)-x(i)*c)
461 s = 2.d0*sin(x(j+
np)-x(i+
np))*x(i)*x(j)
466 write(*,*)
'Fdeval called with rowno=',rowno
integer function std_solution(xval, xmar, xbas, xsta, yval, ymar, ybas, ysta, n, m, usrmem)
integer function std_status(modsta, solsta, iter, objval, usrmem)
integer function std_message(smsg, dmsg, nmsg, llen, usrmem, msgv)
integer function std_errmsg(rowno, colno, posno, msglen, usrmem, msg)
integer(c_int) function coidef_message(cntvect, coi_message)
define callback routine for handling messages returned during the solution process.
integer(c_int) function coidef_solution(cntvect, coi_solution)
define callback routine for returning the final solution values.
integer(c_int) function coidef_status(cntvect, coi_status)
define callback routine for returning the completion status.
integer(c_int) function coidef_readmatrix(cntvect, coi_readmatrix)
define callback routine for providing the matrix data to CONOPT.
integer(c_int) function coidef_errmsg(cntvect, coi_errmsg)
define callback routine for returning error messages for row, column or Jacobian elements.
integer(c_int) function coidef_fdeval(cntvect, coi_fdeval)
define callback routine for performing function and derivative evaluations.
integer(c_int) function coidef_optfile(cntvect, optfile)
define callback routine for defining an options file.
integer(c_int) function coidef_license(cntvect, licint1, licint2, licint3, licstring)
define the License Information.
integer(c_int) function coidef_itlim(cntvect, itlim)
define the Iteration Limit.
integer(c_int) function coidef_threads(cntvect, threads)
number of threads allowed internally in CONOPT.
integer(c_int) function coidef_numvar(cntvect, numvar)
defines the number of variables in the model.
integer(c_int) function coidef_numcon(cntvect, numcon)
defines the number of constraints in the model.
integer(c_int) function coidef_numnlnz(cntvect, numnlnz)
defines the Number of Nonlinear Nonzeros.
integer(c_int) function coidef_optdir(cntvect, optdir)
defines the Optimization Direction.
integer(c_int) function coidef_numnz(cntvect, numnz)
defines the number of nonzero elements in the Jacobian.
integer(c_int) function coidef_objcon(cntvect, objcon)
defines the Objective Constraint.
integer(c_int) function coi_create(cntvect)
initializes CONOPT and creates the control vector.
integer(c_int) function coi_free(cntvect)
frees the control vector.
integer(c_int) function coi_solve(cntvect)
method for starting the solving process of CONOPT.
program polygon
Main program. A simple setup and call of CONOPT.
integer, dimension(nd) rowmapj
integer, dimension(np, np) rowmapk
integer, dimension(nd) rowmapi
subroutine flog(msg, code)
integer function poly_readmatrix(lower, curr, upper, vsta, type, rhs, esta, colsta, rowno, value, nlflag, n, m, nz, usrmem)
Define information about the model.
integer recursive function poly_fdeval(x, g, jac, rowno, jcnm, mode, ignerr, errcnt, n, nz, thread, usrmem)
Compute nonlinear terms and non-constant Jacobian elements.