]> SALOME platform Git repositories - modules/yacs.git/blob - src/engine/Plugin/sasimpl.cxx
Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / engine / Plugin / sasimpl.cxx
1 //  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #include "sasimpl.hxx"
20
21 #include "saconst.h"
22
23 #include "solution.hxx"
24
25 SalomeTest::SalomeTest(Superviseur &t)
26 {
27     super = &t;
28     // distribution
29     dst = (SalomeEventLoop *) NULL;
30     dec = (LinearDecoder *) NULL;
31     mtr = (Maestro *) NULL;
32     // swarm
33     solv = (Simplex *) NULL;
34
35 }
36
37 SalomeTest::~SalomeTest(void)
38 {
39     // distribution
40     delete dst;
41     delete dec;
42     delete mtr;
43     // swarm
44     delete solv;
45 }
46
47 void SalomeTest::readFromFile(std::string rien)
48 {
49     std::vector<std::pair<double, double> > dom(NBGENE);
50     long    i;
51
52     // domaine de recherche
53     for (i=0; i<NBGENE; i++) {
54         dom[i].first = BORNEMIN;
55         dom[i].second = BORNEMAX;
56     }
57     // distribution
58     dst = new SalomeEventLoop(*super);
59     dec = new LinearDecoder(dom);
60     mtr = new Maestro((Decoder &) *dec, (Critere *) NULL, (Distrib &) *dst);
61     // swarm
62     solv = new Simplex(NBNODE, NBGENE, *mtr);
63     
64     solv->setStop(NBEVAL);
65 }
66
67 void SalomeTest::start(void)
68 {
69     solv->start();
70 }
71
72 void SalomeTest::next(void)
73 {
74     int     rien;
75     rien = solv->next();
76 }
77
78 void SalomeTest::finish(void)
79 {
80     Solution        *res;
81
82     solv->finish();
83     res = solv->solution();
84     dec->echo(*res);
85 }
86