ometah-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[oMetah-devel] ometah ./ometah.pws communication/itsCommunicat...


From: Johann
Subject: [oMetah-devel] ometah ./ometah.pws communication/itsCommunicat...
Date: Fri, 11 Mar 2005 05:27:02 -0500

CVSROOT:        /cvsroot/ometah
Module name:    ometah
Branch:         
Changes by:     Johann <address@hidden> 05/03/11 10:27:02

Modified files:
        .              : ometah.pws 
        communication  : itsCommunicationClient.hpp 
                         itsCommunicationServer.hpp 
        problem        : itsProblem.hpp 

Log message:
        * minor corrections

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/ometah/ometah/ometah.pws.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/ometah/ometah/communication/itsCommunicationClient.hpp.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/ometah/ometah/communication/itsCommunicationServer.hpp.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/ometah/ometah/problem/itsProblem.hpp.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: ometah/communication/itsCommunicationClient.hpp
diff -u ometah/communication/itsCommunicationClient.hpp:1.1 
ometah/communication/itsCommunicationClient.hpp:1.2
--- ometah/communication/itsCommunicationClient.hpp:1.1 Mon Feb 21 09:38:59 2005
+++ ometah/communication/itsCommunicationClient.hpp     Fri Mar 11 10:27:02 2005
@@ -1,7 +1,7 @@
 /***************************************************************************
  *  itsCommunicationClientt.hpp
  *
- *  $Id: itsCommunicationClient.hpp,v 1.1 2005/02/21 09:38:59 nojhan Exp $
+ *  $Id: itsCommunicationClient.hpp,v 1.2 2005/03/11 10:27:02 nojhan Exp $
  *  Author : Johann Dréo <address@hidden>
  ****************************************************************************/
 
@@ -44,7 +44,6 @@
     a matrix with each dimension on a row.
    */
   vector<vector<double> > bounds();
-}
+};
 
 #endif
- 
Index: ometah/communication/itsCommunicationServer.hpp
diff -u ometah/communication/itsCommunicationServer.hpp:1.1 
ometah/communication/itsCommunicationServer.hpp:1.2
--- ometah/communication/itsCommunicationServer.hpp:1.1 Sun Mar  6 11:58:07 2005
+++ ometah/communication/itsCommunicationServer.hpp     Fri Mar 11 10:27:02 2005
@@ -1,5 +1,5 @@
 /***************************************************************************
- *  $Id: itsCommunicationServer.hpp,v 1.1 2005/03/06 11:58:07 nojhan Exp $
+ *  $Id: itsCommunicationServer.hpp,v 1.2 2005/03/11 10:27:02 nojhan Exp $
  *  Copyright : Université Paris 12 Val-de-Marne
  *  Author : Johann Dréo <address@hidden>
  ****************************************************************************/
@@ -43,6 +43,6 @@
     a matrix with each dimension on a row.
    */
   vector<vector<double> > bounds();
-}
+};
 
 #endif
Index: ometah/ometah.pws
diff -u ometah/ometah.pws:1.1 ometah/ometah.pws:1.2
--- ometah/ometah.pws:1.1       Thu Mar 10 18:06:43 2005
+++ ometah/ometah.pws   Fri Mar 11 10:27:02 2005
@@ -6,11 +6,11 @@
 clean before build=false
 
 [filenumbers]
-0=29
-1=1
-2=33
-3=26
-4=1
+0=106
+1=89
+2=226
+3=48
+4=63
 
 [filemarkers]
 0=
@@ -24,16 +24,10 @@
 filter.file.ignore.hidden=0
 filter.dir.ignore.hidden=0
 
-[filelist]
-0=/home/nojhan/travail/openMetaheuristic/source/ometah/metaheuristic/itsMetaheuristic.hpp
-1=/home/nojhan/travail/openMetaheuristic/source/ometah/common/itsSet.cpp
-2=/home/nojhan/travail/openMetaheuristic/source/ometah/common/itsSet.hpp
-3=/home/nojhan/travail/openMetaheuristic/source/ometah/interface/ometah.cpp
-4=/home/nojhan/travail/openMetaheuristic/source/ometah/SConstruct
-
 [Project Tree]
 0=0
-1=0:1
+1=0:0
+2=0:1
 
 [Symbol Tree]
 0=1
Index: ometah/problem/itsProblem.hpp
diff -u ometah/problem/itsProblem.hpp:1.6 ometah/problem/itsProblem.hpp:1.7
--- ometah/problem/itsProblem.hpp:1.6   Sun Mar  6 11:55:28 2005
+++ ometah/problem/itsProblem.hpp       Fri Mar 11 10:27:02 2005
@@ -1,5 +1,5 @@
 /***************************************************************************
- *  $Id: itsProblem.hpp,v 1.6 2005/03/06 11:55:28 nojhan Exp $
+ *  $Id: itsProblem.hpp,v 1.7 2005/03/11 10:27:02 nojhan Exp $
  *  Copyright 2005 Université Paris 12 Val-de-Marne
  *  Author : Johann Dréo <address@hidden>
  ****************************************************************************/
@@ -24,9 +24,11 @@
 #ifndef ITSPROBLEM
 #define ITSPROBLEM
 
-#include "../common/itsPoint.hpp"
+#include <string>
 
+#include "../common/itsPoint.hpp"
 
+using namespace std;
 
 //! The base classe for problems instances
 /*! 
@@ -163,7 +165,7 @@
     value of the point and return it.
    */
   virtual itsPoint objectiveFunction(itsPoint);
-}
+};
 
 
 //! Abstract factory base class for problem instances
@@ -172,8 +174,9 @@
  */
 class itsProblemFactory
 {
+public:
   //! Base method for instanciation in the abstract factory
   virtual itsProblem* create();
-}
+};
 
 #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]