File: vi.rst

package info (click to toggle)
siconos 4.3.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 82,496 kB
  • sloc: cpp: 159,693; ansic: 108,665; fortran: 33,248; python: 20,709; xml: 1,244; sh: 385; makefile: 226
file content (167 lines) | stat: -rw-r--r-- 4,598 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
.. index::
   single: Variational Inequality (VI)
   
.. contents::

.. _vi_problem:

Variational Inequality (VI)
***************************

Problem statement
=================

Given

* an integer :math:`n` , the dimension of the ambient space,

* a mapping :math:`F\colon \mathrm{I\!R}^n \rightarrow \mathrm{I\!R}^n`

* a set :math:`{X} \in {{\mathrm{I\!R}}}^n`

the variational inequality problem consists in finding a vector :math:`z\in{{\mathrm{I\!R}}}^n` , such that

.. math::

    \begin{equation*} F(z)^T(y-z) \geq 0,\quad \text{ for all } y \in X \end{equation*}

or equivalently,

.. math::

    \begin{equation*} - F(z) \in \mathcal{N}_X(z) \end{equation*}

where :math:`\mathcal{N}_X` is the normal cone to :math:`X` at :math:`z` .

*References* : :cite:`Facchinei.2003`, :cite:`Acary.Brogliato2008`.

Implementation in numerics
==========================

Structure to define the problem: :struct:`VariationalInequality`.

The generic driver for all VI is :func:`variationalInequality_driver()`.

solvers list  :enum:`VI_SOLVER`

.. _vi_solvers:

VI Available solvers
====================

Extra gradient (:enumerator:`SICONOS_VI_EG`)
--------------------------------------------

Extra Gradient solver forvariational inequality problem based on the De Saxce Formulation

driver :func:`variationalInequality_ExtraGradient()`

parameters:

* iparam[SICONOS_IPARAM_MAX_ITER] = 20000
* iparam[SICONOS_VI_IPARAM_ERROR_EVALUATION] = SICONOS_VI_ERROR_EVALUATION_LIGHT_WITH_FULL_FINAL
* iparam[SICONOS_VI_IPARAM_ERROR_EVALUATION_FREQUENCY] (set but not used)
* iparam[SICONOS_VI_IPARAM_LINESEARCH_METHOD] = SICONOS_VI_LS_ARMIJO
  
  allowed values :

  * SICONOS_VI_LS_ARMIJO : Armijo rule with Khotbotov ratio (default)
  * SICONOS_VI_LS_SOLODOV : Armijo rule with Solodov.Tseng ratio
  * SICONOS_VI_LS_HANSUN : Armijo rule with Han.Sun ratio

* iparam[SICONOS_VI_IPARAM_ACTIVATE_UPDATE] = 0;
* iparam[SICONOS_VI_IPARAM_DECREASE_RHO] = 0;

* dparam[SICONOS_DPARAM_TOL] = 1e-3, in-out parameter
* dparam[SICONOS_VI_DPARAM_RHO] = -1., in-out parameter
* dparam[SICONOS_VI_DPARAM_LS_TAU] = 2/3
* dparam[SICONOS_VI_DPARAM_LS_TAUINV] = 3/2
* dparam[SICONOS_VI_DPARAM_LS_L] = 0.9
* dparam[SICONOS_VI_DPARAM_LS_LMIN] = 0.3


Fixed-point  projection (:enumerator:`SICONOS_VI_FPP`)
------------------------------------------------------

Fixed Point Projection solver for variational inequality problem based on the De Saxce Formulation.

driver: :func:`variationalInequality_FixedPointProjection()`

parameters: same as :enumerator:`SICONOS_VI_EG.`

Hyperplane  projection (:enumerator:`SICONOS_VI_HP`)
----------------------------------------------------

driver: :func:`variationalInequality_HyperplaneProjection()`

parameters:

* iparam[SICONOS_IPARAM_MAX_ITER] = 20000
  
* iparam[SICONOS_VI_IPARAM_LS_MAX_ITER] = 100
  
* dparam[SICONOS_DPARAM_TOL] = 1e-3
  
* dparam[SICONOS_VI_DPARAM_LS_TAU] = 1.0, tau
  
* dparam[SICONOS_VI_DPARAM_SIGMA] = 0.8, sigma
  
out :
  
* iparam[SICONOS_IPARAM_ITER_DONE] : number of iterations
    

SICONOS_VI_BOX_QI (:enumerator:`SICONOS_VI_BOX_QI`)
---------------------------------------------------

Solver using the merit function proposed by Qi for box-constrained Newton QI LSA

id: 

driver : :func:`variationalInequality_box_newton_QiLSA()`

parameters:

* iparam[SICONOS_IPARAM_MAX_ITER] = 1000
* iparam[SICONOS_IPARAM_PREALLOC] = 0  
* iparam[SICONOS_IPARAM_STOPPING_CRITERION] = SICONOS_STOPPING_CRITERION_USER_ROUTINE;
  
* iparam[SICONOS_IPARAM_LSA_NONMONOTONE_LS] = 0
  
* iparam[SICONOS_IPARAM_LSA_NONMONOTONE_LS_M] = 0 (set but not used)
  
* iparam[SICONOS_IPARAM_LSA_FORCE_ARCSEARCH] = 1

* dparam[SICONOS_DPARAM_LSA_ALPHA_MIN] = 1e-16 
  
* dparam[SICONOS_DPARAM_TOL] = 1e-10
  
SICONOS_VI_BOX_AVI_LSA (:enumerator:`SICONOS_VI_BOX_AVI_LSA`)
-------------------------------------------------------------

driver : :func:`vi_box_AVI_LSA()`

parameters:

* iparam[SICONOS_IPARAM_MAX_ITER] = 100
* iparam[SICONOS_IPARAM_LSA_FORCE_ARCSEARCH] = 1
* iparam[SICONOS_IPARAM_LSA_NONMONOTONE_LS] = 0
  
* iparam[SICONOS_IPARAM_LSA_NONMONOTONE_LS_M] = 0 (set but not used)
* iparam[SICONOS_IPARAM_STOPPING_CRITERION] = SICONOS_STOPPING_CRITERION_USER_ROUTINE;
* dparam[SICONOS_DPARAM_TOL] = 1e-12
* dparam[SICONOS_DPARAM_LSA_ALPHA_MIN] = 1e-16 
  
internal solver : :enumerator:`SICONOS_RELAY_AVI_CAOFERRIS`

SICONOS_VI_BOX_PATH (:enumerator:`SICONOS_VI_BOX_PATH`)
-------------------------------------------------------

driver : :func:`vi_box_path()`

parameters:

* iparam[SICONOS_IPARAM_MAX_ITER] = 10000
  
* dparam[SICONOS_DPARAM_TOL] = 1e-12