test added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@1696 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
f75cc11dfd
commit
e6d874bc1b
4 changed files with 148 additions and 1 deletions
|
|
@ -111,7 +111,7 @@ public:
|
||||||
* @return true if there is again a neighbor to explore
|
* @return true if there is again a neighbor to explore
|
||||||
*/
|
*/
|
||||||
virtual bool cont(EOT & _solution) {
|
virtual bool cont(EOT & _solution) {
|
||||||
return (maxIndex > 1) ;
|
return (maxIndex > 0) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,8 @@ LINK_DIRECTORIES(${PARADISEO_EO_BIN_DIR}/lib)
|
||||||
### 3) Define your targets and link the librairies
|
### 3) Define your targets and link the librairies
|
||||||
######################################################################################
|
######################################################################################
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
SET (TEST_LIST
|
SET (TEST_LIST
|
||||||
t-moNeighbor
|
t-moNeighbor
|
||||||
t-moBitNeighbor
|
t-moBitNeighbor
|
||||||
|
|
@ -38,6 +40,8 @@ SET (TEST_LIST
|
||||||
t-moNeighborComparator
|
t-moNeighborComparator
|
||||||
t-moSolNeighborComparator
|
t-moSolNeighborComparator
|
||||||
t-moTrueContinuator
|
t-moTrueContinuator
|
||||||
|
t-moRndWithoutReplNeighborhood
|
||||||
|
t-moRndWithReplNeighborhood
|
||||||
)
|
)
|
||||||
|
|
||||||
FOREACH (test ${TEST_LIST})
|
FOREACH (test ${TEST_LIST})
|
||||||
|
|
|
||||||
73
branches/newMo/test/t-moRndWithReplNeighborhood.cpp
Normal file
73
branches/newMo/test/t-moRndWithReplNeighborhood.cpp
Normal file
|
|
@ -0,0 +1,73 @@
|
||||||
|
/*
|
||||||
|
<t-moRndWithReplNeighborhood.cpp>
|
||||||
|
Copyright (C) DOLPHIN Project-Team, INRIA Lille - Nord Europe, 2006-2010
|
||||||
|
|
||||||
|
Sébastien Verel, Arnaud Liefooghe, Jérémie Humeau
|
||||||
|
|
||||||
|
This software is governed by the CeCILL license under French law and
|
||||||
|
abiding by the rules of distribution of free software. You can ue,
|
||||||
|
modify and/ or redistribute the software under the terms of the CeCILL
|
||||||
|
license as circulated by CEA, CNRS and INRIA at the following URL
|
||||||
|
"http://www.cecill.info".
|
||||||
|
|
||||||
|
In this respect, the user's attention is drawn to the risks associated
|
||||||
|
with loading, using, modifying and/or developing or reproducing the
|
||||||
|
software by the user in light of its specific status of free software,
|
||||||
|
that may mean that it is complicated to manipulate, and that also
|
||||||
|
therefore means that it is reserved for developers and experienced
|
||||||
|
professionals having in-depth computer knowledge. Users are therefore
|
||||||
|
encouraged to load and test the software's suitability as regards their
|
||||||
|
requirements in conditions enabling the security of their systems and/or
|
||||||
|
data to be ensured and, more generally, to use and operate it in the
|
||||||
|
same conditions as regards security.
|
||||||
|
The fact that you are presently reading this means that you have had
|
||||||
|
knowledge of the CeCILL license and that you accept its terms.
|
||||||
|
|
||||||
|
ParadisEO WebSite : http://paradiseo.gforge.inria.fr
|
||||||
|
Contact: paradiseo-help@lists.gforge.inria.fr
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <neighborhood/moRndWithReplNeighborhood.h>
|
||||||
|
#include <neighborhood/moBitNeighbor.h>
|
||||||
|
|
||||||
|
#include "moTestClass.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
|
||||||
|
std::cout << "[t-moRndWithReplNeighborhood] => START" << std::endl;
|
||||||
|
|
||||||
|
unsigned int a, b;
|
||||||
|
eoBit<int> sol;
|
||||||
|
moBitNeighbor<int> n;
|
||||||
|
|
||||||
|
moRndWithReplNeighborhood< moBitNeighbor<int> > test(3);
|
||||||
|
moRndWithReplNeighborhood< moBitNeighbor<int> > test2(0);
|
||||||
|
|
||||||
|
assert(test.hasNeighbor(sol));
|
||||||
|
assert(!test2.hasNeighbor(sol));
|
||||||
|
|
||||||
|
test.init(sol,n);
|
||||||
|
|
||||||
|
for(unsigned int i=0; i<100; i++){
|
||||||
|
|
||||||
|
a=n.index();
|
||||||
|
test.next(sol,n);
|
||||||
|
b=n.index();
|
||||||
|
|
||||||
|
assert(a==0 || a==1 || a==2);
|
||||||
|
assert(b==0 || b==1 || b==2);
|
||||||
|
assert(test.cont(sol));
|
||||||
|
assert(!test2.cont(sol));
|
||||||
|
assert(test.cont(sol));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::cout << "[t-moRndWithReplNeighborhood] => OK" << std::endl;
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
70
branches/newMo/test/t-moRndWithoutReplNeighborhood.cpp
Normal file
70
branches/newMo/test/t-moRndWithoutReplNeighborhood.cpp
Normal file
|
|
@ -0,0 +1,70 @@
|
||||||
|
/*
|
||||||
|
<t-moRndWithoutReplNeighborhood.cpp>
|
||||||
|
Copyright (C) DOLPHIN Project-Team, INRIA Lille - Nord Europe, 2006-2010
|
||||||
|
|
||||||
|
Sébastien Verel, Arnaud Liefooghe, Jérémie Humeau
|
||||||
|
|
||||||
|
This software is governed by the CeCILL license under French law and
|
||||||
|
abiding by the rules of distribution of free software. You can ue,
|
||||||
|
modify and/ or redistribute the software under the terms of the CeCILL
|
||||||
|
license as circulated by CEA, CNRS and INRIA at the following URL
|
||||||
|
"http://www.cecill.info".
|
||||||
|
|
||||||
|
In this respect, the user's attention is drawn to the risks associated
|
||||||
|
with loading, using, modifying and/or developing or reproducing the
|
||||||
|
software by the user in light of its specific status of free software,
|
||||||
|
that may mean that it is complicated to manipulate, and that also
|
||||||
|
therefore means that it is reserved for developers and experienced
|
||||||
|
professionals having in-depth computer knowledge. Users are therefore
|
||||||
|
encouraged to load and test the software's suitability as regards their
|
||||||
|
requirements in conditions enabling the security of their systems and/or
|
||||||
|
data to be ensured and, more generally, to use and operate it in the
|
||||||
|
same conditions as regards security.
|
||||||
|
The fact that you are presently reading this means that you have had
|
||||||
|
knowledge of the CeCILL license and that you accept its terms.
|
||||||
|
|
||||||
|
ParadisEO WebSite : http://paradiseo.gforge.inria.fr
|
||||||
|
Contact: paradiseo-help@lists.gforge.inria.fr
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <neighborhood/moRndWithoutReplNeighborhood.h>
|
||||||
|
#include <neighborhood/moBitNeighbor.h>
|
||||||
|
|
||||||
|
#include "moTestClass.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <cstdlib>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
|
||||||
|
std::cout << "[t-moRndWithoutReplNeighborhood] => START" << std::endl;
|
||||||
|
|
||||||
|
unsigned int a, b, c;
|
||||||
|
eoBit<int> sol;
|
||||||
|
moBitNeighbor<int> n;
|
||||||
|
|
||||||
|
moRndWithoutReplNeighborhood< moBitNeighbor<int> > test(3);
|
||||||
|
moRndWithoutReplNeighborhood< moBitNeighbor<int> > test2(0);
|
||||||
|
|
||||||
|
assert(test.hasNeighbor(sol));
|
||||||
|
assert(!test2.hasNeighbor(sol));
|
||||||
|
|
||||||
|
test.init(sol, n);
|
||||||
|
assert(test.cont(sol));
|
||||||
|
a=test.position();
|
||||||
|
test.next(sol, n);
|
||||||
|
assert(test.cont(sol));
|
||||||
|
b=test.position();
|
||||||
|
test.next(sol,n);
|
||||||
|
assert(!test.cont(sol));
|
||||||
|
c=test.position();
|
||||||
|
|
||||||
|
assert(a==0 || b==0 || c==0);
|
||||||
|
assert(a==1 || b==1 || c==1);
|
||||||
|
assert(a==2 || b==2 || c==2);
|
||||||
|
|
||||||
|
std::cout << "[t-moRndWithoutReplNeighborhood] => OK" << std::endl;
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue