| 342 | }; |
| 343 | |
| 344 | struct CacheData { |
| 345 | CacheData() : nBytesAllocated(0), nBytesUsed(0), memoryFraction(0), hit(0), miss(0), hitFraction(0) {} |
| 346 | int nBytesAllocated; |
| 347 | int nBytesUsed; |
| 348 | float memoryFraction; |
| 349 | |
| 350 | int hit; |
| 351 | int miss; |
| 352 | float hitFraction; |
| 353 | }; |
| 354 | |
| 355 | /** |
| 356 | Create a MicroPather object to solve for a best path. Detailed usage notes are |
nothing calls this directly
no outgoing calls
no test coverage detected