22#ifndef GINAC_HASH_MAP_H
23#define GINAC_HASH_MAP_H
25#include <unordered_map>
30 class Hash = std::hash<ex>,
31 class KeyEqual = std::equal_to<ex>,
32 class Allocator = std::allocator<std::pair<const ex, T>>>
33using exhashmap = std::unordered_map<ex, T, Hash, KeyEqual, Allocator>;
std::unordered_map< ex, T, Hash, KeyEqual, Allocator > exhashmap