| 56 | typedef ComputationCache< ComputationParams > Cache; |
| 57 | |
| 58 | static MurmurHash hash( const ComputationParams ¶ms ) |
| 59 | { |
| 60 | int id = params; |
| 61 | MurmurHash h; |
| 62 | h.append(id); |
| 63 | return h; |
| 64 | } |
| 65 | |
| 66 | static IntDataPtr get( const ComputationParams ¶ms ) |
| 67 | { |
no test coverage detected