forum.alglib.net

ALGLIB forum
It is currently Thu Mar 28, 2024 2:06 pm

All times are UTC


Forum rules


1. This forum can be used for discussion of both ALGLIB-related and general numerical analysis questions
2. This forum is English-only - postings in other languages will be removed.



Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: LM Solver: C++ dll which is called by VBA (Example) + Quest.
PostPosted: Sun Nov 09, 2014 2:41 pm 
Offline

Joined: Thu Oct 09, 2014 5:44 pm
Posts: 3
Hello ALGLIB-community,

First of all I have to say I really love ALGLIB as it is a powerful tool, which can be used with minimal effort but has a great impact.
So I started using ALGLIB a few weeks ago. My scope in using ALGLIB is optimization in Excel. I started using the 2.6.0 VBA branch of ALGLIB and got it working neatly for me. However, in the long run I wanted to also solve constrained problems, which are - to my knowledge - not implemented in the ALGLIB version.
Therefore, I started toying arround with newest C++ version of ALGLIB and successfully created a dll, which I can call from Excel.
The implementation uses function pointers which are used in the dll in order to call the callback function.

I attached the example dll as well as the excel file, if someone is interested (see also code examples below). It is all a quick hack at the moment, so I apologize for some glitches. I am also no professional software developer as you will see.

However, I've got some questions:
I compared the performance of the VBA implementation and the dll version for a random equation system, which looks like this.
f(1) = x1 + 2 *x2
f(2) = 4*x1+x2^2-5
f(3) = x3+x1^3+x2^2
f(4) = x4*x3-x2*cos(x4)

In the long run I will not be able to implement a analytical Jacobian/Gradient because my actual problem does not allow this. Therefore, I also used only numerical approximations for this example problem. The dll includes two versions of the LM-Solver. One where only the function is supplied (mode 0) and the other where VBA also supplies the Jacobian (mode 1). The Jacobian is build by a simple forward difference scheme, as the Jacobian evaluation prooved time critical for my actual problem. This method seems to be sufficient as it converges well and faster compared to an Jacobian build by central difference.

For different starting values of x I got the following results:

For example:
x =(0,0,0,0)
Mode 0:
Solution Time: 0.99s
Function Calls: 34
Error: < 1E-4
Mode 1:
Solution Time: 0.58s
Function Calls: 21
Error: < 1E-4
VBA-LM:
Solution Time: 0.53s
Function Calls: 12
Error: < 1E-9

x =(10,10,10,10)
Mode 0:
Solution Time: 4s
Function Calls: 93
Error: < 1E-3
Mode 1:
Solution Time: 2.6s
Function Calls: 55
Error: < 1E-3
VBA-LM:
Solution Time: 1.18s
Function Calls: 26
Error: < 5E-13

I did some more comparisons, please see attached excel file. Sometimes only the LM-VBA version finds the actual minimum. Mode 0 for example does not converge at all for x=(1,3,7,5) and for x=(1000,1000,1000,1000) Mode 0 and Mode 1 only find a local minimum whereas LM-VBA finds the global minimum.
My conclusions are:
Mode 0 is slower because the Jacobian is evaluated by a more sophisticated numerical method.
Question 1: This is overkill for my problems, so is it possible to change the numerical method for the derivates?

Mode 1 and LM-VBA should essentially be the same, but they are not.
I checked: The Jacobian build in the very first step by both methods is the same.
However, the LM-VBA (2.6.0 branch of ALGLIB) converges faster with less steps.
So Question 2: Are there parameters which I can tweak in order to improve the C++ version of LM (3.8.2), i.e. get it working like the VBA version (2.6.0)?

Thanks for your help,
Best regards,
Johannes.

The VBA code looks like this:
Code:
Declare Function startoptimization Lib "C:\Users\Johannes\Desktop\TestPrograms\LM_DLL\TestDll\Debug\TestDll.dll" (ByVal funcpointer As Long, ByVal Mode As Integer) As Double
Declare Function setArraySize Lib "C:\Users\Johannes\Desktop\TestPrograms\LM_DLL\TestDll\Debug\TestDll.dll" (ByVal m As Integer) As Double
Declare Function setPointerToFunction Lib "C:\Users\Johannes\Desktop\TestPrograms\LM_DLL\TestDll\Debug\TestDll.dll" (ByVal funcpointer As Long) As Double

'This function is used to move arrays between VBA and the C++ dll
Declare Sub RtlMoveMemory Lib "kernel32" ( _
hpvDest As Any, _
hpvSource As Any, _
ByVal cbCopy As Long)

'Integer counting the function calls
Public FunctionCalls As Integer


'This is the testfunction which is called by the c++ dll and wraps arround the actual function which is evaluated
'The testfunction also moves the arrays between VBA and the dll
Function TestFunc(ByRef arr As Double, ByVal m As Long) As Long
    Dim f() As Double
    Dim x() As Double
    ReDim x(1 To m)
    ReDim f(1 To m)
   
    Call RtlMoveMemory( _
        x(1), _
        arr, _
        m * Len(x(1)))
   
    Call Func(x, f)
   
    Call RtlMoveMemory( _
        arr, _
        f(1), _
        m * Len(arr))
End Function

