Xmipp  v3.23.11-Nereus
parallel.h
Go to the documentation of this file.
1 /*
2 
3 CONDOR 1.06 - COnstrained, Non-linear, Direct, parallel Optimization
4  using trust Region method for high-computing load,
5  noisy functions
6 Copyright (C) 2004 Frank Vanden Berghen
7 
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation version 2
11 of the License.
12 
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17 
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 
22 If you want to include this tools in any commercial product,
23 you can contact the author at fvandenb@iridia.ulb.ac.be
24 
25 */
26 
27 #ifndef _PARALLEL_H_
28 #define _PARALLEL_H_
29 
30 void parallelImprove(InterPolynomial *p, int *_k, double _rho, double *_valueFk, Vector _Base);
31 void parallelInit(int _nnode, int _dim, ObjectiveFunction *_of);
32 void parallelFinish();
33 void startParallelThread();
34 
35 #endif
36 
void parallelInit(int _nnode, int _dim, ObjectiveFunction *_of)
Definition: parallel.cpp:40
void startParallelThread()
Definition: parallel.cpp:39
void parallelFinish()
Definition: parallel.cpp:41
Definition: Vector.h:37
void parallelImprove(InterPolynomial *p, int *_k, double _rho, double *_valueFk, Vector _Base)
Definition: parallel.cpp:36