/**************************************************** * Executable: Stable_binary_heap_int_driver * Author: Douglas Wilhelm Harder * Copyright (c) 2006-8 by Douglas Wilhelm Harder. All rights reserved. * * DO NOT EDIT THIS FILE * * Create an instance of the Stable_binary_heap_tester class * and call the member function run(). * * The member function run() will interpret the * input appropriately and exit when the interpreter * receives either the command 'exit' or and * end-of-file. ****************************************************/ #include #include "Stable_binary_heap_tester.h" int main() { Stable_binary_heap_tester tester; std::cout << "Starting Test Run" << std::endl; tester.run(); std::cout << "Finishing Test Run" << std::endl; return 0; }