Last change
on this file since 1046:1bb1d4c87331 was
1023:3268fef5d623,
checked in by Akos Ladanyi, 20 years ago
|
Added a getCost() method to the Entity. Now prevCost() returns what its name suggests.
|
File size:
458 bytes
|
Rev | Line | |
---|
[960] | 1 | #include "simann.h" |
---|
| 2 | |
---|
| 3 | using namespace lemon; |
---|
| 4 | |
---|
| 5 | class MyEntity { |
---|
| 6 | public: |
---|
[1023] | 7 | double getCost() { return 10.0; } |
---|
| 8 | void mutate() {} |
---|
[960] | 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(); |
---|
[999] | 19 | |
---|
| 20 | SimAnn<MyEntity> simann2; |
---|
| 21 | AdvancedController ctrl2(20.0); |
---|
| 22 | simann2.setController(ctrl2); |
---|
| 23 | MyEntity ent2; |
---|
| 24 | simann2.setEntity(ent2); |
---|
| 25 | simann2.run(); |
---|
[960] | 26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.