1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /*                                                                       */
3 /*    This file is part of the HiGHS linear optimization suite           */
4 /*                                                                       */
5 /*    Written and engineered 2008-2021 at the University of Edinburgh    */
6 /*                                                                       */
7 /*    Available as open-source under the MIT License                     */
8 /*                                                                       */
9 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
10 /**@file lp_data/HighsAnalysis.h
11  * @brief
12  * @author Julian Hall, Ivet Galabova, Qi Huangfu and Michael Feldmeier
13  */
14 #ifndef LP_DATA_HIGHS_ANALYSIS_H_
15 #define LP_DATA_HIGHS_ANALYSIS_H_
16 
17 #include <vector>
18 
19 #include "HConfig.h"
20 #include "util/HighsTimer.h"
21 
22 //#ifdef HiGHSDEV
23 struct HighsTimerClock {
HighsTimerClockHighsTimerClock24   HighsTimerClock(HighsTimer& timer) : timer_(timer) {}
25 
26   HighsTimer& timer_;
27   std::vector<int> clock_;
28 };
29 //#endif
30 
31 #endif /* LP_DATA_HIGHS_ANALYSIS_H_ */
32