src/work/akos/simann_demo.cc
author alpar
Sat, 13 Nov 2004 17:07:10 +0000
changeset 987 87f7c54892df
parent 960 908a1a6f0752
child 999 5c846ec3f787
permissions -rw-r--r--
Naming changes:
- ValueType -> Value
- KeyType -> Key
- ReferenceType ->Reference
- PointerType -> Pointer
     1 #include "simann.h"
     2 
     3 using namespace lemon;
     4 
     5 class MyEntity {
     6 public:
     7   double mutate() { return 10.0; }
     8   void revert() {}
     9 };
    10 
    11 int main() {
    12   SimAnn<MyEntity> simann;
    13   SimpleController ctrl;
    14   simann.setController(ctrl);
    15   MyEntity ent;
    16   simann.setEntity(ent);
    17   simann.run();
    18 }