leonbohn / lama

Learning and Manipulation of Automata
MIT License
4 stars 0 forks source link

Added and removed some benchmarks, impl Debug for Path #42

Closed leonbohn closed 8 months ago

leonbohn commented 8 months ago

The iai benchmarks in automata package were garbage and have been removed, just like the dependence on the iai package itself.

A few benchmarks were introduced, but they seem to produce inconsistent results, i.e. running the benchmark twice in a row without changing any code in the package sometimes leads to degraded performance, other times we get better performance. So this should really not be seen as a reliable tool unless the difference is quite enormous.

There was no std::fmt::Debug impl for Path yet, this has been added and it simply calls Show::show().

Also, all references to the pretty-assertions package were removed as it was not actively used.