George Necula 45ae4dfb9e [shape_poly] Remove caching for the symbolic shape evaluator
The caching used for the shape_poly.CachingShapeEvaluator leads to
leaked tracer errors. This is because the `lru_cache` is attached
to the `CachingShapeEvaluator.evaluate` and persists for the
duration of the program. It is possible to reimplement the caching,
but in this case caching does not help much so we just remove it.
2024-11-09 11:13:48 +02:00
..