Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ This is also supported for container types, like vecs and sets. You can also use

For example:

````python
```python
>>> from egglog import *
>>> Vec(i64(1), i64(2))[0]
Vec(1, 2)[0]
Expand All @@ -81,7 +81,7 @@ Vec(1, 2)[0]
[i64(1), i64(2)]
>>> Rational(1, 2).eval()
Fraction(1, 2)
>>>
```


You can also manually set the e-graph to use, instead of it having to create a new one, with the `egraph.set_current` context manager:
Expand Down Expand Up @@ -542,4 +542,3 @@ We also change the `PyObject` primitive to behave similarly. Instead of calling
This release adds support for a high level API for e-graphs.

There is an examples of the high level API in the [tutorials](tutorials/getting-started).
````