Releases: mutable-org/mutable
Releases · mutable-org/mutable
v0.0.71
[Wasm] Implement Decimal type.
v0.0.70
[Benchmark] Fix TPC-H Q3 for HyPer.
v0.0.69
[Benchmark] Add TPC-H benchmark chart config.
v0.0.68: [Benchmark] Revert change of operators benchmark
Reducing the number of tuples was never intended to be committed.
v0.0.67: [CMake] Link the `check` binary with complete lib
We must link the `check` binary with our complete library, s.t. at least one `DataLayoutFactory` exists. That is, because processing `CREATE TABLE` statements requires creating and assigning a `DataLayout` to the `Table` instance.
v0.0.66
[Benchmark] Refactor parse_attributes() in DuckDB connector
v0.0.65: [PE] Improve cost-based pruning in HS.
We can improve cost-based pruning in heuristic search when the heuristic is admissible: we can extend the check ```cpp state.g() > least_path_cost ``` to ```cpp state.g() + h > least_path_cost ``` This is still complete and optimal, since *h* was computed by an admissible heuristic and hence never over-estimates the cost of the best path from the current state to the goal. Therefore, we know that the remaining cost to reach the goal is *at least h*.
v0.0.64
Add Alireza Kheradmand to contributors.
v0.0.63: [Util] Merge both `ADT.hpp` headers into include.
We still had two `ADT.hpp` files back from the days when mu*t*able was closed source. We can now safely merge those two files into a single `include/mutable/util/ADT.hpp`.
v0.0.62
[Pipenv] Extend doc with troubleshooting.