test/simann_test.cc
author deba
Tue, 17 Oct 2006 10:50:57 +0000
changeset 2247 269a0dcee70b
parent 1956 a055123339d5
child 2391 14a343be7a5a
permissions -rw-r--r--
Update the Path concept
Concept check for paths

DirPath renamed to Path
The interface updated to the new lemon interface
Make difference between the empty path and the path from one node
Builder interface have not been changed
// I wanted but there was not accordance about it

UPath is removed
It was a buggy implementation, it could not iterate on the
nodes in the right order
Right way to use undirected paths => path of edges in undirected graphs

The tests have been modified to the current implementation
     1 /* -*- C++ -*-
     2  *
     3  * This file is a part of LEMON, a generic C++ optimization library
     4  *
     5  * Copyright (C) 2003-2006
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
     8  *
     9  * Permission to use, modify and distribute this software is granted
    10  * provided that this copyright notice appears in all copies. For
    11  * precise terms see the accompanying LICENSE file.
    12  *
    13  * This software is provided "AS IS" with no warranty of any kind,
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    16  *
    17  */
    18 
    19 #include <lemon/simann.h>
    20 
    21 using namespace lemon;
    22 
    23 class MyEntity : public EntityBase {
    24 public:
    25   double d, prev_d;
    26   MyEntity() : d(100000.0) {}
    27   double mutate() {
    28     prev_d = d;
    29     if (rnd.boolean(0.8)) { d += 1.0; }
    30     else { d -= 1.0; }
    31     return d;
    32   }
    33   void revert() { d = prev_d; }
    34   MyEntity* clone() { return new MyEntity (*this); }
    35   void randomize() {}
    36 };
    37 
    38 int main() {
    39   SimAnn simann;
    40   SimpleController ctrl;
    41   simann.setController(ctrl);
    42   MyEntity ent;
    43   simann.setEntity(ent);
    44   simann.run();
    45 
    46   //MyEntity *best_ent = (MyEntity *) simann.getBestEntity();
    47   //std::cout << best_ent->d << std::endl;
    48 
    49   SimAnn simann2;
    50   AdvancedController ctrl2(2.0);
    51   simann2.setController(ctrl2);
    52   MyEntity ent2;
    53   simann2.setEntity(ent2);
    54   simann2.run();
    55 
    56   //MyEntity *best_ent2 = (MyEntity *) simann2.getBestEntity();
    57   //std::cout << best_ent2->d << std::endl;
    58 
    59   return 0;
    60 }