3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

std::unordered_map -> std::map

This commit is contained in:
Christoph M. Wintersteiger 2016-06-04 11:01:46 +01:00
parent 626b9160bf
commit f2a869fb58

View file

@ -18,7 +18,7 @@ Notes:
--*/ --*/
#include<string> #include<string>
#include<unordered_map> #include<map>
#include"ast.h" #include"ast.h"
#include"params.h" #include"params.h"
@ -42,7 +42,7 @@ class collect_statistics_tactic : public tactic {
datatype_decl_plugin m_datatype_pi; datatype_decl_plugin m_datatype_pi;
fpa_decl_plugin m_fpa_pi; fpa_decl_plugin m_fpa_pi;
typedef std::unordered_map<std::string, unsigned long> stats_type; typedef std::map<std::string, unsigned long> stats_type;
stats_type m_stats; stats_type m_stats;
public: public: