From d47615b594a6f7cdf28ae61d4d36b4007024650c Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Sat, 29 May 2010 14:08:29 +0000 Subject: [PATCH] * ./knik: - Change: In KnikEngine, adds a credits for FLUTE in the ::create() methods. Printed every time Knik is run (whatever the verbose level). --- knik/src/KnikEngine.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/knik/src/KnikEngine.cpp b/knik/src/KnikEngine.cpp index 9dfdfc37..c7027406 100644 --- a/knik/src/KnikEngine.cpp +++ b/knik/src/KnikEngine.cpp @@ -128,6 +128,11 @@ KnikEngine* KnikEngine::create ( Cell* cell, unsigned congestion, unsigned preco _knik->_postCreate(); + cout << " o Knik -- Global router makes use of FLUTE software" << endl; + cout << Dots::asIdentifier(" - Author" ,"Chris C. N. CHU") << endl; + cout << Dots::asIdentifier(" - Prof. Ident. ","Iowa State University") << endl; + cout << Dots::asIdentifier(" - URL" ,"http://home.eng.iastate.edu/~cnchu") << endl; + return _knik; }