Skip to content

Releases: mutable-org/mutable

v0.0.71

15 Jul 12:22
cfacce1
Compare
Choose a tag to compare
[Wasm] Implement Decimal type.

v0.0.70

15 Jul 10:54
37a5ffc
Compare
Choose a tag to compare
[Benchmark] Fix TPC-H Q3 for HyPer.

v0.0.69

14 Jul 17:00
d210097
Compare
Choose a tag to compare
[Benchmark] Add TPC-H benchmark chart config.

v0.0.68: [Benchmark] Revert change of operators benchmark

11 Jul 08:31
b0ad37c
Compare
Choose a tag to compare
Reducing the number of tuples was never intended to be committed.

v0.0.67: [CMake] Link the `check` binary with complete lib

10 Jul 15:43
f51bc68
Compare
Choose a tag to compare
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

10 Jul 12:48
Compare
Choose a tag to compare
[Benchmark] Refactor parse_attributes() in DuckDB connector

v0.0.65: [PE] Improve cost-based pruning in HS.

07 Jul 06:58
ea08db9
Compare
Choose a tag to compare
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

06 Jul 08:40
267e2e1
Compare
Choose a tag to compare
Add Alireza Kheradmand to contributors.

v0.0.63: [Util] Merge both `ADT.hpp` headers into include.

04 Jul 14:27
ea4de45
Compare
Choose a tag to compare
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

03 Jul 12:54
99bc0e4
Compare
Choose a tag to compare
[Pipenv] Extend doc with troubleshooting.