src/work/akos/simann_demo.cc
author alpar
Tue, 11 Jan 2005 09:04:08 +0000
changeset 1069 7b81a36809c6
parent 999 5c846ec3f787
child 1096 1cfb25ef14d2
permissions -rw-r--r--
- Minor correction in time_measure.h
- A bit more meaningful test in time_measure_test.cc
     1 #include "simann.h"
     2 
     3 using namespace lemon;
     4 
     5 class MyEntity {
     6 public:
     7   double getCost() { return 10.0; }
     8   void mutate() {}
     9   void revert() {}
    10 };
    11 
    12 int main() {
    13   SimAnn<MyEntity> simann;
    14   SimpleController ctrl;
    15   simann.setController(ctrl);
    16   MyEntity ent;
    17   simann.setEntity(ent);
    18   simann.run();
    19 
    20   SimAnn<MyEntity> simann2;
    21   AdvancedController ctrl2(20.0);
    22   simann2.setController(ctrl2);
    23   MyEntity ent2;
    24   simann2.setEntity(ent2);
    25   simann2.run();
    26 }