small code modifications and pdf of the lessons added
git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@546 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
64345fd240
commit
d6fdf10ca5
6 changed files with 25 additions and 24 deletions
|
|
@ -21,10 +21,9 @@
|
||||||
#include <two_opt_next.h>
|
#include <two_opt_next.h>
|
||||||
#include <two_opt_incr_eval.h>
|
#include <two_opt_incr_eval.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main (int __argc, char * __argv [])
|
||||||
int main (int __argc, char * __argv []) {
|
{
|
||||||
|
|
||||||
if (__argc != 2) {
|
if (__argc != 2) {
|
||||||
|
|
||||||
std :: cerr << "Usage : ./hill_climbing [instance]" << std :: endl ;
|
std :: cerr << "Usage : ./hill_climbing [instance]" << std :: endl ;
|
||||||
|
|
|
||||||
BIN
trunk/paradiseo-mo/tutorial/Lesson1/lesson_1.pdf
Normal file
BIN
trunk/paradiseo-mo/tutorial/Lesson1/lesson_1.pdf
Normal file
Binary file not shown.
BIN
trunk/paradiseo-mo/tutorial/Lesson2/lesson_2.pdf
Normal file
BIN
trunk/paradiseo-mo/tutorial/Lesson2/lesson_2.pdf
Normal file
Binary file not shown.
|
|
@ -22,10 +22,11 @@
|
||||||
#include <two_opt_incr_eval.h>
|
#include <two_opt_incr_eval.h>
|
||||||
#include <two_opt_tabu_list.h>
|
#include <two_opt_tabu_list.h>
|
||||||
|
|
||||||
int main (int __argc, char * __argv []) {
|
int
|
||||||
|
main (int __argc, char * __argv [])
|
||||||
if (__argc != 2) {
|
{
|
||||||
|
if (__argc != 2)
|
||||||
|
{
|
||||||
std :: cerr << "Usage : ./tabu_search [instance]" << std :: endl ;
|
std :: cerr << "Usage : ./tabu_search [instance]" << std :: endl ;
|
||||||
return 1 ;
|
return 1 ;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
BIN
trunk/paradiseo-mo/tutorial/Lesson3/lesson_3.pdf
Normal file
BIN
trunk/paradiseo-mo/tutorial/Lesson3/lesson_3.pdf
Normal file
Binary file not shown.
|
|
@ -20,10 +20,11 @@
|
||||||
#include <two_opt_rand.h>
|
#include <two_opt_rand.h>
|
||||||
#include <two_opt_incr_eval.h>
|
#include <two_opt_incr_eval.h>
|
||||||
|
|
||||||
int main (int __argc, char * __argv []) {
|
int
|
||||||
|
main (int __argc, char * __argv [])
|
||||||
if (__argc != 2) {
|
{
|
||||||
|
if (__argc != 2)
|
||||||
|
{
|
||||||
std :: cerr << "Usage : ./simulated_annealing [instance]" << std :: endl ;
|
std :: cerr << "Usage : ./simulated_annealing [instance]" << std :: endl ;
|
||||||
return 1 ;
|
return 1 ;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue