Skip to content

Commit 8afe4a2

Browse files
Fix docs
1 parent 1074f2f commit 8afe4a2

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

Presentation.ipynb

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
{
22
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"id": "a74307d3-b810-4f9d-9663-d5b0030357ae",
6+
"metadata": {},
7+
"source": [
8+
"* Campy\n",
9+
"* Add more complicated example\n",
10+
"* Change fonts\n",
11+
"* Make sure examples are done"
12+
]
13+
},
314
{
415
"cell_type": "markdown",
516
"id": "a611c138-1afd-4d6f-9578-4f358d2438eb",
@@ -2153,7 +2164,7 @@
21532164
"\n",
21542165
"* Add support for Python objects as builtin sort\n",
21552166
"* Investigate trying to adopt in data science libraries, such as Ibis\n",
2156-
"* Upstream egglog improvements which could help with reuse (parametric user defined types)"
2167+
"* Upstream egglog improvements which could help with reuse (first class functions, parametric user defined types)"
21572168
]
21582169
},
21592170
{
@@ -2169,12 +2180,23 @@
21692180
"source": [
21702181
"## Thank you!\n",
21712182
"\n",
2183+
"\n",
21722184
"```bash\n",
21732185
"pip install egglog\n",
21742186
"```\n",
21752187
"\n",
2176-
"*Source available at [github.com/metadsl/egglog-python](https://github.com/metadsl/egglog-python)*"
2188+
"*Source available at [github.com/metadsl/egglog-python](https://github.com/metadsl/egglog-python)*\n",
2189+
"\n",
2190+
"Any questions?\n"
21772191
]
2192+
},
2193+
{
2194+
"cell_type": "code",
2195+
"execution_count": null,
2196+
"id": "8470a5af-76e9-4186-9a25-4ac95be0ee97",
2197+
"metadata": {},
2198+
"outputs": [],
2199+
"source": []
21782200
}
21792201
],
21802202
"metadata": {

docs/reference/egglog-translation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ and also will make sure the variables won't be used outside of the scope of the
338338
# egg: (rewrite (Add a b) (Add b a))
339339
340340
@egraph.register
341-
def _math(a: Math, b: Math)
341+
def _math(a: Math, b: Math):
342342
yield rewrite(a * b).to(b * a)
343343
yield rewrite(a + b).to(b + a)
344344
```

0 commit comments

Comments
 (0)