Created
January 7, 2020 20:05
-
-
Save mascot27/e88c75a29bbc1f73073e93bd8512a427 to your computer and use it in GitHub Desktop.
Revisions
-
mascot27 created this gist
Jan 7, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ typedef std::chrono::high_resolution_clock Clock; typedef std::chrono::milliseconds milliseconds; Clock::time_point tAvantChargement = Clock::now(); milliseconds ms = std::chrono::duration_cast<milliseconds>(tApresChargement - tAvantChargement); std::cout << "temps de chargement du dictionnaire: " << ms.count() << "ms\n";