'This is the function which is evaluated. In this example the function dimension and the cells are fixed.
Function Func(x() As Double, f() As Double) As Boolean
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    If (x(1) <> Range("B2").Value) Then Range("B2").Value = x(1)
    If (x(2) <> Range("B3").Value) Then Range("B3").Value = x(2)
    If (x(3) <> Range("B4").Value) Then Range("B4").Value = x(3)
    If (x(4) <> Range("B5").Value) Then Range("B5").Value = x(4)
    Application.Calculation = xlCalculationAutomatic
    f(1) = Range("A2").Value
    f(2) = Range("A3").Value
    f(3) = Range("A4").Value
    f(4) = Range("A5").Value
   
    FunctionCalls = FunctionCalls + 1
   
    Application.ScreenUpdating = True
   
    Func = True
End Function

'Function to set the start values
Function StartX(ByRef arr As Double, ByVal m As Long) As Long
    Dim x() As Double
    ReDim x(1 To m)
    x(1) = Range("B2").Value
    x(2) = Range("B3").Value
    x(3) = Range("B4").Value
    x(4) = Range("B5").Value
   
    Call RtlMoveMemory( _
        arr, _
        x(1), _
        m * Len(arr))
End Function

'Sub for testing the optimization
Sub TestOptimization()
    Dim a As Variant
    Dim Mode As Long
    FunctionCalls = 0
    StartTime = Timer()
   
    Mode = Range("I5").Value
    'setting the dimension of the problem for the dll. Fixed at the moment.
    a = setArraySize(4)
    'setting the hook for the function which wraps arround the actual function being evaluated
    a = setPointerToFunction(AddressOf TestFunc)
    'starting the optimization
    a = startoptimization(AddressOf StartX, Mode)

    Range("E1").Value = Timer() - StartTime
    Range("E2").Value = FunctionCalls
End Sub



The main part of the dll looks like this:
Code:
#include<math.h>
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include "optimization.h"
#include <malloc.h>
#include "testDll.h"

typedef long (__stdcall * l_pF_al)(double*, long);

using namespace alglib;

//Function which can be called by the LM-Optimizer and wraps arround the callback function for VBA
void  _stdcall function1_fvec(const real_1d_array &x, real_1d_array &fi, void *ptr)
{
   double arr[4];
   int i;
   for( i = 0; i < sizeArray; i++){
      arr[i]=x[i];
   }

   pntrFunction(arr,sizeArray);
   
   for( i = 0; i < sizeArray; i++){
      fi[i]=arr[i];
   }
}

//Function which creates Jacobian by calling of function1_fvec
void function1_jac(const real_1d_array &x, real_1d_array &fi, real_2d_array &jac, void *ptr)
{
   real_1d_array xnew = "[0,0,0,0]";
   real_1d_array fnew = "[0,0,0,0]";
   int i;
   int j;
   for( i = 0; i < sizeArray; i++) {
      xnew[i] = x[i];
      fnew[i] = fi[i];
   }
   
   if(iteration==0){
      function1_fvec(x,fi,ptr);
      iteration = 0;
   }
   
   for( j = 0; j < sizeArray; j++){
      xnew[j] = x[j] +0.00001;
      function1_fvec(xnew,fnew,ptr);
      for( i = 0; i < sizeArray; i++) {
         jac [i][j] = (fnew[i]-fi[i])/0.00001;
      }
      xnew[j] = x[j];
   }
}


//Setting the Global Variable for the array size.
//Global Variables are used in order to keep the argument structure for function called by the optimizer
double _stdcall setArraySize(int m)
{
   sizeArray = m;
   return 0;
}

//Setting the pntr which hooks up the VBA function, which is evaluated
//Global Variables are used in order to keep the argument structure for function called by the optimizer
double _stdcall setPointerToFunction(l_pF_al pntr)
{
   pntrFunction = pntr;
   return 0;
}

//Setting the starting values for the optimization
double _stdcall setStartX(l_pF_al startX,int sizeArray, real_1d_array &x)
{
   double arr[4];
   int i;

   startX(arr,sizeArray);
   
   for( i = 0; i < sizeArray; i++){
      x[i]=arr[i];
   }
   
   return 0;
}

//Main function which controls the optimization by LM
double _stdcall startoptimization(l_pF_al startx, int mode)
{
    real_1d_array x = "[0,0,0,0]";
   real_1d_array s = "[1,1,1,1]";
   double func = 0;
   double epsg = 0.001;
    double epsf = 0;
    double epsx = 0;

   iteration = 0;
    ae_int_t maxits = 0;
    minlmstate state;
    minlmreport rep;

   //Setting Start-Values
   setStartX(startx,sizeArray, x);

   
   if (mode == 0){
    minlmcreatev(sizeArray, x, 0.001, state);
   minlmsetacctype(state,1);
    minlmsetcond(state, epsg, epsf, epsx, maxits);

   alglib::minlmoptimize(state, function1_fvec);
   }
   if (mode == 1) {
   minlmcreatevj(sizeArray, x, state);
   minlmsetacctype(state,1);
    minlmsetcond(state, epsg, epsf, epsx, maxits);
   //minlmsetscale(state, s);
   alglib::minlmoptimize(state, function1_fvec, function1_jac);
   }


    minlmresults(state, x, rep);
   return sizeArray;

}



Attachments:
TestFile.xlsm [24.61 KiB]
Downloaded 415 times
testDll.h [531 Bytes]
Downloaded 517 times
TestDll.cpp [2.27 KiB]
Downloaded 495 times
Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 51 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group