* ./knik:

- Change: In KnikEngine, adds a credits for FLUTE in the ::create() methods.
        Printed every time Knik is run (whatever the verbose level).
This commit is contained in:
Jean-Paul Chaput 2010-05-29 14:08:29 +00:00
parent 34d150ebd3
commit d47615b594
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}