| 41 | const int TEST_ITEMS = 5000000; |
| 42 | |
| 43 | void report(int scaleNode, int scaleTree) |
| 44 | { |
| 45 | clock_t d = clock(); |
| 46 | printf("Add+remove %d elements from tree of scale %d/%d took %d milliseconds. \n", |
| 47 | TEST_ITEMS, scaleNode, scaleTree, (int)(d-t)*1000/CLOCKS_PER_SEC); |
| 48 | } |
| 49 | |
| 50 | using namespace Firebird; |
| 51 |
no outgoing calls